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",
targetIndex,
pokemon.getMaxHp(),
{
message: healMessage, message: healMessage,
showFullHpMessage: false, showFullHpMessage: false,
skipAnim: true, skipAnim: true,
healStatus: true, healStatus: true,
fullRestorePP: restorePP, fullRestorePP: restorePP,
}, });
);
targetEffects.splice(targetEffects.indexOf(healEffect), 1); targetEffects.splice(targetEffects.indexOf(healEffect), 1);
return true; return true;
} }