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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
PokemonFanClub_Script:
call EnableAutoTextBoxDrawing
ld hl, PokemonFanClub_ScriptPointers
ld a, [wPokemonFanClubCurScript]
call CallFunctionInTable
ret
PokemonFanClub_ScriptPointers:
def_script_pointers
dw_const PokemonFanClubScript0, SCRIPT_POKEMONFANCLUB_SCRIPT0
dw_const PokemonFanClubScript1, SCRIPT_POKEMONFANCLUB_SCRIPT1
PokemonFanClubScript0:
ld hl, wd492
bit 7, [hl]
call z, PokemonFanClubScript_59a44
ld hl, wd492
set 7, [hl]
ret
PokemonFanClubScript1:
ld hl, wd492
bit 7, [hl]
call z, PokemonFanClubScript_59a39
ld hl, wd492
set 7, [hl]
ret
PokemonFanClubScript_59a39:
call Random
ldh a, [hRandomAdd]
cp 25
call c, PokemonFanClubScript_59a44
ret
PokemonFanClubScript_59a44:
ld a, [wd471]
bit 7, a
ret z
callfar CheckPikachuStatusCondition
ret c
ld a, SCRIPT_POKEMONFANCLUB_SCRIPT1
ld [wPokemonFanClubCurScript], a
xor a
ld [wPlayerMovingDirection], a
call UpdateSprites
call UpdateSprites
ld a, EXCLAMATION_BUBBLE
ld [wWhichEmotionBubble], a
ld a, $f ; Pikachu
ld [wEmotionBubbleSpriteIndex], a
predef EmotionBubble
ld hl, PokemonFanClubPikachuMovementData
call ApplyPikachuMovementData
ld a, $2 ; Seel
ld [wSprite03StateData1MovementStatus], a
xor a ; SPRITE_FACING_DOWN
ld [wSprite03StateData1FacingDirection], a
callfar InitializePikachuTextID
call DisablePikachuFollowingPlayer
ret
PokemonFanClubPikachuMovementData:
db $00
db $26
db $20
db $20
db $20
db $1e
db $3f
PokemonFanClub_TextPointers:
def_text_pointers
dw_const PokemonFanClubClefairyFanText, TEXT_POKEMONFANCLUB_CLEFAIRY_FAN
dw_const PokemonFanClubSeelFanText, TEXT_POKEMONFANCLUB_SEEL_FAN
dw_const PokemonFanClubClefairyText, TEXT_POKEMONFANCLUB_CLEFAIRY
dw_const PokemonFanClubSeelText, TEXT_POKEMONFANCLUB_SEEL
dw_const PokemonFanClubChairmanText, TEXT_POKEMONFANCLUB_CHAIRMAN
dw_const PokemonFanClubReceptionistText, TEXT_POKEMONFANCLUB_RECEPTIONIST
PokemonFanClubClefairyFanText:
text_asm
CheckEventHL EVENT_LEFT_FANCLUB_AFTER_BIKE_VOUCHER
jr z, .asm_59aaf
ld hl, .yellowtext
call PrintText
jr .done
.asm_59aaf
CheckEventReuseHL EVENT_PIKACHU_FAN_BOAST
jr nz, .mineisbetter
SetEventReuseHL EVENT_SEEL_FAN_BOAST
ld hl, .normaltext
call PrintText
jr .done
.mineisbetter
ResetEventReuseHL EVENT_PIKACHU_FAN_BOAST
ld hl, .bettertext
call PrintText
.done
jp TextScriptEnd
.normaltext
text_far _PokemonFanClubClefairyFanNormalText
text_end
.bettertext
text_far _PokemonFanClubClefairyFanBetterText
text_end
.yellowtext
text_far _PokemonFanClubClefairyFanText
text_end
PokemonFanClubSeelFanText:
text_asm
CheckEventHL EVENT_LEFT_FANCLUB_AFTER_BIKE_VOUCHER
jr z, .asm_59ae7
ld hl, .yellowtext
call PrintText
jr .done
.asm_59ae7
CheckEventReuseHL EVENT_SEEL_FAN_BOAST
jr nz, .mineisbetter
SetEventReuseHL EVENT_PIKACHU_FAN_BOAST
ld hl, .normaltext
call PrintText
jr .done
.mineisbetter
ResetEventReuseHL EVENT_SEEL_FAN_BOAST
ld hl, .bettertext
call PrintText
.done
jp TextScriptEnd
.normaltext
text_far _PokemonFanClubSeelFanNormalText
text_end
.bettertext
text_far _PokemonFanClubSeelFanBetterText
text_end
.yellowtext
text_far _PokemonFanClubSeelFanText
text_end
PokemonFanClubClefairyText:
text_asm
ld hl, .Text
call PrintText
ld a, CLEFAIRY
call PlayCry
call WaitForSoundToFinish
jp TextScriptEnd
.Text
text_far _PokemonFanClubClefairyText
text_end
PokemonFanClubSeelText:
text_asm
ld hl, .Text
call PrintText
ld a, SEEL
call PlayCry
call WaitForSoundToFinish
jp TextScriptEnd
.Text
text_far _PokemonFanClubSeelText
text_end
PokemonFanClubChairmanText:
text_asm
CheckEventHL EVENT_LEFT_FANCLUB_AFTER_BIKE_VOUCHER
jr z, .check_bike_voucher
ld hl, Text_59c1f
call PrintText
call YesNoChoice
ld a, [wCurrentMenuItem]
and a
jr z, .select_mon_to_print
ld hl, Text_59c24
jr .gbpals_print_text
.check_bike_voucher
CheckEvent EVENT_GOT_BIKE_VOUCHER
jr nz, .nothingleft
ld hl, .IntroText
call PrintText
call YesNoChoice
ld a, [wCurrentMenuItem]
and a
jr nz, .nothanks
; tell the story
ld hl, .StoryText
call PrintText
lb bc, BIKE_VOUCHER, 1
call GiveItem
jr nc, .bag_full
ld hl, .BikeVoucherText
call PrintText
SetEvent EVENT_GOT_BIKE_VOUCHER
jp TextScriptEnd
.bag_full
ld hl, .BagFullText
jr .gbpals_print_text
.nothanks
ld hl, .NoStoryText
jr .gbpals_print_text
.nothingleft
ld hl, .FinalText
.gbpals_print_text
push hl
call LoadGBPal
pop hl
call PrintText
jp TextScriptEnd
.select_mon_to_print
call GBPalWhiteOutWithDelay3
call LoadCurrentMapView
call SaveScreenTilesToBuffer2
ld a, $ff
ld [wUpdateSpritesEnabled], a
ld a, $00
ld [wTempTilesetNumTiles], a
call DisplayPartyMenu
jp nc, .print
call GBPalWhiteOutWithDelay3
call RestoreScreenTilesAndReloadTilePatterns
ld hl, Text_59c24
jr .gbpals_print_text
.print
xor a
ld [wUpdateSpritesEnabled], a
ld hl, wStatusFlags5
set BIT_NO_TEXT_DELAY, [hl]
callfar PrintFanClubPortrait
ld hl, wStatusFlags5
res BIT_NO_TEXT_DELAY, [hl]
call GBPalWhiteOutWithDelay3
call ReloadTilesetTilePatterns
call RestoreScreenTilesAndReloadTilePatterns
call LoadScreenTilesFromBuffer2
call Delay3
call GBPalNormal
ld hl, Text_59c2e
ldh a, [hOaksAideResult]
and a
jr nz, .gbpals_print_text
ld hl, Text_59c29
jr .gbpals_print_text
.IntroText:
text_far _PokemonFanClubChairmanIntroText
text_end
.StoryText:
text_far _PokemonFanClubChairmanStoryText
text_end
.BikeVoucherText:
text_far _PokemonFanClubReceivedBikeVoucherText
sound_get_key_item
text_far _PokemonFanClubExplainBikeVoucherText
text_end
.NoStoryText:
text_far _PokemonFanClubNoStoryText
text_end
.FinalText:
text_far _PokemonFanClubChairFinalText
text_end
.BagFullText:
text_far _PokemonFanClubBagFullText
text_end
Text_59c1f:
text_far FanClubChairPrintText1
text_end
Text_59c24:
text_far FanClubChairPrintText2
text_end
Text_59c29:
text_far FanClubChairPrintText3
text_end
Text_59c2e:
text_far FanClubChairPrintText4
text_end
PokemonFanClubReceptionistText:
text_far _PokemonFanClubReceptionistText
text_end
|