shithub: pokered

ref: 5fe8aab3445cb76d8e1c4be954c0392f40798950
dir: /constants/map_data_constants.asm/

View raw version
; width of east/west connections
; height of north/south connections
MAP_BORDER EQU 3

; connection directions
EAST  EQU 1
WEST  EQU 2
SOUTH EQU 4
NORTH EQU 8

; tileset environments
INDOOR  EQU 0
CAVE    EQU 1
OUTDOOR EQU 2