From 08988822dbdfc69f8cbdc033b923228f1afa86f3 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sat, 20 Apr 2024 23:09:59 -0400 Subject: [PATCH] Add missing attribute to Pressure --- src/data/ability.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/ability.ts b/src/data/ability.ts index 80931d3c1..0ff17d021 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2441,6 +2441,7 @@ export function initAbilities() { .attr(PostSummonWeatherChangeAbAttr, WeatherType.SANDSTORM) .attr(PostBiomeChangeWeatherChangeAbAttr, WeatherType.SANDSTORM), new Ability(Abilities.PRESSURE, "Pressure", "By putting pressure on the opposing Pokémon, it raises their PP usage.", 3) + .attr(IncreasePpAbAttr) .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, ' is exerting its Pressure!')), new Ability(Abilities.THICK_FAT, "Thick Fat", "The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves.", 3) .attr(ReceivedTypeDamageMultiplierAbAttr, Type.FIRE, 0.5)