Add missing summon text for As One abilities
Just a minor flavor text addition to mirror the canon games.
This commit is contained in:
parent
0d80a045fd
commit
b058e10713
|
@ -4052,12 +4052,14 @@ export function initAbilities() {
|
||||||
new Ability(Abilities.GRIM_NEIGH, 8)
|
new Ability(Abilities.GRIM_NEIGH, 8)
|
||||||
.attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1),
|
.attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1),
|
||||||
new Ability(Abilities.AS_ONE_GLASTRIER, 8)
|
new Ability(Abilities.AS_ONE_GLASTRIER, 8)
|
||||||
|
.attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, " has two Abilities!"))
|
||||||
.attr(PreventBerryUseAbAttr)
|
.attr(PreventBerryUseAbAttr)
|
||||||
.attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1)
|
.attr(PostVictoryStatChangeAbAttr, BattleStat.ATK, 1)
|
||||||
.attr(UncopiableAbilityAbAttr)
|
.attr(UncopiableAbilityAbAttr)
|
||||||
.attr(UnswappableAbilityAbAttr)
|
.attr(UnswappableAbilityAbAttr)
|
||||||
.attr(UnsuppressableAbilityAbAttr),
|
.attr(UnsuppressableAbilityAbAttr),
|
||||||
new Ability(Abilities.AS_ONE_SPECTRIER, 8)
|
new Ability(Abilities.AS_ONE_SPECTRIER, 8)
|
||||||
|
.attr(PostSummonMessageAbAttr, (pokemon: Pokemon) => getPokemonMessage(pokemon, " has two Abilities!"))
|
||||||
.attr(PreventBerryUseAbAttr)
|
.attr(PreventBerryUseAbAttr)
|
||||||
.attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1)
|
.attr(PostVictoryStatChangeAbAttr, BattleStat.SPATK, 1)
|
||||||
.attr(UncopiableAbilityAbAttr)
|
.attr(UncopiableAbilityAbAttr)
|
||||||
|
|
Loading…
Reference in New Issue