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

41 lines
579 B
NASM
Raw Normal View History

BattleCommand_PerishSong: ; 376c2
2013-12-01 11:19:57 -08:00
; perishsong
2018-01-23 14:39:09 -08:00
ld hl, wPlayerSubStatus1
ld de, wEnemySubStatus1
2013-12-01 11:19:57 -08:00
bit SUBSTATUS_PERISH, [hl]
jr z, .ok
ld a, [de]
bit SUBSTATUS_PERISH, a
jr nz, .failed
.ok
bit SUBSTATUS_PERISH, [hl]
jr nz, .enemy
set SUBSTATUS_PERISH, [hl]
ld a, 4
2018-01-23 14:39:09 -08:00
ld [wPlayerPerishCount], a
2013-12-01 11:19:57 -08:00
.enemy
ld a, [de]
bit SUBSTATUS_PERISH, a
jr nz, .done
set SUBSTATUS_PERISH, a
ld [de], a
ld a, 4
2018-01-23 14:39:09 -08:00
ld [wEnemyPerishCount], a
2013-12-01 11:19:57 -08:00
.done
call AnimateCurrentMove
2013-12-01 11:19:57 -08:00
ld hl, StartPerishText
jp StdBattleTextBox
.failed
call AnimateFailedMove
2013-12-01 11:19:57 -08:00
jp PrintButItFailed
; 376f8