pokecrystal-board/maps/Route23.asm
PikalaxALT 432df825d4 Replaced GROUP_, MAP_ references with the map macro
Updated macros that rely on the GROUP_, MAP_ constants to use the map macro

Added GROUP_NONE and MAP_NONE for the sake of compatibility with this new scheme

Added new macro elevfloor to simplify the definition of elevators under this new scheme
2015-07-23 12:59:19 -04:00

47 lines
676 B
NASM

Route23_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 1
; callbacks
dbw 5, .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