diff options
author | Astatin <[email protected]> | 2025-05-13 15:52:37 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-05-13 15:52:37 +0200 |
commit | ef9de76cd0bc313385b7edac3659e03ab36d3c1e (patch) | |
tree | 4125a1ba04438d8e9db5262d24b525f370a41f2f /map | |
parent | b0f9e2e6d53983faa9d213b40d2bd6a23473e134 (diff) |
Add bugs and poison
Diffstat (limited to 'map')
-rw-r--r-- | map/dungeons.gbasm | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/map/dungeons.gbasm b/map/dungeons.gbasm index 930fede..5fb5a2c 100644 --- a/map/dungeons.gbasm +++ b/map/dungeons.gbasm @@ -88,14 +88,11 @@ Dungeon: .name: .DB =Dungeon_Name_1_Txt .max_floor: .DB 0x0a, inv(0x0a) .spawning_patterns: - ; --DBG-- - .DB $01, $01, $01, $01, 0b11111111 - ; --DBG-- - .DB $02, $02, $02, $05, 0b00000010 - .DB $02, $02, $03, $05, 0b00100011 - .DB $02, $02, $00, $05, 0b00100111 - .DB $00, $02, $03, $05, 0b00011101 - .DB $02, $02, $04, $05, 0b00111111 - .DB $02, $00, $03, $05, 0b00011111 - .DB $00, $04, $03, $05, 0b00011111 - .DB $00, $04, $03, $05, 0b00111111 + .DB $entity_cat_index, $entity_cat_index, $entity_cat_index, $entity_fimsh_index, 0b00000010 + .DB $entity_cat_index, $entity_cat_index, $entity_penguin_index, $entity_fimsh_index, 0b00100011 + .DB $entity_cat_index, $entity_cat_index, $entity_fox_index, $entity_fimsh_index, 0b00100111 + .DB $entity_fox_index, $entity_cat_index, $entity_penguin_index, $entity_fimsh_index, 0b00011101 + .DB $entity_cat_index, $entity_cat_index, $entity_mouse_index, $entity_fimsh_index, 0b00111111 + .DB $entity_cat_index, $entity_fox_index, $entity_penguin_index, $entity_fimsh_index, 0b00011111 + .DB $entity_fox_index, $entity_bug_index, $entity_penguin_index, $entity_fimsh_index, 0b00011111 + .DB $entity_fox_index, $entity_mouse_index, $entity_penguin_index, $entity_fimsh_index, 0b00111111 |