diff options
author | Astatin <[email protected]> | 2025-04-11 16:20:31 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-04-11 16:20:31 +0200 |
commit | a846ccc0cc20fe49b5ee07e252b370dc005b38cd (patch) | |
tree | 7996f4fdbca1e054bac3d87dd565178da9ba9191 /playerattacks.gbasm | |
parent | 690ff7c09726d9e760b52b717c70e9567531175c (diff) |
Make hop the only default attack and make cats drop heal
Diffstat (limited to 'playerattacks.gbasm')
-rw-r--r-- | playerattacks.gbasm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/playerattacks.gbasm b/playerattacks.gbasm index b9b108b..d87368e 100644 --- a/playerattacks.gbasm +++ b/playerattacks.gbasm @@ -83,7 +83,23 @@ Canceled_Attack: LD $mem_bunny_mana, A RET +Empty_Attack: + RET + Attack_List: + .Empty: + ; Attack menu name string + .DB =Empty + + ; Attack function + .DB =Empty_Attack + + ; Energy point cost + .DB $00 + + .PADTO =.Empty+8 + + .Hop: ; Attack menu name string .DB =Hop_Attack_Menu_Txt |