From b058e107132d18f70e68c161095f3976cd0c4a22 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Mon, 27 May 2024 23:54:56 -0500 Subject: [PATCH] Add missing summon text for As One abilities Just a minor flavor text addition to mirror the canon games. --- src/data/ability.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/ability.ts b/src/data/ability.ts index 0e1a1d1f0f5..9d597ec8222 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -4052,12 +4052,14 @@ export function initAbilities() { new Ability(Abilities.GRIM_NEIGH, 8) .attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1), new Ability(Abilities.AS_ONE_GLASTRIER, 8) + .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, " has two Abilities!")) .attr(PreventBerryUseAbAttr) .attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) .attr(UnsuppressableAbilityAbAttr), new Ability(Abilities.AS_ONE_SPECTRIER, 8) + .attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, " has two Abilities!")) .attr(PreventBerryUseAbAttr) .attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1) .attr(UncopiableAbilityAbAttr)