diff options
Diffstat (limited to 'playerattacks/earcoptr.gbasm')
-rw-r--r-- | playerattacks/earcoptr.gbasm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/playerattacks/earcoptr.gbasm b/playerattacks/earcoptr.gbasm index 721692e..818471b 100644 --- a/playerattacks/earcoptr.gbasm +++ b/playerattacks/earcoptr.gbasm @@ -17,10 +17,13 @@ Earcoptr_Attack_Loading_Regular: SLA A SLA A SLA A - INC A LD L, A LD A, (HL+) + CP $00 + RET Z + + LD A, (HL+) LD E, A LD A, $mem_bunny_x @@ -57,6 +60,7 @@ Earcoptr_Attack_Loading_Regular: LD A, $1f SUB B LD $mem_blinking_animation_counter, A + .SET_SOUND_EFFECT =_sound_effect_Damage LD A, (HL) SUB $01 @@ -91,6 +95,8 @@ Earcoptr_Attack: POP DE POP BC + .SET_SOUND_EFFECT =_sound_effect_Earcoptr + LD BC, =Earcoptr_Attack_Loading_VBlank LD A, B LD $mem_loading_mode_vblank_func_pointer_high, A |