2018-06-24 14:09:41 +00:00
|
|
|
BattleCommand_BellyDrum:
|
2018-01-26 16:36:00 +00:00
|
|
|
; bellydrum
|
|
|
|
; This command is buggy because it raises the user's attack
|
|
|
|
; before checking that it has enough HP to use the move.
|
|
|
|
; Swap the order of these two blocks to fix.
|
|
|
|
call BattleCommand_AttackUp2
|
2018-02-03 23:21:53 +00:00
|
|
|
ld a, [wAttackMissed]
|
2018-01-26 16:36:00 +00:00
|
|
|
and a
|
|
|
|
jr nz, .failed
|
|
|
|
|
|
|
|
callfar GetHalfMaxHP
|
|
|
|
callfar CheckUserHasEnoughHP
|
|
|
|
jr nc, .failed
|
|
|
|
|
|
|
|
push bc
|
|
|
|
call AnimateCurrentMove
|
|
|
|
pop bc
|
|
|
|
callfar SubtractHPFromUser
|
|
|
|
call UpdateUserInParty
|
|
|
|
ld a, 5
|
|
|
|
|
|
|
|
.max_attack_loop
|
|
|
|
push af
|
|
|
|
call BattleCommand_AttackUp2
|
|
|
|
pop af
|
|
|
|
dec a
|
|
|
|
jr nz, .max_attack_loop
|
|
|
|
|
|
|
|
ld hl, BellyDrumText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
|
|
|
|
.failed
|
|
|
|
call AnimateFailedMove
|
|
|
|
jp PrintButItFailed
|
|
|
|
|