From 95711f4ee4a3e21078eb58bb6e97e63ca5daff25 Mon Sep 17 00:00:00 2001 From: muscode Date: Sun, 3 Nov 2024 12:09:36 -0600 Subject: [PATCH] add neut gas check Co-authored-by: innerthunder <168692175+innerthunder@users.noreply.github.com> --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 2d9313e972a..1e2a81529d5 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -945,7 +945,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (this.status && this.status.effect === StatusEffect.PARALYSIS) { ret >>= 1; } - if (this.getTag(BattlerTagType.UNBURDEN)) { + if (this.getTag(BattlerTagType.UNBURDEN) && !this.scene.getField(true).some(pokemon => pokemon !== this && pokemon.hasAbilityWithAttr(SuppressFieldAbilitiesAbAttr))) { ret *= 2; } break;