mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
47 lines
693 B
NASM
47 lines
693 B
NASM
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
|