diff options
author | Astatin <[email protected]> | 2025-01-16 18:13:21 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-01-16 18:13:21 +0900 |
commit | 02038990a93c0b4cf58269b5456327ea64b998b7 (patch) | |
tree | 8f23c7270bc705d17d9d380d3a927f12f20ca1fa /attacks/heal.gbasm | |
parent | dc5a9431bf4438000dcd028aa6b9c17c9ca492d8 (diff) |
Move basic enemy attack & walker AI to enemiesattacks
Diffstat (limited to 'attacks/heal.gbasm')
-rw-r--r-- | attacks/heal.gbasm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/attacks/heal.gbasm b/attacks/heal.gbasm deleted file mode 100644 index 281726a..0000000 --- a/attacks/heal.gbasm +++ /dev/null @@ -1,29 +0,0 @@ -Heal_Attack: - LD A, $mem_bunny_health - ADD $03 - DAA - CP $20 - JR C, =.Set_health - LD A, $20 - .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 - - .CLOSE_DIALOGUE - - LD A, $mem_map_loading_flags - SET 3, A - LD $mem_map_loading_flags, A - RET |