From f8db7813570183cbe7a8f9fccec294ca76453c0f Mon Sep 17 00:00:00 2001 From: PigeonBar <56974298+PigeonBar@users.noreply.github.com> Date: Mon, 2 Dec 2024 22:53:41 -0500 Subject: [PATCH] "{Pokemon} used {Fire-type move}!" now displays before Powder activation Co-authored-by: innerthunder <168692175+innerthunder@users.noreply.github.com> --- src/data/battler-tags.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 0f64f3933c5..0c0b8e9e034 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -888,6 +888,7 @@ export class PowderTag extends BattlerTag { const weather = pokemon.scene.arena.weather; if (pokemon.getMoveType(move) === Type.FIRE && !(weather && weather.weatherType === WeatherType.HEAVY_RAIN && !weather.isEffectSuppressed(pokemon.scene))) { movePhase.fail(); + movePhase.showMoveText(); pokemon.scene.unshiftPhase(new CommonAnimPhase(pokemon.scene, pokemon.getBattlerIndex(), pokemon.getBattlerIndex(), CommonAnim.POWDER));