Ran Biome

This commit is contained in:
Bertie690 2025-09-21 19:55:04 -04:00
parent 8d05eceee2
commit 972878af0c

View File

@ -1697,18 +1697,13 @@ export class PendingHealTag extends SerializableArenaTag {
return this.apply(arena, simulated, pokemon); return this.apply(arena, simulated, pokemon);
} }
globalScene.phaseManager.unshiftNew( globalScene.phaseManager.unshiftNew("PokemonHealPhase", targetIndex, pokemon.getMaxHp(), {
"PokemonHealPhase", message: healMessage,
targetIndex, showFullHpMessage: false,
pokemon.getMaxHp(), skipAnim: true,
{ healStatus: true,
message: healMessage, fullRestorePP: restorePP,
showFullHpMessage: false, });
skipAnim: true,
healStatus: true,
fullRestorePP: restorePP,
},
);
targetEffects.splice(targetEffects.indexOf(healEffect), 1); targetEffects.splice(targetEffects.indexOf(healEffect), 1);
return true; return true;
} }