mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
53 lines
1.2 KiB
NASM
53 lines
1.2 KiB
NASM
const_value set 2 ; object constants
|
|
const ROUTE29ROUTE46GATE_OFFICER
|
|
const ROUTE29ROUTE46GATE_YOUNGSTER
|
|
|
|
Route29Route46Gate_MapScripts:
|
|
db 0 ; scene scripts
|
|
|
|
db 0 ; callbacks
|
|
|
|
Route29Route46GateOfficerScript:
|
|
jumptextfaceplayer Route29Route46GateOfficerText
|
|
|
|
Route29Route46GateYoungsterScript:
|
|
jumptextfaceplayer Route29Route46GateYoungsterText
|
|
|
|
Route29Route46GateOfficerText:
|
|
text "You can't climb"
|
|
line "ledges."
|
|
|
|
para "But you can jump"
|
|
line "down from them to"
|
|
cont "take a shortcut."
|
|
done
|
|
|
|
Route29Route46GateYoungsterText:
|
|
text "Different kinds of"
|
|
line "#MON appear"
|
|
cont "past here."
|
|
|
|
para "If you want to"
|
|
line "catch them all,"
|
|
|
|
para "you have to look"
|
|
line "everywhere."
|
|
done
|
|
|
|
Route29Route46Gate_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
db 4 ; warp events
|
|
warp_event 4, 0, 1, ROUTE_46
|
|
warp_event 5, 0, 2, ROUTE_46
|
|
warp_event 4, 7, 1, ROUTE_29
|
|
warp_event 5, 7, 1, ROUTE_29
|
|
|
|
db 0 ; coord events
|
|
|
|
db 0 ; bg events
|
|
|
|
db 2 ; object events
|
|
object_event 0, 4, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Route29Route46GateOfficerScript, -1
|
|
object_event 6, 4, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route29Route46GateYoungsterScript, -1
|