-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathtext2.asm
1880 lines (1504 loc) · 35 KB
/
text2.asm
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AcidCheckText:
text "Acid check! If Heads,"
line "unable to Retreat during next turn."
done
TransparencyCheckText:
text "Transparency check! If Heads,"
line "do not receive opponent's Attack!"
done
ConfusionCheckDamageText:
text "Confusion check,"
line "If Tails, damage to yourself!"
done
ConfusionCheckRetreatText:
text "Confusion check!"
line "If Tails, unable to Retreat."
done
PokemonsSleepCheckText:
text "<RAMTEXT>'s Sleep check."
done
PoisonedIfHeadsConfusedIfTailsText:
text "Opponent is Poisoned if Heads,"
line "and Confused if Tails."
done
IfHeadsDoNotReceiveDamageOrEffectText:
text "If Heads, do not receive damage"
line "or effect of opponent's next Attack!"
done
IfHeadsOpponentCannotAttackText:
text "If Heads, opponent cannot Attack"
line "next turn!"
done
AttackUnsuccessfulText:
text "Attack unsuccessful."
done
UnableToRetreatDueToAcidText:
text "Unable to Retreat due to"
line "the effects of Acid."
done
UnableToUseTrainerDueToHeadacheText:
text "Unable to use a Trainer card"
line "due to the effects of Headache."
done
UnableToAttackDueToTailWagText:
text "Unable to Attack due to"
line "the effects of Tail wag."
done
UnableToAttackDueToLeerText:
text "Unable to Attack due to"
line "the effects of Leer."
done
UnableToAttackDueToBoneAttackText:
text "Unable to Attack due to"
line "the effects of Bone attack."
done
UnableToUseAttackDueToAmnesiaText:
text "Unable to use this Attack"
line "due to the effects of Amnesia."
done
KnockedOutDueToDestinyBondText:
text "<RAMTEXT> was Knocked Out"
line "due to the effects of Destiny Bond."
done
ReceivesDamageDueToStrikesBackText:
text "<RAMTEXT> receives <RAMNUM> damage"
line "due to the effects of Strikes Back."
done
UnableToEvolveDueToPrehistoricPowerText:
text "Unable to evolve due to the"
line "effects of Prehistoric Power."
done
NoDamageOrEffectDueToFlyText:
text "No damage or effect on next Attack"
line "due to the effects of Fly."
done
NoDamageOrEffectDueToBarrierText:
text "No damage or effect on next Attack"
line "due to the effects of Barrier."
done
NoDamageOrEffectDueToAgilityText:
text "No damage or effect on next Attack"
line "due to the effects of Agility."
done
UnableToUseAttackDueToNShieldText:
text "Unable to use this Attack due to"
line "the effects of N Shield."
done
NoDamageOrEffectDueToNShieldText:
text "No damage or effect on next Attack"
line "due to the effects of N Shield."
done
NoDamageOrEffectDueToTransparencyText:
text "No damage or effect on next Attack"
line "due to the effects of Transparency"
done
MetamorphsToText:
text "<RAMTEXT>"
line "metamorphs to <RAMTEXT>."
done
SelectPkmnOnBenchToSwitchWithActiveText:
text "Select a Pokémon on the Bench"
line "to switch with the Active Pokémon."
done
SelectPokemonToPlaceInTheArenaText:
text "Select a Pokémon to place"
line "in the Arena."
done
DuelistIsSelectingPokemonToPlaceInArenaText:
text "<RAMNAME> is selecting a Pokémon"
line "to place in the Arena."
done
ChooseWeaknessYouWishToChangeText:
text "Choose the Weakness you wish"
line "to change with Conversion 1."
done
ChooseResistanceYouWishToChangeText:
text "Choose the Resistance you wish"
line "to change with Conversion 2."
done
ChoosePokemonWishToColorChangeText:
text "Choose the Pokémon whose color you"
line "wish to change with Color change."
done
ChangedTheWeaknessOfPokemonToColorText:
text "Changed the Weakness of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
ChangedTheResistanceOfPokemonToColorText:
text "Changed the Resistance of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
ChangedTheColorOfText:
text "Changed the color of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
Draw1CardFromTheDeckText:
text "Draw 1 card from the Deck."
done
DrawCardsFromTheDeckText:
text "Draw <RAMNUM> card(s) from the Deck."
done
CannotDrawCardBecauseNoCardsInDeckText:
text "Cannot draw a card because"
line "there are no cards in the Deck."
done
ChoosePkmnInTheBenchToGiveDamageText:
text "Choose a Pokémon on the Bench"
line "to give damage to."
done
ChooseUpTo3PkmnOnBenchToGiveDamageText:
text "Choose up to 3 Pokémon on the"
line "Bench to give damage to."
done
Choose1BasicEnergyCardFromDeckText:
text "Choose 1 Basic Energy card"
line "from the Deck."
done
ChoosePokemonToAttachEnergyCardText:
text "Choose a Pokémon to attach"
line "the Energy card to."
done
UnusedText011e: ; Unused
text "Choose and Discard"
line "1 Fire Energy card."
done
ChooseAndDiscard2FireEnergyCardsText:
text "Choose and Discard"
line "2 Fire Energy cards."
done
DiscardOppDeckAsManyFireEnergyCardsText:
text "Discard from opponent's Deck as many"
line "Fire Energy cards as were discarded."
done
ChooseAndDiscard2EnergyCardsText:
text "Choose and Discard"
line "2 Energy cards."
done
ChooseAKrabbyFromDeckText:
text "Choose a Krabby"
line "from the Deck."
done
ChooseDiscardEnergyCardFromOpponentText:
text "Choose and Discard an Energy card"
line "from the opponent's Active Pokémon."
done
ChooseAttackOpponentWillNotBeAbleToUseText:
text "Choose the Attack the opponent will"
line "not be able to use on the next turn."
done
ChooseBasicFightingPokemonFromDeckText:
text "Choose a Basic Fighting Pokémon"
line "from the Deck."
done
ChooseAnOddishFromDeckText:
text "Choose an Oddish"
line "from the Deck."
done
ChooseAnOddishText:
text "Choose an Oddish"
done
ChooseAKrabbyText:
text "Choose a Krabby."
done
ChooseBasicEnergyCardText:
text "Choose a Basic"
line "Energy card."
done
ChooseNidoranFromDeckText:
text "Choose a Nidoran♀ or a"
line "Nidoran♂ from the Deck."
done
ChooseNidoranText:
text "Choose a Nidoran♀"
line "or a Nidoran♂."
done
ChooseBasicFightingPokemonText:
text "Choose a Basic"
line "Fighting Pokémon"
done
ProcedureForEnergyTransferText:
text "Procedure for Energy Transfer:"
line ""
line "1. Choose the Pokémon to move Grass"
line " Energy from. Press the A Button."
line ""
line "2. Choose the Pokémon to move the"
line " energy to and press the A Button."
line ""
line "3. Repeat steps 1 and 2."
line ""
line "4. Press the B Button to end."
done
ChooseABellsproutFromDeckText:
text "Choose a Bellsprout"
line "from the Deck."
done
ChooseABellsproutText:
text "Choose a Bellsprout."
done
ChoosePkmnToRemoveDamageCounterText:
text "Choose a Pokémon to remove"
line "the Damage counter from."
done
ProcedureForCurseText:
text "Procedure for Curse:"
line ""
line "1. Choose a Pokémon to move the"
line " Damage counter from and press"
line " the A Button."
line ""
line "2. Choose a Pokémon to move the"
line " Damage counter to and press"
line " the A Button."
line ""
line "3. Press the B Button to cancel."
done
Choose2EnergyCardsFromDiscardPileToAttachText:
text "Choose 2 Energy cards from the"
line "Discard Pileto attach to a Pokémon."
done
Choose2EnergyCardsFromDiscardPileForHandText:
text "Choose 2 Energy cards from the"
line "Discard Pile for your Hand."
done
ChooseAnEnergyCardText:
text "Choose an Energy"
line "card."
done
ProcedureForProphecyText:
text "Procedure for Prophecy:"
line ""
line "1. Choose either your Deck"
line " or your opponent's Deck"
line ""
line "2. Choose the cards you wish to"
line " place on top and press the"
line " A Button."
line ""
line "3. Select Yes after you choose"
line " the 3 cards and their order."
line ""
line "4. Press the B Button to cancel."
done
ChooseTheOrderOfTheCardsText:
text "Choose the order"
line "of the cards."
done
ProcedureForDamageSwapText:
text "Procedure for Damage Swap:"
line ""
line "1. Choose a Pokémon to move a"
line " Damage counter from and press"
line " the A Button."
line ""
line "2. Choose a Pokémon to move the"
line " Damage counter to and press"
line " the A Button."
line ""
line "3. Repeat steps 1 and 2."
line ""
line "4. Press the B Button to end."
line ""
line "5. You cannot move the counter if"
line " it will Knock Out the Pokémon."
done
ProcedureForDevolutionBeamText:
text "Procedure for Devolution Beam."
line ""
line "1. Choose either a Pokémon in your"
line " Play Area or your opponent's"
line " Play Area and press the A Button."
line ""
line "2. Choose the Pokémon to Devolve"
line " and press the A Button."
line ""
line "3. Press the B Button to cancel."
done
ProcedureForStrangeBehaviorText:
text "Procedure for Strange Behavior:"
line ""
line "1. Choose the Pokémon with the"
line " Damage counters to move to"
line " Slowbro and press the A Button."
line ""
line "2. Repeat step 1 as many times as"
line " you wish to move the counters."
line ""
line "3. Press the B Button to end."
line ""
line "4. You cannot move the damage if"
line " Slowbro will be Knocked Out."
done
ChooseOppAttackToBeUsedWithMetronomeText:
text "Choose the opponent's Attack"
line "to be used with Metronome."
done
ThereIsNoInTheDeckText:
text "There is no <RAMTEXT>"
line "in the Deck."
done
WouldYouLikeToCheckTheDeckText:
text "Would you like to check the Deck?"
done
PleaseSelectTheDeckText:
text "Please select the Deck:"
line " Yours Opponent's"
done
PleaseSelectThePlayAreaText:
text "Please select the Play Area:"
line " Yours Opponent's"
done
NidoranMNidoranFText:
text "Nidoran♂ Nidoran♀"
done
OddishText:
text "Oddish"
done
BellsproutText:
text "Bellsprout"
done
KrabbyText:
text "Krabby"
done
FightingPokemonDeckText:
text "Fighting Pokémon"
done
BasicEnergyText:
text "Basic Energy"
done
PeekWasUsedToLookInYourHandText:
text "Peek was used to look at the"
line "<RAMTEXT> in your Hand."
done
CardPeekWasUsedOnText:
text "Card Peek was used on"
done
PokemonAndAllAttachedCardsReturnedToHandText:
text "<RAMTEXT> and all attached"
line "cards were returned to the Hand."
done
WasChosenForTheEffectOfAmnesiaText:
text "<RAMTEXT> was chosen"
line "for the effect of Amnesia."
done
BasicPokemonWasPlacedOnEachBenchText:
text "A Basic Pokémon was placed"
line "on each Bench."
done
WasUnsuccessfulText:
text "<RAMTEXT>'s"
line "<RAMTEXT> was unsuccessful."
done
ThereWasNoEffectFromTxRam2Text:
text "There was no effect"
line "from <RAMTEXT>."
done
TheEnergyCardFromPlayAreaWasMovedText:
text "The Energy card from <RAMNAME>'s"
line "Play Area was moved."
done
DrewFireEnergyFromTheHandText:
text "<RAMNAME> drew"
line "<RAMNUM> Fire Energy from the Hand."
done
ThePkmnCardsInHandAndDeckWereShuffledText:
text "The Pokémon cards in <RAMNAME>'s"
line "Hand and Deck were shuffled"
done
UnusedText014f: ; Unused
text "Remove Damage counter each time the"
line "A Button is pressed. B Button quits."
done
ChoosePokemonToRemoveDamageCounterFromText:
text "Choose a Pokémon to remove"
line "the Damage counter from."
done
ChooseCardToDiscardFromHandText:
text "Choose the card to Discard"
line "from the Hand."
done
ChoosePokemonToRemoveEnergyFromText:
text "Choose a Pokémon to remove"
line "Energy from and choose the Energy."
done
Choose2BasicEnergyCardsFromDiscardPileText:
text "Choose 2 Basic Energy cards"
line "from the Discard Pile."
done
UnusedText0154: ; Unused
text "Choose a Pokémon and press the A"
line "Button to remove Damage counters."
done
Choose2CardsFromHandToDiscardText:
text "Choose 2 cards from the Hand"
line "to Discard."
done
Choose2HandCardsFromHandToReturnToDeckText:
text "Choose 2 cards from the Hand"
line "to return to the Deck."
done
ChooseCardToPlaceInHandText:
text "Choose a card to"
line "place in the Hand."
done
ChoosePokemonToAttachDefenderToText:
text "Choose a Pokémon to"
line "attach Defender to."
done
UnusedText0159: ; Unused
text "You can draw up to <RAMNUM> cards."
line "A to Draw, B to End."
done
ChoosePokemonToReturnToTheDeckText:
text "Choose a Pokémon to"
line "return to the Deck."
done
ChoosePokemonToPlaceInPlayText:
text "Choose a Pokémon to"
line "place in play."
done
ChooseBasicPokemonToEvolveText:
text "Choose a Basic Pokémon"
line "to Evolve."
done
ChoosePokemonToScoopUpText:
text "Choose a Pokémon to"
line "Scoop Up."
done
ChooseCardFromYourHandToSwitchText:
text "Choose a card from your"
line "Hand to Switch."
done
ChooseCardToSwitchText:
text "Choose a card to"
line "Switch."
done
ChooseBasicOrEvolutionPokemonCardFromDeckText:
text "Choose a Basic or Evolution"
line "Pokémon card from the Deck."
done
ChoosePokemonCardText:
text "Choose"
line "a Pokémon card."
done
RearrangeThe5CardsAtTopOfDeckText:
text "Rearrange the 5 cards at"
line "the top of the Deck."
done
PleaseCheckTheOpponentsHandText:
text "Please check the opponent's"
line "Hand."
done
EvolutionCardText:
text "Evolution card"
done
CardWasChosenText:
text "<RAMTEXT> was chosen."
done
ChooseBasicPokemonToPlaceOnBenchText:
text "Choose a Basic Pokémon"
line "to place on the Bench."
done
ChooseEvolutionCardAndPressAButtonToDevolveText:
text "Choose an Evolution card and"
line "press the A Button to Devolve 1."
done
ChoosePokemonInYourAreaThenPokemonInYourOppText:
text "Choose a Pokémon in your Area, then"
line "a Pokémon in your opponent's."
done
ChooseUpTo4FromDiscardPileText:
text "Choose up to 4"
line "from the Discard Pile."
done
ChooseAPokemonToSwitchWithActivePokemonText:
text "Choose a Pokémon to switch"
line "with the Active Pokémon."
done
PokemonAndAllAttachedCardsWereReturnedToDeckText:
text "<RAMTEXT> and all attached"
line "cards were returned to the Deck."
done
PokemonWasReturnedFromArenaToHandText:
text "<RAMTEXT> was returned"
line "from the Arena to the Hand."
done
PokemonWasReturnedFromBenchToHandText:
text "<RAMTEXT> was returned"
line "from the Bench to the Hand."
done
PokemonWasReturnedToDeckText:
text "<RAMTEXT> was returned"
line "to the Deck."
done
WasPlacedInTheHandText:
text "<RAMTEXT> was placed"
line "in the Hand."
done
TheCardYouReceivedText:
text "The card you received"
done
YouReceivedTheseCardsText:
text "You received these cards:"
done
ChooseTheCardToPutBackText:
text "Choose the card"
line "to put back."
done
ChooseTheCardToDiscardText:
text "Choose the card"
line "to Discard."
done
DiscardedCardsFromDeckText:
text "Discarded <RAMNUM> cards"
line "from <RAMNAME>'s Deck."
done
UnusedText0175: ; Unused
text "Discarded <RAMTEXT>"
line "from the Hand."
done
NoneCameText:
text "None came!"
done
CameToTheBenchText:
text "<RAMTEXT>"
line "came to the Bench!"
done
DuelistHasNoCardsInHandText:
text "<RAMNAME> has"
line "no cards in Hand!"
done
PokemonHealedDamageText:
text "<RAMTEXT> healed"
line "<RAMNUM> damage!"
done
PokemonDevolvedToText:
text "<RAMTEXT> devolved"
line "to <RAMTEXT>!"
done
ThereWasNoFireEnergyText:
text "There was no Fire Energy."
done
YouCanSelectMoreCardsQuitText:
text "You can select <RAMNUM> more cards. Quit?"
done
ThereWasNoEffectText:
text "There was no effect!"
done
ThereWasNoEffectFromToxicText:
text "There was no effect"
line "from Toxic"
done
ThereWasNoEffectFromPoisonText:
text "There was no effect"
line "from Poison."
done
ThereWasNoEffectFromSleepText:
text "There was no effect"
line "from Sleep."
done
ThereWasNoEffectFromParalysisText:
text "There was no effect"
line "from Paralysis."
done
ThereWasNoEffectFromConfusionText:
text "There was no effect"
line "from Confusion."
done
ThereWasNoEffectFromPoisonConfusionText:
text "There was no effet"
line "from Poison, Confusion."
done
ExchangedCardsInDuelistsHandText:
text "Exchanged the cards"
line "in <RAMNAME>'s Hand."
done
UnusedText0185: ; Unused
text "Battle Center"
done
PrizesCardsText:
text "Prizes"
line " cards"
done
ChooseTheNumberOfPrizesText:
text "Choose the number"
line "of Prizes."
done
PleaseWaitDecidingNumberOfPrizesText:
text "Please wait..."
line "Deciding the number of Prizes..."
done
BeginAPrizeDuelWithText:
text "Begin a <RAMNUM>-Prize Duel"
line "with <RAMNAME>."
done
AreYouBothReadyToCardPopText:
text "Are you both ready"
line "to Card Pop! ?"
done
ThePopWasntSuccessfulText:
text "The Pop! wasn't successful."
line "Please try again."
done
CannotCardPopWithFriendPreviouslyPoppedWithText:
text "You cannot Card Pop! with a"
line "friend you previously Popped! with."
done
PositionGameBoyColorsAndPressAButtonText:
text "Position the Game Boy Colors"
line "and press the A Button."
done
ReceivedThroughCardPopText:
text "Received <RAMTEXT>"
line "through Card Pop!"
done
ReceivedCardText:
text "<RAMNAME> received"
line "a <RAMTEXT>!"
done
ReceivedPromotionalCardText:
text "<RAMNAME> received a Promotional"
line "card <RAMTEXT>!"
done
ReceivedLegendaryCardText:
text "<RAMNAME> received the Legendary"
line "card <RAMTEXT>!"
done
ReceivedPromotionalFlyingPikachuText:
text "<RAMNAME> received a Promotinal"
line "card Flyin' Pikachu!"
done
ReceivedPromotionalSurfingPikachuText:
text "<RAMNAME> received a Promotional"
line "card Surfin' Pikachu!"
done
UnusedText0194: ; Unused
text "Received a Flareon!!!"
line "Looked at the card list!"
done
NowPrintingPleaseWaitText:
text "Now printing."
line "Please wait..."
done
BoosterPackText:
text "Booster Pack"
done
WouldYouLikeToTryAgainText:
text "Would you like to try again?"
done
UnusedText0198: ; Unused
text "Sent to <RAMNAME>."
done
UnusedText0199: ; Unused
text "Received from <RAMNAME>."
done
SendingACardText:
text "Sending a card...Move the Game"
line "Boys close and press the A Button."
done
ReceivingACardText:
text "Receiving a card...Move"
line "the Game Boys close together."
done
SendingADeckConfigurationText:
text "Sending a Deck Configuration..."
line "Position the Game Boys and press A."
done
ReceivingDeckConfigurationText:
text "Receiving Deck configuration..."
line "Position the Game Boys and press A."
done
CardTransferWasntSuccessful1Text:
text "Card transfer wasn't successful."
done
CardTransferWasntSuccessful2Text:
text "Card transfer wasn't successful"
done
DeckConfigurationTransferWasntSuccessful1Text:
text "Deck configuration transfer"
line "wasn't successful"
done
DeckConfigurationTransferWasntSuccessful2Text:
text "Deck configuration transfer"
line "wasn't successful."
done
NowPrintingText:
text "Now printing..."
done
DrMasonText:
text "Dr. Mason"
done
DrawSevenCardsPracticeDuelText:
text "Draw 7 cards,"
line ""
line "and get ready for the battle!"
line "Choose your Active Pokémon."
line "You can only choose Basic Pokémon"
line "as your Active Pokémon,"
line "so you can choose either Goldeen"
line "or Staryu."
line "For our practice duel,"
line "choose Goldeen."
done
ChooseGoldeenPracticeDuelText:
text "Choose Goldeen for this"
line "practice duel, OK?"
done
PutPokemonOnBenchPracticeDuelText:
text "Next, put your Pokémon on your"
line "Bench."
line "You can switch Benched Pokémon"
line "with your Active Pokémon."
line "Again, only Basic Pokémon can be"
line "placed on your Bench."
line "Choose Staryu from your hand and"
line "put it there."
done
ChooseStaryuPracticeDuelText:
text "Choose Staryu for this"
line "practice duel, OK?"
done
PressBToFinishPracticeDuelText:
text "When you have no Pokémon to put on"
line "your Bench, press the B Button to"
line "finish."
done
Turn1Instr1PracticeDuelText:
text "1. Choose Hand from the Menu."
line " Select a Water Energy card."
done
Turn1Instr2PracticeDuelText:
text "2. Attach a Water Energy card to"
line " your Active Pokémon, Goldeen."
done
Turn1Instr3PracticeDuelText:
text "3. Choose Attack from the Menu"
line " and select Horn Attack."
done
Turn2Instr1PracticeDuelText:
text "1. Evolve Goldeen by"
line " attaching Seaking to it."
done
Turn2Instr2PracticeDuelText:
text "2. Attach a Psychic Energy card"
line " to the evolved Seaking."
done
Turn2Instr3PracticeDuelText:
text "3. Choose Attack and select"
line " Waterfall to attack your"
line " opponent."
done
Turn3Instr1PracticeDuelText:
text "1. Attach a Water Energy card to"
line " your Benched Staryu."
done
Turn3Instr2PracticeDuelText:
text "2. Choose Attack and attack your"
line " opponent with Horn Attack."
done
Turn3Instr3PracticeDuelText:
done
Turn4Instr1PracticeDuelText:
text "1. Take Drowzee from your hand"
line " and put it on your Bench."
done
Turn4Instr2PracticeDuelText:
text "2. Attach a Water Energy card to"
line " your Benched Drowzee."