mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
71 lines
1.7 KiB
NASM
71 lines
1.7 KiB
NASM
const_value set 2
|
|
const ROUTE32RUINSOFALPHGATE_OFFICER
|
|
const ROUTE32RUINSOFALPHGATE_POKEFAN_M
|
|
const ROUTE32RUINSOFALPHGATE_YOUNGSTER
|
|
|
|
Route32RuinsOfAlphGate_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
Route32RuinsOfAlphGateOfficerScript:
|
|
jumptextfaceplayer Route32RuinsOfAlphGateOfficerText
|
|
|
|
Route32RuinsOfAlphGatePokefanMScript:
|
|
jumptextfaceplayer Route32RuinsOfAlphGatePokefanMText
|
|
|
|
Route32RuinsOfAlphGateYoungsterScript:
|
|
jumptextfaceplayer Route32RuinsOfAlphGateYoungsterText
|
|
|
|
Route32RuinsOfAlphGateOfficerText:
|
|
text "RUINS OF ALPH"
|
|
|
|
para "A Look-and-Touch"
|
|
line "Tourist Site"
|
|
|
|
para "Try the sliding"
|
|
line "stone panels!"
|
|
done
|
|
|
|
Route32RuinsOfAlphGatePokefanMText:
|
|
text "You're studying"
|
|
line "the RUINS?"
|
|
|
|
para "I see a scientist"
|
|
line "in the making."
|
|
done
|
|
|
|
Route32RuinsOfAlphGateYoungsterText:
|
|
text "There are drawings"
|
|
line "on stone panels."
|
|
|
|
para "I tried moving"
|
|
line "them. I wonder"
|
|
cont "what they are."
|
|
done
|
|
|
|
Route32RuinsOfAlphGate_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 4
|
|
warp_def 0, 4, 10, RUINS_OF_ALPH_OUTSIDE
|
|
warp_def 0, 5, 11, RUINS_OF_ALPH_OUTSIDE
|
|
warp_def 9, 4, 2, ROUTE_32
|
|
warp_def 9, 5, 3, ROUTE_32
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 0
|
|
|
|
.ObjectEvents:
|
|
db 3
|
|
object_event 5, 2, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Route32RuinsOfAlphGateOfficerScript, -1
|
|
object_event 8, 2, SPRITE_POKEFAN_M, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, Route32RuinsOfAlphGatePokefanMScript, -1
|
|
object_event 1, 6, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route32RuinsOfAlphGateYoungsterScript, -1
|