From 3b67c86b61b5d8640860dd5e8b016790ee4814c3 Mon Sep 17 00:00:00 2001 From: Astatin Date: Tue, 4 Feb 2025 16:11:08 +0900 Subject: Add penguins that can freeze the bunny and run away when it's already frozen --- entity/list.gbasm | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) (limited to 'entity/list.gbasm') diff --git a/entity/list.gbasm b/entity/list.gbasm index 9a2de26..054a563 100644 --- a/entity/list.gbasm +++ b/entity/list.gbasm @@ -25,7 +25,7 @@ Entity_list: .DB $03 ; Interaction Jump Table index - .DB $03 + .DB $01 ; Starting health .DB $02 @@ -35,6 +35,42 @@ Entity_list: .PADTO =.Frog+8 + .Cat: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Cat + + ; Turn Jump Table index + .DB $03 + + ; Interaction Jump Table index + .DB $01 + + ; Starting health + .DB $02 + + ; Starting mana + .DB $00 + + .PADTO =.Cat+8 + + .Penguin: + ; Sprite address + .DB =OBJ_Tile_Image_Data.Penguin + + ; Turn Jump Table index + .DB $04 + + ; Interaction Jump Table index + .DB $01 + + ; Starting health + .DB $05 + + ; Starting mana + .DB $03 + + .PADTO =.Penguin+8 + .Mouse: ; Sprite address .DB =OBJ_Tile_Image_Data.Mouse -- cgit v1.2.3-70-g09d2