diff options
author | Astatin <[email protected]> | 2024-12-03 17:56:58 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-12-03 17:56:58 +0900 |
commit | a0cc9155572b22ac1afd4636593f72a18372187b (patch) | |
tree | 22862e0f77a561682e4173d953bfa42580e56b04 /attacks | |
parent | 20422f9a4a180f2c148d93e68930f57379311ca7 (diff) |
Add sparkles animation and shadow palette flag
Diffstat (limited to 'attacks')
-rw-r--r-- | attacks/heal.gbasm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/attacks/heal.gbasm b/attacks/heal.gbasm index fd4bf6f..fc0f2b9 100644 --- a/attacks/heal.gbasm +++ b/attacks/heal.gbasm @@ -12,6 +12,15 @@ Heal_Attack: Heal_Attack.Set_health: LD $mem_bunny_health, A + PUSH BC + LD A, $mem_bunny_x + LD B, A + LD A, $mem_bunny_y + LD C, A + LD A, $01 + CALL =Try_Launch_Animation + POP BC + LD A, $enum_dungeon_mode LD $mem_requested_mode, A LD $mem_current_mode, A |