Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/data/tilesets/warp_tile_ids.asm
1271 views
1
WarpTileIDPointers:
2
table_width 2
3
dw .OverworldWarpTileIDs
4
dw .RedsHouse1WarpTileIDs
5
dw .MartWarpTileIDs
6
dw .ForestWarpTileIDs
7
dw .RedsHouse2WarpTileIDs
8
dw .DojoWarpTileIDs
9
dw .PokecenterWarpTileIDs
10
dw .GymWarpTileIDs
11
dw .HouseWarpTileIDs
12
dw .ForestGateWarpTileIDs
13
dw .MuseumWarpTileIDs
14
dw .UndergroundWarpTileIDs
15
dw .GateWarpTileIDs
16
dw .ShipWarpTileIDs
17
dw .ShipPortWarpTileIDs
18
dw .CemeteryWarpTileIDs
19
dw .InteriorWarpTileIDs
20
dw .CavernWarpTileIDs
21
dw .LobbyWarpTileIDs
22
dw .MansionWarpTileIDs
23
dw .LabWarpTileIDs
24
dw .ClubWarpTileIDs
25
dw .FacilityWarpTileIDs
26
dw .PlateauWarpTileIDs
27
assert_table_length NUM_TILESETS
28
29
MACRO warp_tiles
30
IF _NARG
31
db \# ; all args
32
ENDC
33
db -1 ; end
34
ENDM
35
36
.OverworldWarpTileIDs:
37
warp_tiles $1B, $58
38
39
.ForestGateWarpTileIDs:
40
.MuseumWarpTileIDs:
41
.GateWarpTileIDs:
42
db $3B
43
; fallthrough
44
.RedsHouse1WarpTileIDs:
45
.RedsHouse2WarpTileIDs:
46
warp_tiles $1A, $1C
47
48
.MartWarpTileIDs:
49
.PokecenterWarpTileIDs:
50
warp_tiles $5E
51
52
.ForestWarpTileIDs:
53
warp_tiles $5A, $5C, $3A
54
55
.DojoWarpTileIDs:
56
.GymWarpTileIDs:
57
warp_tiles $4A
58
59
.HouseWarpTileIDs:
60
warp_tiles $54, $5C, $32
61
62
.ShipWarpTileIDs:
63
warp_tiles $37, $39, $1E, $4A
64
65
.InteriorWarpTileIDs:
66
warp_tiles $15, $55, $04
67
68
.CavernWarpTileIDs:
69
warp_tiles $18, $1A, $22
70
71
.LobbyWarpTileIDs:
72
warp_tiles $1A, $1C, $38
73
74
.MansionWarpTileIDs:
75
warp_tiles $1A, $1C, $53
76
77
.LabWarpTileIDs:
78
warp_tiles $34
79
80
.FacilityWarpTileIDs:
81
db $43, $58, $20
82
; fallthrough
83
.CemeteryWarpTileIDs:
84
db $1B
85
; fallthrough
86
.UndergroundWarpTileIDs:
87
warp_tiles $13
88
89
.PlateauWarpTileIDs:
90
db $1B, $3B
91
; fallthrough
92
.ShipPortWarpTileIDs:
93
.ClubWarpTileIDs:
94
warp_tiles ; end
95
96