From 27867faf63e2046bc4c98a180321ae688f32aa9c Mon Sep 17 00:00:00 2001 From: Tiduzz Date: Sun, 12 May 2024 03:22:04 -0300 Subject: [PATCH] Airlock ability now properly announces when it is in field when the pokemon with it is switched in --- src/data/ability.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 8a244b85b..a6f75487b 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2974,7 +2974,8 @@ export function initAbilities() { .attr(BlockCritAbAttr) .ignorable(), new Ability(Abilities.AIR_LOCK, 3) - .attr(SuppressWeatherEffectAbAttr, true), + .attr(SuppressWeatherEffectAbAttr, true) + .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, ' is suppressing the weather effects!')), new Ability(Abilities.TANGLED_FEET, 4) .conditionalAttr(pokemon => !!pokemon.getTag(BattlerTagType.CONFUSED), BattleStatMultiplierAbAttr, BattleStat.EVA, 2) .ignorable(),