diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/map_constants.asm | 5 | ||||
-rw-r--r-- | constants/tilemap_constants.asm | 38 |
2 files changed, 43 insertions, 0 deletions
diff --git a/constants/map_constants.asm b/constants/map_constants.asm index 9d9ae339b..c98c64ff9 100644 --- a/constants/map_constants.asm +++ b/constants/map_constants.asm @@ -494,6 +494,11 @@ MAP_NONE EQU 0 const _ROOF ; connection directions + const_def + const EAST_F + const WEST_F + const SOUTH_F + const NORTH_F const_def shift_const EAST diff --git a/constants/tilemap_constants.asm b/constants/tilemap_constants.asm index e47a1b269..215bd2934 100644 --- a/constants/tilemap_constants.asm +++ b/constants/tilemap_constants.asm @@ -3,3 +3,41 @@ WALLTILE EQU 1 WATRTILE EQU 15 TALK EQU 1 << 4 + +const_value SET 1 + const TILESET_JOHTO_OUTSIDE_1 ; 01 + const TILESET_JOHTO_OUTSIDE_2 ; 02 + const TILESET_KANTO_OUTSIDE ; 03 + const TILESET_BATTLE_TOWER_OUTSIDE ; 04 + const TILESET_HOUSE_1 ; 05 + const TILESET_KRISS_HOUSE ; 06 + const TILESET_POKECENTER ; 07 + const TILESET_GATE ; 08 + const TILESET_PORT ; 09 + const TILESET_LAB ; 0a + const TILESET_POWER_PLANT ; 0b + const TILESET_MART ; 0c + const TILESET_CELADON_MANSION ; 0d + const TILESET_GAME_CORNER ; 0e + const TILESET_GYM_1 ; 0f + const TILESET_KURT_HOUSE ; 10 + const TILESET_TRAIN_STATION ; 11 + const TILESET_OLIVINE_GYM ; 12 + const TILESET_LIGHTHOUSE ; 13 + const TILESET_KRISS_HOUSE_2F ; 14 + const TILESET_GOLDENROD_POKECOM_CENTER_2F_MOBILE ; 15 + const TILESET_BATTLE_TOWER ; 16 + const TILESET_SPROUT_TOWER ; 17 + const TILESET_CAVE ; 18 + const TILESET_PARK ; 19 + const TILESET_RUINS_OF_ALPH ; 1a + const TILESET_RADIO_TOWER ; 1b + const TILESET_UNDERGROUND ; 1c + const TILESET_ICE_PATH ; 1d + const TILESET_WHIRL_ISLANDS ; 1e + const TILESET_ILEX_FOREST ; 1f + const TILESET_20 ; 20 + const TILESET_HO_OH_WORD_ROOM ; 21 + const TILESET_KABUTO_WORD_ROOM ; 22 + const TILESET_OMANYTE_WORD_ROOM ; 23 + const TILESET_AERODACTYL_WORD_ROOM ; 24 |