diff options
author | Astatin <[email protected]> | 2025-03-11 18:46:42 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-03-11 18:46:42 +0900 |
commit | ab45947d3fdc9885c497d9fc3dd124c7986f6ea4 (patch) | |
tree | 6800a9c3ebaebb5f35d54fd5ed1e0e8214953544 /main.gbasm | |
parent | 957834ffafd4c82700e27fd9d69b695bb2247d97 (diff) |
Add invincible friendly bunny you can talk to
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -110,6 +110,8 @@ New_Dungeon: LD (HL+), A LD A, $03 LD (HL+), A + LD A, $06 + LD $mem_loaded_special_entity_index, A LD HL, $mem_bunny_attacks LD A, $00 LD (HL+), A @@ -313,6 +315,7 @@ STAT_Entrypoint: .INCLUDE "entity/fox.gbasm" .INCLUDE "entity/cat.gbasm" .INCLUDE "entity/penguin.gbasm" +.INCLUDE "entity/questgoal.gbasm" .INCLUDE "entity/actions.gbasm" .INCLUDE "entity/collisions.gbasm" .INCLUDE "entity/display.gbasm" |