From f43557bcc5550ba5da3f80366953fd894cfef5a5 Mon Sep 17 00:00:00 2001 From: Samuel H Date: Mon, 27 Nov 2023 22:34:10 -0500 Subject: [PATCH] Update src/data/ability.ts --- src/data/ability.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 25b2426d395..09f242f5347 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -1542,8 +1542,8 @@ export function initAbilities() { new Ability(Abilities.SAND_FORCE, "Sand Force (N)", "Boosts certain moves' power in a sandstorm.", 5), new Ability(Abilities.SAND_RUSH, "Sand Rush", "Boosts the Pokémon's Speed in a sandstorm.", 5) .attr(BattleStatMultiplierAbAttr, BattleStat.SPD, 2) - .condition(getWeatherCondition(WeatherType.SANDSTORM)) - .attr(BlockWeatherDamageAttr, WeatherType.SANDSTORM), + .attr(BlockWeatherDamageAttr, WeatherType.SANDSTORM) + .condition(getWeatherCondition(WeatherType.SANDSTORM)), new Ability(Abilities.SAP_SIPPER, "Sap Sipper", "Boosts Attack when hit by a Grass-type move.", 5) .attr(TypeImmunityStatChangeAbAttr, Type.GRASS, BattleStat.ATK, 1), new Ability(Abilities.SHEER_FORCE, "Sheer Force (N)", "Removes added effects to increase move damage.", 5),