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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
Route11_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
TrainerYoungsterOwen:
trainer EVENT_BEAT_YOUNGSTER_OWEN, YOUNGSTER, OWEN, YoungsterOwenSeenText, YoungsterOwenBeatenText, $0000, YoungsterOwenScript
YoungsterOwenScript:
talkaftercancel
loadfont
writetext UnknownText_0x680b2
closetext
loadmovesprites
end
TrainerYoungsterJason:
trainer EVENT_BEAT_YOUNGSTER_JASON, YOUNGSTER, JASON, YoungsterJasonSeenText, YoungsterJasonBeatenText, $0000, YoungsterJasonScript
YoungsterJasonScript:
talkaftercancel
loadfont
writetext UnknownText_0x6814a
closetext
loadmovesprites
end
TrainerPsychicHerman:
trainer EVENT_BEAT_PSYCHIC_HERMAN, PSYCHIC_T, HERMAN, PsychicHermanSeenText, PsychicHermanBeatenText, $0000, PsychicHermanScript
PsychicHermanScript:
talkaftercancel
loadfont
writetext UnknownText_0x6817b
closetext
loadmovesprites
end
TrainerPsychicFidel:
trainer EVENT_BEAT_PSYCHIC_FIDEL, PSYCHIC_T, FIDEL, PsychicFidelSeenText, PsychicFidelBeatenText, $0000, PsychicFidelScript
PsychicFidelScript:
talkaftercancel
loadfont
writetext UnknownText_0x681ec
closetext
loadmovesprites
end
MapRoute11Signpost0Script:
jumptext UnknownText_0x68238
FruitTreeScript_0x68055:
fruittree $18
MapRoute11SignpostItem1:
dwb EVENT_ROUTE_11_HIDDEN_REVIVE, REVIVE
YoungsterOwenSeenText:
text "There's no cheat-"
line "ing in #MON."
para "Let's keep it fair"
line "and square!"
done
YoungsterOwenBeatenText:
text "Huh? How did this"
line "happen?"
done
UnknownText_0x680b2:
text "I fought fair and"
line "square with honor."
para "I don't regret"
line "this at all."
done
YoungsterJasonSeenText:
text "It itches and"
line "tickles a bit when"
para "I wear shorts in"
line "the grass."
done
YoungsterJasonBeatenText:
text "Aiyaaah!"
line "I got stomped!"
done
UnknownText_0x6814a:
text "I'm going to catch"
line "more #MON in"
cont "the grass."
done
PsychicHermanSeenText:
text "…"
done
PsychicHermanBeatenText:
text "…"
done
UnknownText_0x6817b:
text "…"
para "I lost while I had"
line "my eyes closed…"
done
PsychicFidelSeenText:
text "I can see it…"
para "Everything to see"
line "about you…"
done
PsychicFidelBeatenText:
text "I couldn't foresee"
line "your power…"
done
UnknownText_0x681ec:
text "Strength in con-"
line "viction…"
para "You're strong be-"
line "cause you believe"
cont "in your #MON."
done
UnknownText_0x68238:
text "ROUTE 11"
done
Route11_MapEventHeader:
; filler
db 0, 0
.Warps:
db 0
.XYTriggers:
db 0
.Signposts:
db 2
signpost 7, 3, SIGNPOST_READ, MapRoute11Signpost0Script
signpost 5, 32, SIGNPOST_ITEM, MapRoute11SignpostItem1
.PersonEvents:
db 5
person_event SPRITE_YOUNGSTER, 14, 22, $a, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, 2, 3, TrainerYoungsterOwen, -1
person_event SPRITE_YOUNGSTER, 4, 20, $6, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, 2, 3, TrainerYoungsterJason, -1
person_event SPRITE_YOUNGSTER, 7, 28, $6, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, 2, 1, TrainerPsychicHerman, -1
person_event SPRITE_YOUNGSTER, 6, 8, $a, 0, 0, -1, -1, (1 << 3) | PAL_OW_BLUE, 2, 3, TrainerPsychicFidel, -1
person_event SPRITE_FRUIT_TREE, 2, 32, $1, 0, 0, -1, -1, 0, 0, 0, FruitTreeScript_0x68055, -1
|