kep-hack/constants/map_data_constants.asm
2020-11-29 21:28:38 +00:00

17 lines
387 B
NASM

; width of east/west connections
; height of north/south connections
MAP_BORDER EQU 3
; connection directions
const_def
shift_const EAST ; 1
shift_const WEST ; 2
shift_const SOUTH ; 4
shift_const NORTH ; 8
; flower and water tile animations
const_def
const STATIC_FLOWERS_WATER ; 0
const STATIC_FLOWERS_ANIMATED_WATER ; 1
const ANIMATED_FLOWERS_WATER ; 2