From e3b68125e285fc13faaaca6e228f7c6373a5f3d8 Mon Sep 17 00:00:00 2001 From: AppleOfTheDark <72869654+AppleOfTheDark@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:19:22 +0100 Subject: [PATCH] Snow Cloak Hail Condition Fix Snow Cloak's evasion wasn't actually checking for hail, so the condition has been added. --- src/data/ability.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/ability.ts b/src/data/ability.ts index 1d5dcb7581f..9367e6c8508 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2140,6 +2140,7 @@ export function initAbilities() { new Ability(Abilities.SNOW_CLOAK, "Snow Cloak", "Boosts evasiveness in a hailstorm.", 4) .attr(BattleStatMultiplierAbAttr, BattleStat.EVA, 1.2) .attr(BlockWeatherDamageAttr, WeatherType.HAIL) + .condition(GetWeatherCondition(WeatherType.HAIL)) .ignorable(), new Ability(Abilities.GLUTTONY, "Gluttony", "Makes the Pokémon eat a held Berry when its HP drops to half or less, which is sooner than usual.", 4) .attr(ReduceBerryUseThresholdAbAttr),