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
|
FuchsiaCity_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 1
; callbacks
dbw 5, .FlyPoint
.FlyPoint
setflag ENGINE_FLYPOINT_FUCHSIA
return
YoungsterScript_0x194b22:
jumptextfaceplayer UnknownText_0x194b45
PokefanMScript_0x194b25:
jumptextfaceplayer UnknownText_0x194b83
TeacherScript_0x194b28:
jumptextfaceplayer UnknownText_0x194bd3
FuchsiaCitySign:
jumptext FuchsiaCitySignText
FuchsiaGymSign:
jumptext FuchsiaGymSignText
SafariZoneOfficeSign:
jumptext SafariZoneOfficeSignText
WardensHomeSign:
jumptext WardensHomeSignText
SafariZoneClosedSign:
jumptext SafariZoneClosedSignText
NoLitteringSign:
jumptext NoLitteringSignText
FuchsiaCityPokeCenterSign:
jumpstd pokecentersign
FuchsiaCityMartSign:
jumpstd martsign
FruitTreeScript_0x194b43:
fruittree $1e
UnknownText_0x194b45:
text "One of the ELITE"
line "FOUR used to be"
para "the LEADER of"
line "FUCHSIA's GYM."
done
UnknownText_0x194b83:
text "KOGA's daughter"
line "succeeded him as"
para "the GYM LEADER"
line "after he joined"
cont "the ELITE FOUR."
done
UnknownText_0x194bd3:
text "The SAFARI ZONE is"
line "closed… It's sad,"
para "considering it's"
line "FUCHSIA's main"
cont "attraction."
done
FuchsiaCitySignText:
text "FUCHSIA CITY"
para "Behold! It's"
line "Passion Pink!"
done
FuchsiaGymSignText:
text "FUCHSIA CITY"
line "#MON GYM"
cont "LEADER: JANINE"
para "The Poisonous"
line "Ninja Master"
done
SafariZoneOfficeSignText:
text "There's a notice"
line "here…"
para "SAFARI ZONE OFFICE"
line "is closed until"
cont "further notice."
done
WardensHomeSignText:
text "SAFARI ZONE"
line "WARDEN'S HOME"
done
SafariZoneClosedSignText:
text "The WARDEN is"
line "traveling abroad."
para "Therefore, the"
line "SAFARI ZONE is"
cont "closed."
done
NoLitteringSignText:
text "No littering."
para "Please take your"
line "waste with you."
done
FuchsiaCity_MapEventHeader:
; filler
db 0, 0
.Warps:
db 11
warp_def $d, $5, 2, FUCHSIA_MART
warp_def $d, $16, 1, SAFARI_ZONE_MAIN_OFFICE
warp_def $1b, $8, 1, FUCHSIA_GYM
warp_def $1b, $b, 1, FUCHSIA_BILL_SPEECH_HOUSE
warp_def $1b, $13, 1, FUCHSIA_POKECENTER_1F
warp_def $1b, $1b, 1, SAFARI_ZONE_WARDENS_HOME
warp_def $3, $12, 3, SAFARI_ZONE_FUCHSIA_GATE_BETA
warp_def $16, $25, 1, ROUTE_15_FUCHSIA_GATE
warp_def $17, $25, 2, ROUTE_15_FUCHSIA_GATE
warp_def $23, $7, 1, ROUTE_19___FUCHSIA_GATE
warp_def $23, $8, 2, ROUTE_19___FUCHSIA_GATE
.XYTriggers:
db 0
.Signposts:
db 8
signpost 15, 21, SIGNPOST_READ, FuchsiaCitySign
signpost 29, 5, SIGNPOST_READ, FuchsiaGymSign
signpost 15, 25, SIGNPOST_READ, SafariZoneOfficeSign
signpost 29, 27, SIGNPOST_READ, WardensHomeSign
signpost 5, 17, SIGNPOST_READ, SafariZoneClosedSign
signpost 15, 13, SIGNPOST_READ, NoLitteringSign
signpost 27, 20, SIGNPOST_READ, FuchsiaCityPokeCenterSign
signpost 13, 6, SIGNPOST_READ, FuchsiaCityMartSign
.PersonEvents:
db 4
person_event SPRITE_YOUNGSTER, 18, 23, $2, 1, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, 0, 0, YoungsterScript_0x194b22, -1
person_event SPRITE_POKEFAN_M, 8, 13, $2, 1, 1, -1, -1, (1 << 3) | PAL_OW_BROWN, 0, 0, PokefanMScript_0x194b25, -1
person_event SPRITE_TEACHER, 14, 16, $2, 1, 1, -1, -1, (1 << 3) | PAL_OW_RED, 0, 0, TeacherScript_0x194b28, -1
person_event SPRITE_FRUIT_TREE, 1, 8, $1, 0, 0, -1, -1, 0, 0, 0, FruitTreeScript_0x194b43, -1
|