mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
Z-A OU: Fix removal of Zygardite in battle (#11520)
This commit is contained in:
parent
0ef2d38ac3
commit
44ded79364
|
|
@ -33,4 +33,12 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
|
|||
inherit: true,
|
||||
isNonstandard: "Unobtainable",
|
||||
},
|
||||
zygardite: {
|
||||
inherit: true,
|
||||
onTakeItem(item, source) {
|
||||
if ((source.baseSpecies.baseSpecies === 'Zygarde' && source.baseAbility === 'powerconstruct') ||
|
||||
source.baseSpecies.name === 'Zygarde-Mega') return false;
|
||||
return true;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user