From d05fab041cb9163c1c9e8302a1dc6923fb3aa289 Mon Sep 17 00:00:00 2001 From: AppleOfTheDark <72869654+AppleOfTheDark@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:52:15 +0100 Subject: [PATCH] Snow Cloak Conditional Fix (#91) * Snow Cloak Hail Condition Fix Snow Cloak's evasion wasn't actually checking for hail, so the condition has been added. * Snow Cloak getWeatherCondition is not meant to have a capital. --- src/data/ability.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/ability.ts b/src/data/ability.ts index 1d5dcb7581f..c9217e17ac5 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),