mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-02 19:47:44 -05:00
16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
// Gen 2 Stadium fixes Dragon Fang and Dragon Scale having the wrong effects.
|
|
export const Items: {[k: string]: ModdedItemData} = {
|
|
dragonfang: {
|
|
inherit: true,
|
|
onModifyDamage(damage, source, target, move) {
|
|
if (move?.type === 'Dragon') {
|
|
return damage * 1.1;
|
|
}
|
|
},
|
|
},
|
|
dragonscale: {
|
|
inherit: true,
|
|
onModifyDamage() {},
|
|
},
|
|
};
|