mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-06 07:29:30 +02:00
ran biome
This commit is contained in:
parent
99e1163752
commit
c34134159d
@ -902,7 +902,7 @@ class ToxicSpikesTag extends ArenaTrapTag {
|
||||
// Neutralize the tag and remove it from the field.
|
||||
// Message cannot be moved to `onRemove` as that requires a reference to the neutralizing pokemon
|
||||
this.#neutralized = true;
|
||||
globalScene.arena.removeTagOnSide(this.tagType, this.side)
|
||||
globalScene.arena.removeTagOnSide(this.tagType, this.side);
|
||||
globalScene.phaseManager.queueMessage(
|
||||
i18next.t("arenaTag:toxicSpikesActivateTrapPoison", {
|
||||
pokemonNameWithAffix: getPokemonNameWithAffix(pokemon),
|
||||
@ -914,7 +914,7 @@ class ToxicSpikesTag extends ArenaTrapTag {
|
||||
|
||||
// Attempt to poison the target, suppressing any immunity messages that arise.
|
||||
const effect = this.layers === 1 ? StatusEffect.POISON : StatusEffect.TOXIC;
|
||||
return pokemon.trySetStatus(effect, null, undefined, this.getMoveName(), false, true)
|
||||
return pokemon.trySetStatus(effect, null, undefined, this.getMoveName(), false, true);
|
||||
}
|
||||
|
||||
getMatchupScoreMultiplier(pokemon: Pokemon): number {
|
||||
|
Loading…
Reference in New Issue
Block a user