1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
object_const_def
const ROUTE32RUINSOFALPHGATE_OFFICER
const ROUTE32RUINSOFALPHGATE_POKEFAN_M
const ROUTE32RUINSOFALPHGATE_YOUNGSTER
Route32RuinsOfAlphGate_MapScripts:
def_scene_scripts
def_callbacks
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_MapEvents:
db 0, 0 ; filler
def_warp_events
warp_event 0, 4, RUINS_OF_ALPH_OUTSIDE, 10
warp_event 0, 5, RUINS_OF_ALPH_OUTSIDE, 11
warp_event 9, 4, ROUTE_32, 2
warp_event 9, 5, ROUTE_32, 3
def_coord_events
def_bg_events
def_object_events
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
|