diff options
author | Astatin <[email protected]> | 2025-01-07 19:29:17 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-01-07 19:30:12 +0900 |
commit | adb2d9935253b0ea0e31b462f342aa7823697a7e (patch) | |
tree | b17bff2c89f69bc2265b3abd09383b061cdde59c /entity/list.gbasm | |
parent | ba36a613da1ce2dd822429cff4bd994094010abe (diff) |
Add support for multiple enemies loaded (up to 4 loaded at dungeon gen time)
Diffstat (limited to 'entity/list.gbasm')
-rw-r--r-- | entity/list.gbasm | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/entity/list.gbasm b/entity/list.gbasm new file mode 100644 index 0000000..d534d4d --- /dev/null +++ b/entity/list.gbasm @@ -0,0 +1,60 @@ +Entity_list: + .Fox: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Fox + + ; Turn Jump Table index + .DB $02 + + ; Interaction Jump Table index + .DB $01 + + ; Starting health + .DB $04 + + .PADTO =.Fox+8 + + .Frog: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Frog + + ; Turn Jump Table index + .DB $00 + + ; Interaction Jump Table index + .DB $02 + + ; Starting health + .DB $00 + + .PADTO =.Frog+8 + + .Mouse: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Mouse + + ; Turn Jump Table index + .DB $00 + + ; Interaction Jump Table index + .DB $02 + + ; Starting health + .DB $00 + + .PADTO =.Mouse+8 + + .Fimsh: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Fimsh + + ; Turn Jump Table index + .DB $00 + + ; Interaction Jump Table index + .DB $02 + + ; Starting health + .DB $00 + + .PADTO =.Fimsh+8 |