Update src/data/battler-tags.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Mumble 2024-09-20 16:52:53 -07:00 committed by GitHub
parent 8360098bb4
commit bd8d629155
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2201,13 +2201,6 @@ export class HealBlockTag extends MoveRestrictionBattlerTag {
super(BattlerTagType.HEAL_BLOCK, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], turnCount, sourceMove); super(BattlerTagType.HEAL_BLOCK, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], turnCount, sourceMove);
} }
/**
* Uses the default onAdd method
*/
override onAdd(pokemon: Pokemon): void {
super.onAdd(pokemon);
}
onActivation(pokemon: Pokemon): string { onActivation(pokemon: Pokemon): string {
return i18next.t("battle:battlerTagsHealBlock", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }); return i18next.t("battle:battlerTagsHealBlock", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) });
} }