ref: 3203ad7d50f6558cba8494a4e93d095d16c5e0d2
dir: /engine/battle/effect_commands/perish_song.asm/
BattleCommand_PerishSong: ; 376c2 ; perishsong ld hl, wPlayerSubStatus1 ld de, wEnemySubStatus1 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 ld [wPlayerPerishCount], a .enemy ld a, [de] bit SUBSTATUS_PERISH, a jr nz, .done set SUBSTATUS_PERISH, a ld [de], a ld a, 4 ld [wEnemyPerishCount], a .done call AnimateCurrentMove ld hl, StartPerishText jp StdBattleTextBox .failed call AnimateFailedMove jp PrintButItFailed ; 376f8