1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
Route23_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 1
; callbacks
dbw MAPCALLBACK_NEWMAP, .FlyPoint
.FlyPoint:
setflag ENGINE_FLYPOINT_INDIGO_PLATEAU
return
IndigoPlateauSign:
jumptext IndigoPlateauSignText
IndigoPlateauSignText:
text "INDIGO PLATEAU"
para "The Ultimate Goal"
line "for Trainers!"
para "#MON LEAGUE HQ"
done
Route23_MapEventHeader:
; filler
db 0, 0
.Warps:
db 4
warp_def $5, $9, 1, INDIGO_PLATEAU_POKECENTER_1F
warp_def $5, $a, 2, INDIGO_PLATEAU_POKECENTER_1F
warp_def $d, $9, 10, VICTORY_ROAD
warp_def $d, $a, 10, VICTORY_ROAD
.XYTriggers:
db 0
.Signposts:
db 1
signpost 7, 11, SIGNPOST_READ, IndigoPlateauSign
.PersonEvents:
db 0
|