diff options
author | Astatin <[email protected]> | 2025-01-22 18:20:43 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-01-22 18:20:43 +0900 |
commit | 57326c9acf9cbb025d54093fb90fd70614659400 (patch) | |
tree | c8f396d56119fbfba1718e1891b9e9bd659f698f /playerattacks | |
parent | 02038990a93c0b4cf58269b5456327ea64b998b7 (diff) |
Add laser animation and change animation steps to decrement
Diffstat (limited to 'playerattacks')
-rw-r--r-- | playerattacks/earcoptr.gbasm | 1 | ||||
-rw-r--r-- | playerattacks/heal.gbasm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/playerattacks/earcoptr.gbasm b/playerattacks/earcoptr.gbasm index 7e74802..123ec86 100644 --- a/playerattacks/earcoptr.gbasm +++ b/playerattacks/earcoptr.gbasm @@ -72,6 +72,7 @@ Earcoptr_Attack: LD A, $mem_bunny_y LD C, A LD A, $02 + LD E, $30 CALL =Try_Launch_Animation POP BC diff --git a/playerattacks/heal.gbasm b/playerattacks/heal.gbasm index 281726a..789afac 100644 --- a/playerattacks/heal.gbasm +++ b/playerattacks/heal.gbasm @@ -14,6 +14,7 @@ Heal_Attack: LD A, $mem_bunny_y LD C, A LD A, $01 + LD E, $20 CALL =Try_Launch_Animation POP BC |