diff options
author | Astatin <[email protected]> | 2025-06-17 17:42:44 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-06-17 17:42:44 +0200 |
commit | b84a1c2c0ebb484e23753c2f9db8742389fcc99a (patch) | |
tree | 0036439ad1a5cc4c08c4bef79c0255b851a894f2 /map/generationevents.gbasm | |
parent | a9142d0163f41c89196ea201ce8245899c701b82 (diff) |
loading ldtk tilemaps + adding dungeon structure that can be loaded at runtime
Diffstat (limited to 'map/generationevents.gbasm')
-rw-r--r-- | map/generationevents.gbasm | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/map/generationevents.gbasm b/map/generationevents.gbasm index 8a39b64..b540508 100644 --- a/map/generationevents.gbasm +++ b/map/generationevents.gbasm @@ -73,59 +73,3 @@ Generation_Event_Jump_Table: LD HL, $mem_object_list LD (HL), $00 RET - -Init_DemoQuest_Event: - LD HL, $mem_dungeon_generation_events - - LD (HL), $01 ; floor - INC HL - LD (HL), $01 ; jump table dialogue script - INC HL - LD (HL), bank(=Demo_quest_init) - INC HL - LD (HL), high(ptr(=Demo_quest_init)) - INC HL - LD (HL), low(ptr(=Demo_quest_init)) - INC HL - - INC HL - INC HL - INC HL - - LD (HL), $10 ; floor - INC HL - LD (HL), $02 ; jump table entity - INC HL - LD (HL), $06 ; demo quest bunny idx - INC HL - - INC HL - INC HL - INC HL - INC HL - INC HL - - LD (HL), $10 ; floor - INC HL - LD (HL), $03 ; jump table remove stairs - INC HL - INC HL - - INC HL - INC HL - INC HL - INC HL - INC HL - - LD (HL), $10 ; floor - INC HL - LD (HL), $01 ; jump table dialogue script - INC HL - LD (HL), bank(=Demo_quest_floor_reach) - INC HL - LD (HL), high(ptr(=Demo_quest_floor_reach)) - INC HL - LD (HL), low(ptr(=Demo_quest_floor_reach)) - -AAAAAAAAA: - RET |