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
|
Duel_Init:
ld a, [wd291]
push af
call DisableLCD
call InitMenuScreen
ld a, $4
ld [wTextBoxFrameType], a
lb de, 0, 12
lb bc, 20, 6
call DrawRegularTextBox
ld a, [wNPCDuelDeckID]
add a
add a
ld c, a
ld b, $0
ld hl, OpponentTitlesAndDeckNames
add hl, bc
ld a, [hli]
ld [wTxRam2], a
ld a, [hli]
ld [wTxRam2 + 1], a
push hl
ld a, [wOpponentName]
ld [wTxRam2_b], a
ld a, [wOpponentName + 1]
ld [wTxRam2_b + 1], a
ld hl, OpponentTitleAndNameLabel
call PrintLabels ; LoadDuelistName
pop hl
ld a, [hli]
ld [wTxRam2], a
ld c, a
ld a, [hli]
ld [wTxRam2 + 1], a
or c
jr z, .skip_deck_name
ld hl, OpponentDeckNameLabel
call PrintLabels ; LoadDeckName
.skip_deck_name
lb bc, 7, 3
ld a, [wOpponentPortrait]
call DrawOpponentPortrait
ld a, [wMatchStartTheme]
call PlaySong
call FlashWhiteScreen
call DoFrameIfLCDEnabled
lb bc, $2f, $1d ; cursor tile, tile behind cursor
lb de, 18, 17 ; x, y
call SetCursorParametersForTextBox
call WaitForButtonAorB
call WaitForSongToFinish
call FadeScreenToWhite ; fade out
pop af
ld [wd291], a
ret
OpponentTitleAndNameLabel:
db 1, 14
tx OpponentTitleAndNameText
db $ff
OpponentDeckNameLabel:
db 1, 16
tx OpponentDeckNameText
db $ff
OpponentTitlesAndDeckNames:
tx TechText
tx SamsPracticeDeckName
tx EmptyText
dw NULL
tx TechText
tx SamsPracticeDeckName
tx EmptyText
dw NULL
tx EmptyText
dw NULL
tx EmptyText
dw NULL
tx EmptyText
dw NULL
tx EmptyText
dw NULL
tx EmptyText
dw NULL
tx TechText
tx LightningAndFireDeckName
tx TechText
tx WaterAndFightingDeckName
tx TechText
tx GrassAndPsychicDeckName
tx GrandMasterText
tx LegendaryMoltresDeckName
tx GrandMasterText
tx LegendaryZapdosDeckName
tx GrandMasterText
tx LegendaryArticunoDeckName
tx GrandMasterText
tx LegendaryDragoniteDeckName
tx FightingClubMasterText
tx FirstStrikeDeckName
tx RockClubMasterText
tx RockCrusherDeckName
tx WaterClubMasterText
tx GoGoRainDanceDeckName
tx LightningClubMasterText
tx ZappingSelfdestructDeckName
tx GrassClubMasterText
tx FlowerPowerDeckName
tx PsychicClubMasterText
tx StrangePsyshockDeckName
tx ScienceClubMasterText
tx WondersofScienceDeckName
tx FireClubMasterText
tx FireChargeDeckName
tx EmptyText
tx ImRonaldDeckName
tx EmptyText
tx PowerfulRonaldDeckName
tx EmptyText
tx InvincibleRonaldDeckName
tx EmptyText
tx LegendaryRonaldDeckName
tx FightingClubMemberText
tx MusclesforBrainsDeckName
tx FightingClubMemberText
tx HeatedBattleDeckName
tx FightingClubMemberText
tx LovetoBattleDeckName
tx RockClubMemberText
tx ExcavationDeckName
tx RockClubMemberText
tx BlisteringPokemonDeckName
tx RockClubMemberText
tx HardPokemonDeckName
tx WaterClubMemberText
tx WaterfrontPokemonDeckName
tx WaterClubMemberText
tx LonelyFriendsDeckName
tx WaterClubMemberText
tx SoundoftheWavesDeckName
tx LightningClubMemberText
tx PikachuDeckName
tx LightningClubMemberText
tx BoomBoomSelfdestructDeckName
tx LightningClubMemberText
tx PowerGeneratorDeckName
tx GrassClubMemberText
tx EtceteraDeckName
tx GrassClubMemberText
tx FlowerGardenDeckName
tx GrassClubMemberText
tx KaleidoscopeDeckName
tx PsychicClubMemberText
tx GhostDeckName
tx PsychicClubMemberText
tx NapTimeDeckName
tx PsychicClubMemberText
tx StrangePowerDeckName
tx ScienceClubMemberText
tx FlyinPokemonDeckName
tx ScienceClubMemberText
tx LovelyNidoranDeckName
tx ScienceClubMemberText
tx PoisonDeckName
tx FireClubMemberText
tx AngerDeckName
tx FireClubMemberText
tx FlamethrowerDeckName
tx FireClubMemberText
tx ReshuffleDeckName
tx StrangeLifeformText
tx ImakuniDeckName
|