diff options
author | Astatin <[email protected]> | 2024-08-22 18:17:04 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-08-22 18:17:04 +0900 |
commit | f0d9de7afa943ebd41c1b202690b2ab3e387f708 (patch) | |
tree | ffd085c9a6182b67ef44a506a2728057f72f5d12 /definitions.gbasm | |
parent | 358e97cc2628d4617543d20d2c40111699f067d6 (diff) |
Stored the rooms + spawn the bunny at the top left (sometimes) of the room
Diffstat (limited to 'definitions.gbasm')
-rw-r--r-- | definitions.gbasm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/definitions.gbasm b/definitions.gbasm index c1741d4..655dfbd 100644 --- a/definitions.gbasm +++ b/definitions.gbasm @@ -11,7 +11,7 @@ .DEFINE OAM_start $FE00 .DEFINE dungeon_generation_step $20 -.DEFINE intial_duplication_probablity $02 +.DEFINE intial_duplication_probablity $01 .DEFINE mem_bunny_x_px ($c000) .DEFINE mem_bunny_y_px ($c001) @@ -36,6 +36,14 @@ ; } .DEFINE mem_dungeon_map $c800 ; Takes the memory from c800 to c87f +.DEFINE mem_room_list $c880 ; Takes the memory from c880 to c89f +.DEFINE mem_number_of_rooms ($c8a0) +; struct room { +; x: u8, +; sizex: u8, +; y: u8, +; sizey: u8, +; } .DEFINE enum_direction_left $01 .DEFINE enum_direction_right $02 |