From d357e572927ffe6bb84dcc4e463f2993e64ddd38 Mon Sep 17 00:00:00 2001 From: Cae Rulius Date: Mon, 13 May 2024 15:40:40 -0500 Subject: [PATCH] remove ability to add minimize tag to dynamax-mons --- src/data/battler-tags.ts | 4 ++++ 1 file changed, 4 insertions(+) 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); }