[Bug] Fix Flash Fire has No Message (#5578)

Add flash fire message
This commit is contained in:
Dean 2025-03-29 01:51:28 -07:00 committed by GitHub
parent 5f01caffae
commit a727375730
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -2151,6 +2151,21 @@ export class TypeBoostTag extends BattlerTag {
lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {
return lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType);
}
override onAdd(pokemon: Pokemon): void {
globalScene.queueMessage(
i18next.t("abilityTriggers:typeImmunityPowerBoost", {
pokemonNameWithAffix: getPokemonNameWithAffix(pokemon),
typeName: i18next.t(`pokemonInfo:Type.${PokemonType[this.boostedType]}`),
}),
);
}
override onOverlap(pokemon: Pokemon): void {
globalScene.queueMessage(
i18next.t("abilityTriggers:moveImmunity", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }),
);
}
}
export class CritBoostTag extends BattlerTag {