2014-06-17 11:58:11 -07:00
|
|
|
MAX_ROLLOUT_COUNT EQU 5
|
|
|
|
|
|
|
|
|
2013-12-01 11:19:57 -08:00
|
|
|
BattleCommand5b: ; 37718
|
|
|
|
; checkcurl
|
|
|
|
|
|
|
|
ld de, PlayerRolloutCount
|
|
|
|
ld a, [hBattleTurn]
|
|
|
|
and a
|
|
|
|
jr z, .asm_37723
|
|
|
|
ld de, EnemyRolloutCount
|
|
|
|
|
|
|
|
.asm_37723
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS1
|
|
|
|
call GetBattleVar
|
|
|
|
bit SUBSTATUS_ENCORED, a
|
|
|
|
jr z, .asm_37731
|
|
|
|
|
|
|
|
ld b, $4 ; doturn
|
|
|
|
jp SkipToBattleCommand
|
|
|
|
|
|
|
|
.asm_37731
|
|
|
|
xor a
|
|
|
|
ld [de], a
|
|
|
|
ret
|
|
|
|
; 37734
|
|
|
|
|
|
|
|
|
|
|
|
BattleCommand5c: ; 37734
|
|
|
|
; rolloutpower
|
|
|
|
|
|
|
|
ld a, BATTLE_VARS_STATUS
|
|
|
|
call GetBattleVar
|
2014-06-17 11:58:11 -07:00
|
|
|
and SLP
|
2013-12-01 11:19:57 -08:00
|
|
|
ret nz
|
|
|
|
|
|
|
|
ld hl, PlayerRolloutCount
|
|
|
|
ld a, [hBattleTurn]
|
|
|
|
and a
|
|
|
|
jr z, .asm_37747
|
|
|
|
ld hl, EnemyRolloutCount
|
|
|
|
|
|
|
|
.asm_37747
|
|
|
|
ld a, [hl]
|
|
|
|
and a
|
|
|
|
jr nz, .asm_37750
|
|
|
|
ld a, 1
|
|
|
|
ld [$c73e], a
|
|
|
|
|
|
|
|
.asm_37750
|
|
|
|
ld a, [AttackMissed]
|
|
|
|
and a
|
|
|
|
jr z, .hit
|
|
|
|
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS1
|
2014-06-14 00:34:57 -07:00
|
|
|
call GetBattleVarAddr
|
2013-12-01 11:19:57 -08:00
|
|
|
res 6, [hl]
|
|
|
|
ret
|
|
|
|
|
|
|
|
.hit
|
|
|
|
inc [hl]
|
|
|
|
ld a, [hl]
|
|
|
|
ld b, a
|
2014-06-17 11:58:11 -07:00
|
|
|
cp MAX_ROLLOUT_COUNT
|
2013-12-01 11:19:57 -08:00
|
|
|
jr c, .asm_3776e
|
|
|
|
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS1
|
2014-06-14 00:34:57 -07:00
|
|
|
call GetBattleVarAddr
|
2014-06-17 11:58:11 -07:00
|
|
|
res SUBSTATUS_ENCORED, [hl]
|
2013-12-01 11:19:57 -08:00
|
|
|
jr .asm_37775
|
|
|
|
|
|
|
|
.asm_3776e
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS1
|
2014-06-14 00:34:57 -07:00
|
|
|
call GetBattleVarAddr
|
2014-06-17 11:58:11 -07:00
|
|
|
set SUBSTATUS_ENCORED, [hl]
|
2013-12-01 11:19:57 -08:00
|
|
|
|
|
|
|
.asm_37775
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS2
|
|
|
|
call GetBattleVar
|
2014-06-17 11:58:11 -07:00
|
|
|
bit SUBSTATUS_CURLED, a
|
2013-12-01 11:19:57 -08:00
|
|
|
jr z, .asm_3777f
|
|
|
|
inc b
|
|
|
|
.asm_3777f
|
|
|
|
dec b
|
|
|
|
jr z, .asm_37790
|
|
|
|
|
|
|
|
ld hl, CurDamage + 1
|
|
|
|
sla [hl]
|
|
|
|
dec hl
|
|
|
|
rl [hl]
|
|
|
|
jr nc, .asm_3777f
|
|
|
|
|
|
|
|
ld a, $ff
|
|
|
|
ld [hli], a
|
|
|
|
ld [hl], a
|
|
|
|
|
|
|
|
.asm_37790
|
|
|
|
ret
|
|
|
|
; 37791
|
|
|
|
|