Skip to content

Commit

Permalink
Update src/data/move.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
  • Loading branch information
EnochG1 and CodeTappert authored Aug 1, 2024
1 parent 1acb0c6 commit 4dd6130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/move.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ export class SacrificialFullRestoreAttr extends SacrificialAttr {
const maxPartyMemberHp = user.scene.getParty().map(p => p.getMaxHp()).reduce((maxHp: integer, hp: integer) => Math.max(hp, maxHp), 0);

user.scene.pushPhase(new PokemonHealPhase(user.scene, user.getBattlerIndex(),
maxPartyMemberHp, i18next.t("moveTriggers:sacrificialFullRestore", {pokemonName: getPokemonNameWithAffix(user)}), true, false, false, true), true);
maxPartyMemberHp, i18next.t("moveTriggers:sacrificialFullRestore", {pokemonName: getPokemonNameWithAffix(user), target: getPokemonNameWithAffix(target) }), true, false, false, true), true);

return true;
}
Expand Down

0 comments on commit 4dd6130

Please sign in to comment.