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
|
const_value set 2
const ROUTE14_POKEFAN_M1
const ROUTE14_YOUNGSTER
const ROUTE14_POKEFAN_M2
const ROUTE14_KIM
Route14_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
Kim:
faceplayer
opentext
trade NPCTRADE_KIM
waitbutton
closetext
end
TrainerPokefanmCarter:
trainer EVENT_BEAT_POKEFANM_CARTER, POKEFANM, CARTER, PokefanmCarterSeenText, PokefanmCarterBeatenText, 0, .Script
.Script:
end_if_just_battled
opentext
writetext PokefanmCarterAfterBattleText
waitbutton
closetext
end
TrainerBirdKeeperRoy:
trainer EVENT_BEAT_BIRD_KEEPER_ROY, BIRD_KEEPER, ROY, BirdKeeperRoySeenText, BirdKeeperRoyBeatenText, 0, .Script
.Script:
end_if_just_battled
opentext
writetext BirdKeeperRoyAfterBattleText
waitbutton
closetext
end
TrainerPokefanmTrevor:
trainer EVENT_BEAT_POKEFANM_TREVOR, POKEFANM, TREVOR, PokefanmTrevorSeenText, PokefanmTrevorBeatenText, 0, .Script
.Script:
end_if_just_battled
opentext
writetext PokefanmTrevorAfterBattleText
waitbutton
closetext
end
PokefanmCarterSeenText:
text "Let me tell you,"
line "I had a hard time"
para "catching my prized"
line "#MON."
done
PokefanmCarterBeatenText:
text "Awaaah!"
done
PokefanmCarterAfterBattleText:
text "SQUIRTLE, CHARMAN-"
line "DER and BULBASAUR…"
para "I think that's a"
line "well-balanced mix."
done
BirdKeeperRoySeenText:
text "My dream is to fly"
line "with my beloved"
cont "bird #MON."
done
BirdKeeperRoyBeatenText:
text "I can dream, but I"
line "can't ever fly…"
done
BirdKeeperRoyAfterBattleText:
text "You have #MON"
line "that know the HM"
para "move FLY, don't"
line "you? I envy you."
done
PokefanmTrevorSeenText:
text "Hi. Did you know…?"
para "#MON get more"
line "friendly if you"
para "train them in a"
line "place that they"
cont "remember."
done
PokefanmTrevorBeatenText:
text "Where did I meet"
line "this PSYDUCK?"
done
PokefanmTrevorAfterBattleText:
text "If only there were"
line "an easy way to"
para "identify where I"
line "got my #MON…"
done
Route14_MapEventHeader:
; filler
db 0, 0
.Warps:
db 0
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 4
object_event 11, 15, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 3, TrainerPokefanmCarter, -1
object_event 11, 27, SPRITE_YOUNGSTER, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBirdKeeperRoy, -1
object_event 6, 11, SPRITE_POKEFAN_M, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 3, TrainerPokefanmTrevor, -1
object_event 7, 5, SPRITE_TEACHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 4, Kim, -1
|