pokecrystal-board/engine/battle/move_effects/rollout.asm

96 lines
1.3 KiB
NASM
Raw Normal View History

MAX_ROLLOUT_COUNT EQU 5
2018-06-24 07:09:41 -07:00
BattleCommand_CheckCurl:
2013-12-01 11:19:57 -08:00
; checkcurl
2018-01-23 14:39:09 -08:00
ld de, wPlayerRolloutCount
2013-12-01 11:19:57 -08:00
ld a, [hBattleTurn]
and a
jr z, .ok
2018-01-23 14:39:09 -08:00
ld de, wEnemyRolloutCount
.ok
2013-12-01 11:19:57 -08:00
ld a, BATTLE_VARS_SUBSTATUS1
call GetBattleVar
bit SUBSTATUS_ROLLOUT, a
jr z, .reset
2013-12-01 11:19:57 -08:00
ld b, $4 ; doturn
jp SkipToBattleCommand
.reset
2013-12-01 11:19:57 -08:00
xor a
ld [de], a
ret
2018-06-24 07:09:41 -07:00
BattleCommand_RolloutPower:
2013-12-01 11:19:57 -08:00
; rolloutpower
ld a, BATTLE_VARS_STATUS
call GetBattleVar
and SLP
2013-12-01 11:19:57 -08:00
ret nz
2018-01-23 14:39:09 -08:00
ld hl, wPlayerRolloutCount
2013-12-01 11:19:57 -08:00
ld a, [hBattleTurn]
and a
2016-01-09 13:28:22 -08:00
jr z, .got_rollout_count
2018-01-23 14:39:09 -08:00
ld hl, wEnemyRolloutCount
2013-12-01 11:19:57 -08:00
2016-01-09 13:28:22 -08:00
.got_rollout_count
2013-12-01 11:19:57 -08:00
ld a, [hl]
and a
2016-01-09 13:28:22 -08:00
jr nz, .skip_set_rampage
2013-12-01 11:19:57 -08:00
ld a, 1
2016-01-09 13:28:22 -08:00
ld [wSomeoneIsRampaging], a
2013-12-01 11:19:57 -08:00
2016-01-09 13:28:22 -08:00
.skip_set_rampage
2018-01-23 14:39:09 -08:00
ld a, [wAttackMissed]
2013-12-01 11:19:57 -08:00
and a
jr z, .hit
ld a, BATTLE_VARS_SUBSTATUS1
call GetBattleVarAddr
2013-12-01 11:19:57 -08:00
res 6, [hl]
ret
.hit
inc [hl]
ld a, [hl]
ld b, a
cp MAX_ROLLOUT_COUNT
2016-01-09 13:28:22 -08:00
jr c, .not_done_with_rollout
2013-12-01 11:19:57 -08:00
ld a, BATTLE_VARS_SUBSTATUS1
call GetBattleVarAddr
res SUBSTATUS_ROLLOUT, [hl]
2016-01-09 13:28:22 -08:00
jr .done_with_substatus_flag
2013-12-01 11:19:57 -08:00
2016-01-09 13:28:22 -08:00
.not_done_with_rollout
2013-12-01 11:19:57 -08:00
ld a, BATTLE_VARS_SUBSTATUS1
call GetBattleVarAddr
set SUBSTATUS_ROLLOUT, [hl]
2013-12-01 11:19:57 -08:00
2016-01-09 13:28:22 -08:00
.done_with_substatus_flag
2013-12-01 11:19:57 -08:00
ld a, BATTLE_VARS_SUBSTATUS2
call GetBattleVar
bit SUBSTATUS_CURLED, a
2016-01-09 13:28:22 -08:00
jr z, .not_curled
2013-12-01 11:19:57 -08:00
inc b
2016-01-09 13:28:22 -08:00
.not_curled
.loop
2013-12-01 11:19:57 -08:00
dec b
2016-01-09 13:28:22 -08:00
jr z, .done_damage
2013-12-01 11:19:57 -08:00
2018-01-23 14:39:09 -08:00
ld hl, wCurDamage + 1
2013-12-01 11:19:57 -08:00
sla [hl]
dec hl
rl [hl]
2016-01-09 13:28:22 -08:00
jr nc, .loop
2013-12-01 11:19:57 -08:00
ld a, $ff
ld [hli], a
ld [hl], a
2016-01-09 13:28:22 -08:00
.done_damage
2013-12-01 11:19:57 -08:00
ret