Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/constants/map_data_constants.asm
1270 views
1
; width of east/west connections
2
; height of north/south connections
3
DEF MAP_BORDER EQU 3
4
5
; connection directions
6
const_def
7
const EAST_F
8
const WEST_F
9
const SOUTH_F
10
const NORTH_F
11
12
; wCurMapConnections
13
const_def
14
shift_const EAST ; 1
15
shift_const WEST ; 2
16
shift_const SOUTH ; 4
17
shift_const NORTH ; 8
18
19
; wWarpEntries
20
DEF MAX_WARP_EVENTS EQU 32
21
22
; wNumSigns
23
DEF MAX_BG_EVENTS EQU 16
24
25
; wMapSpriteData
26
DEF MAX_OBJECT_EVENTS EQU 16
27
28
; flower and water tile animations
29
const_def
30
const TILEANIM_NONE ; 0
31
const TILEANIM_WATER ; 1
32
const TILEANIM_WATER_FLOWER ; 2
33
34