diff options
author | dannye <33dannye@gmail.com> | 2021-02-13 10:40:32 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-02-13 10:40:32 -0600 |
commit | 105768597ccd732ca54b734c9e6cbc529ebfd49b (patch) | |
tree | fbb7db84c0a4603d7f68874290b55407af9efb60 /src/constants/map_constants.asm | |
parent | 9a20f8c737b53b4a078ade02df95d1e3d6346f3f (diff) |
Document some overworld map stuff
and label some wram addresses used by script commands
Diffstat (limited to 'src/constants/map_constants.asm')
-rw-r--r-- | src/constants/map_constants.asm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/constants/map_constants.asm b/src/constants/map_constants.asm index d8637d6..8aaa09d 100644 --- a/src/constants/map_constants.asm +++ b/src/constants/map_constants.asm @@ -34,6 +34,20 @@ const POKEMON_DOME ; $20 const HALL_OF_HONOR ; $21 +; overworld map selections + const_def 1 + const OWMAP_MASON_LABORATORY ; $01 + const OWMAP_ISHIHARAS_HOUSE ; $02 + const OWMAP_FIGHTING_CLUB ; $03 + const OWMAP_ROCK_CLUB ; $04 + const OWMAP_WATER_CLUB ; $05 + const OWMAP_LIGHTNING_CLUB ; $06 + const OWMAP_GRASS_CLUB ; $07 + const OWMAP_PSYCHIC_CLUB ; $08 + const OWMAP_SCIENCE_CLUB ; $09 + const OWMAP_FIRE_CLUB ; $0A + const OWMAP_CHALLENGE_HALL ; $0B + const OWMAP_POKEMON_DOME ; $0C ; Size of map data. See data/npc_map_data.asm and data/map_objects.asm ; for more info on what these represent |