From 8a7a5f24d57d0d37e2558bb3036d5f0b125695e0 Mon Sep 17 00:00:00 2001 From: Cae Rulius Date: Mon, 13 May 2024 15:49:28 -0500 Subject: [PATCH] status cannot be applied to max-mons, and falls off if they dynamax --- 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 cdfca5b4353..1e6da41e001 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -558,6 +558,10 @@ export class MinimizeTag extends BattlerTag { } lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { + //If a pokemon dynamaxes they lose minimized status + if(pokemon.isMax()){ + return false + } return lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType); }