diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-14 10:21:18 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-14 13:32:09 -0400 |
| commit | f37cf959c930ae9595f9f71ce0d9b17dcf5421d0 (patch) | |
| tree | 33cc0d34fec73e972f4fb040b8b31f59b7e69805 /data/maps/dungeon_maps.asm | |
| parent | Merge pull request #269 from Rangi42/master (diff) | |
| download | pokeyellow-f37cf959c930ae9595f9f71ce0d9b17dcf5421d0.tar.gz pokeyellow-f37cf959c930ae9595f9f71ce0d9b17dcf5421d0.tar.xz pokeyellow-f37cf959c930ae9595f9f71ce0d9b17dcf5421d0.zip | |
Clean up some data, using macros for multiline list entries
Diffstat (limited to 'data/maps/dungeon_maps.asm')
| -rw-r--r-- | data/maps/dungeon_maps.asm | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/data/maps/dungeon_maps.asm b/data/maps/dungeon_maps.asm index 118cf46b..bec97b48 100644 --- a/data/maps/dungeon_maps.asm +++ b/data/maps/dungeon_maps.asm @@ -5,25 +5,18 @@ DungeonMaps1: db ROCK_TUNNEL_1F db SEAFOAM_ISLANDS_1F db ROCK_TUNNEL_B1F - db $FF + db -1 ; end ; GetBattleTransitionID_IsDungeonMap checks if wCurMap ; is in between or equal to each pair of maps DungeonMaps2: ; all MT_MOON maps - db MT_MOON_1F - db MT_MOON_B2F - + db MT_MOON_1F, MT_MOON_B2F ; all SS_ANNE maps, VICTORY_ROAD_1F, LANCES_ROOM, and HALL_OF_FAME - db SS_ANNE_1F - db HALL_OF_FAME - + db SS_ANNE_1F, HALL_OF_FAME ; all POKEMON_TOWER maps and Lavender Town buildings - db LAVENDER_POKECENTER - db LAVENDER_CUBONE_HOUSE - + db LAVENDER_POKECENTER, LAVENDER_CUBONE_HOUSE ; SILPH_CO_[2-8]F, POKEMON_MANSION[2F-B1F], SAFARI_ZONE, and ; CERULEAN_CAVE maps, except for SILPH_CO_1F - db SILPH_CO_2F - db CERULEAN_CAVE_1F - db $FF + db SILPH_CO_2F, CERULEAN_CAVE_1F + db -1 ; end |
