diff options
Diffstat (limited to 'src/constants/map_constants.asm')
-rw-r--r-- | src/constants/map_constants.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/constants/map_constants.asm b/src/constants/map_constants.asm index 4b74a29..d8637d6 100644 --- a/src/constants/map_constants.asm +++ b/src/constants/map_constants.asm @@ -33,3 +33,20 @@ const POKEMON_DOME_ENTRANCE ; $1F const POKEMON_DOME ; $20 const HALL_OF_HONOR ; $21 + + +; Size of map data. See data/npc_map_data.asm and data/map_objects.asm +; for more info on what these represent +NPC_MAP_SIZE EQU $06 +MAP_OBJECT_SIZE EQU $09 + +; Most of these aren't fully understood so the names aren't great +MAP_SCRIPT_SIZE EQU $0f +MAP_SCRIPT_NPCS EQU $00 +MAP_SCRIPT_POST_NPC EQU $02 +MAP_SCRIPT_OBJECTS EQU $04 +MAP_SCRIPT_PRESSED_A EQU $06 +MAP_SCRIPT_LOAD_MAP EQU $08 +MAP_SCRIPT_AFTER_DUEL EQU $0a +MAP_SCRIPT_MOVED_PLAYER EQU $0c +MAP_SCRIPT_CLOSE_TEXTBOX EQU $0e |