diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index a3c336d49bc..cdfca5b4353 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -549,6 +549,10 @@ export class MinimizeTag extends BattlerTag { super(BattlerTagType.MINIMIZED, BattlerTagLapseType.TURN_END, 1, Moves.MINIMIZE, undefined); } + canAdd(pokemon: Pokemon): boolean { + return !pokemon.isMax(); + } + onAdd(pokemon: Pokemon): void { super.onAdd(pokemon); }