Jofthomas's picture
Jofthomas HF staff
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
372 Bytes
// Gen 2 Stadium fixes Dragon Fang and Dragon Scale having the wrong effects.
export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
dragonfang: {
inherit: true,
onModifyDamage(damage, source, target, move) {
if (move?.type === 'Dragon') {
return damage * 1.1;
}
},
},
dragonscale: {
inherit: true,
onModifyDamage() {},
},
};