diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-03 10:12:54 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-03 10:12:54 -0500 |
| commit | b56c1b6351f51742903250ee0c4eae9d22e2b6a5 (patch) | |
| tree | e288ee3655a5c4c9d383370c4eb4102f1ad8f9a0 /engine/battle/move_effects | |
| parent | 980153ac472870602a51779dbff623ea0072ed98 (diff) | |
More syncing with pokecrystal
Diffstat (limited to 'engine/battle/move_effects')
| -rw-r--r-- | engine/battle/move_effects/belly_drum.asm | 2 | ||||
| -rw-r--r-- | engine/battle/move_effects/present.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/move_effects/belly_drum.asm b/engine/battle/move_effects/belly_drum.asm index 5b1361f2..847eaff0 100644 --- a/engine/battle/move_effects/belly_drum.asm +++ b/engine/battle/move_effects/belly_drum.asm @@ -18,7 +18,7 @@ BattleCommand_BellyDrum: callfar SubtractHPFromUser call UpdateUserInParty -rept 5 +rept MAX_STAT_LEVEL - BASE_STAT_LEVEL - 1 call BattleCommand_AttackUp2 endr diff --git a/engine/battle/move_effects/present.asm b/engine/battle/move_effects/present.asm index 0577e76b..ad13c0a9 100644 --- a/engine/battle/move_effects/present.asm +++ b/engine/battle/move_effects/present.asm @@ -34,7 +34,7 @@ BattleCommand_Present: .heal_effect pop bc - ld a, 3 + ld a, $3 ; heal animation ld [wBattleAnimParam], a call AnimateCurrentMove call BattleCommand_SwitchTurn |
