From 4e8854690c775860defc5304ce50f95f7dd80eaa Mon Sep 17 00:00:00 2001 From: Sylvain Pollet-Villard Date: Sun, 24 Mar 2024 19:23:03 +0100 Subject: [PATCH] fix stun spore ability (#1601) --- app/core/abilities/abilities.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/core/abilities/abilities.ts b/app/core/abilities/abilities.ts index 69fc837f62..e7f912b34e 100644 --- a/app/core/abilities/abilities.ts +++ b/app/core/abilities/abilities.ts @@ -3905,6 +3905,10 @@ export class StunSporeStrategy extends AbilityStrategy { ) { super.process(pokemon, state, board, target, crit) const damage = [5, 10, 20][pokemon.stars - 1] ?? 20 + + target.handleSpecialDamage(damage, board, AttackType.SPECIAL, pokemon, crit) + target.status.triggerParalysis(5000, target) + board .getAdjacentCells(target.positionX, target.positionY) .forEach((cell) => {