aboutsummaryrefslogtreecommitdiff
path: root/entity/list.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-01-07 19:29:17 +0900
committerAstatin <[email protected]>2025-01-07 19:30:12 +0900
commitadb2d9935253b0ea0e31b462f342aa7823697a7e (patch)
treeb17bff2c89f69bc2265b3abd09383b061cdde59c /entity/list.gbasm
parentba36a613da1ce2dd822429cff4bd994094010abe (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.gbasm60
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