pokecrystal-board/maps/Route16Gate.asm

78 lines
1.5 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const ROUTE16GATE_OFFICER
Route16Gate_MapScripts:
def_scene_scripts
scene_script Route16GateNoopScene, SCENE_ROUTE16GATE_BICYCLE_CHECK
def_callbacks
Route16GateNoopScene:
end
2017-12-17 16:48:04 -08:00
Route16GateOfficerScript:
jumptextfaceplayer Route16GateOfficerText
2018-02-28 14:47:31 -08:00
Route16GateBicycleCheck:
checkitem BICYCLE
2018-02-28 14:47:31 -08:00
iffalse .NoBicycle
end
2018-02-28 14:47:31 -08:00
.NoBicycle:
2015-11-26 21:22:14 -08:00
showemote EMOTE_SHOCK, ROUTE16GATE_OFFICER, 15
turnobject PLAYER, UP
2015-12-09 15:25:44 -08:00
opentext
2018-02-28 14:47:31 -08:00
writetext Route16GateCannotPassText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2018-02-28 14:47:31 -08:00
applymovement PLAYER, Route16GateCannotPassMovement
end
2018-02-28 14:47:31 -08:00
Route16GateCannotPassMovement:
2016-05-14 10:46:14 -07:00
step RIGHT
turn_head LEFT
step_end
2017-12-17 16:48:04 -08:00
Route16GateOfficerText:
text "CYCLING ROAD"
line "starts here."
para "It's all downhill,"
line "so it's totally"
cont "exhilarating."
para "It's a great sort"
line "of feeling that"
para "you can't get from"
line "a ship or train."
done
2018-02-28 14:47:31 -08:00
Route16GateCannotPassText:
text "Hey! Whoa! Stop!"
para "You can't go out"
line "on the CYCLING"
para "ROAD without a"
line "BICYCLE."
done
Route16Gate_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 0, 4, ROUTE_16, 4
warp_event 0, 5, ROUTE_16, 5
warp_event 9, 4, ROUTE_16, 2
warp_event 9, 5, ROUTE_16, 3
def_coord_events
coord_event 5, 4, SCENE_ROUTE16GATE_BICYCLE_CHECK, Route16GateBicycleCheck
coord_event 5, 5, SCENE_ROUTE16GATE_BICYCLE_CHECK, Route16GateBicycleCheck
def_bg_events
def_object_events
2018-02-01 19:22:07 -08:00
object_event 5, 2, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Route16GateOfficerScript, -1