mirror of
https://github.com/pret/pokered.git
synced 2026-03-21 17:45:50 -05:00
33 lines
590 B
NASM
33 lines
590 B
NASM
; width of east/west connections
|
|
; height of north/south connections
|
|
DEF MAP_BORDER EQU 3
|
|
|
|
; connection directions
|
|
const_def
|
|
const EAST_F
|
|
const WEST_F
|
|
const SOUTH_F
|
|
const NORTH_F
|
|
|
|
; wCurMapConnections
|
|
const_def
|
|
shift_const EAST ; 1
|
|
shift_const WEST ; 2
|
|
shift_const SOUTH ; 4
|
|
shift_const NORTH ; 8
|
|
|
|
; wWarpEntries
|
|
DEF MAX_WARP_EVENTS EQU 32
|
|
|
|
; wNumSigns
|
|
DEF MAX_BG_EVENTS EQU 16
|
|
|
|
; wMapSpriteData
|
|
DEF MAX_OBJECT_EVENTS EQU 16
|
|
|
|
; flower and water tile animations
|
|
const_def
|
|
const TILEANIM_NONE ; 0
|
|
const TILEANIM_WATER ; 1
|
|
const TILEANIM_WATER_FLOWER ; 2
|