-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathtext5.asm
1024 lines (872 loc) · 25.3 KB
/
text5.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
ChrisFightingClubDeclinedDuelText:
text "You're just going to turn "
line "and run!?! You chicken!"
done
ChrisFightingClubDuelStartText:
text "A 1-match duel with 4 prizes!"
line "Let's do it!"
done
ChrisFightingClubPlayerWon1Text:
text "No! I lost again!"
line "I can't start training, yet!"
done
ChrisFightingClubPlayerWon2Text:
text "Shoot! I'm going to "
line "become a better player!"
done
ChrisFightingClubPlayerLostText:
text "Yeah! I won!"
line "I've gotten pretty good, haven't I?"
line "I think I'll start training again."
done
MichaelFightingClubWantsToDuelText:
text "I've been training since I lost"
line "to you at the Grass Club."
line "How about a rematch?"
done
MichaelFightingClubWouldYouLikeToDuelText:
text "Would you like to duel Michael?"
done
MichaelFightingClubDeclinedDuelText:
text "OK. But do duel me "
line "again sometime."
done
MichaelFightingClubDuelStartText:
text "OK, a 1-match duel with 4 prizes!"
line "Let's do it!"
done
MichaelFightingClubPlayerWon1Text:
text "I guess I need to train more..."
done
MichaelFightingClubPlayerWon2Text:
text "Duel me again another time."
line "See ya!"
done
MichaelFightingClubPlayerLostText:
text "I guess my training has paid off!"
line "Duel me again sometime. See ya!"
done
JessicaFightingClubWantsToDuelText:
text "Training is so boring..."
line "Why anyone would want to?"
line "Hey, it's you!"
line "Do you want to duel me again?"
done
JessicaFightingClubWouldYouLikeToDuelText:
text "Would you like to duel Jessica?"
done
JessicaFightingClubDeclinedDuelText:
text "Well, OK."
line "I'm busy anyway!"
done
JessicaFightingClubDuelStartText:
text "OK! A 1-match duel with 4 prizes!"
line "Let's go to it!"
done
JessicaFightingClubPlayerWon1Text:
text "Oops! I lost..."
line "Here! You can have this!"
done
JessicaFightingClubPlayerWon2Text:
text "Don't talk to me, I'm busy!"
done
JessicaFightingClubPlayerLostText:
text "Hey, I won!"
line "Could this also be due to my "
line "natural ability? "
line "Well, I hope I see you around!"
done
WhatIsADeckBookName:
text "What is a deck?"
done
WhatIsADeckBookText:
text "A deck is the set of Pokémon cards"
line "used in duels."
line "A deck consists of 60 cards."
line "Only 4 of the same card are"
line "allowed in a deck. Create your "
line "own deck to play the game."
line "These are the basic rules of the"
line "Pokémon Trading Card Game."
done
CardsVol1BookName:
text "Cards, Vol. 1: Pokémon Cards"
done
CardsVol1BookText:
text "There are 2 types of Pokémon cards "
line "in the Pokémon Trading Card Game:"
line "Basic Pokémon and Evolution "
line "Pokémon. Only Basic Pokémon may be "
line "placed directly on the Bench."
line "There are 2 types of Evolution"
line "Pokémon cards: Stage 1 and "
line "Stage 2. Play Stage 1 Pokémon on "
line "top of Basic Pokémon, and Stage 2"
line "Pokémon on top of Stage 1 Pokémon."
done
CardsVol2BookName:
text "Cards, Vol. 2: Energy Cards"
done
CardsVol2BookText:
text "Attach Energy cards to your Pokémon"
line "to give them the energy they need to"
line "attack. Choose an Energy card from "
line "your hand and attach it to a"
line "Pokémon. You may attach only "
line "one Energy card per turn."
done
CardsVol3BookName:
text "Cards, Vol. 3: Trainer Cards"
done
CardsVol3BookText:
text "Trainer cards are one-shot cards"
line "that can be used once and are "
line "then discarded. You can play as "
line "many Trainer cards as you like "
line "during your turn."
done
WinOrLossOfAMatchVol1BookName:
text "Win or Loss of a Match, Vol. 1"
done
WinOrLossOfAMatchVol1BookText:
text "When a Pokémon loses all of "
line "its HP, the Pokémon is knocked out. "
line "Place it and all attached Energy "
line "cards in the discard pile."
line "Each time you knock out 1 "
line "of your opponent's Pokémon, "
line "you draw 1 of your prize cards "
line "and place it in your hand. "
line "When you've taken all "
line "of your prizes, you win the game."
done
WinOrLossOfAMatchVol2BookName:
text "Win or Loss of a Match, Vol. 2"
done
WinOrLossOfAMatchVol2BookText:
text "You also win if your opponent's"
line "deck is out of cards at the start"
line "of your opponent's turn. Be "
line "careful not to run out of cards!"
done
WinOrLossOfAMatchVol3BookName:
text "Win or Loss of a Match, Vol. 3"
done
WinOrLossOfAMatchVol3BookText:
text "You also win if your opponent has"
line "no Pokémon left on the bench"
line "after you have knocked out his or"
line "her active Pokémon. Be sure to "
line "keep enough Pokémon on your bench."
done
CombosBookName:
text "Combos"
done
CombosBookText:
text "You can create powerful combos by"
line "combining the abilities of 2 cards."
line "Pokémon Powers and Trainer Cards "
line "are useful in creating combos! "
line "Find card combinations that will"
line "create your own powerful combos."
done
EnergyTransBookName:
text "Energy Trans"
done
EnergyTransBookText:
text "What if you place Exeggutor in the"
line "arena, but you don't have any Energy"
line "cards? In this case, use Venusaur's"
line "Energy Trans to transfer Grass"
line "Energy and use Big Eggsplosion! If"
line "you attach 8 Energy cards, you can"
line "give your opponent up to 160 damage."
done
ToxicGasBookName:
text "Toxic Gas"
done
ToxicGasBookText:
text "Muk's Toxic Gas is very powerful!"
line "It can block all Pokémon Powers!"
line "But be careful because it also"
line "blocks your own Pokémon's Powers!"
done
RainDanceBookName:
text "Rain Dance"
done
RainDanceBookText:
text "Blastoise's Pokémon Power, Rain "
line "Dance, is a great boon for your"
line "Water Pokémon! You can attach "
line "as many Water Energy cards as "
line "you have to your Water Pokémon."
line "Power up your Pokémon and attack!"
done
SelfdestructBookName:
text "Selfdestruct"
done
SelfdestructBookText:
text "It's a good idea to use Defender"
line "when attacking with Selfdestruct."
line "That way, you'll be able to give"
line "major damage to your opponent's "
line "Active and Benched Pokémon without "
line "your Pokémon getting knocked out."
done
DamageSwapBookName:
text "Damage Swap"
done
DamageSwapBookText:
text "You can use Alakazam's Damage Swap"
line "to move damage counters off of a"
line "Pokémon that is almost knocked out,"
line "or you can create a combo by"
line "combining it with Chansey and"
line "Scoop Up. Keep moving damage "
line "counters to Chansey and use Scoop "
line "Up to return Chansey to your hand."
line "Then put Chansey back in play. You"
line "will have lost all damage counters!"
done
HyperBeamBookName:
text "Hyper Beam"
done
HyperBeamBookText:
text "Hyper Beam is extremely powerful!"
line "You can remove the Energy cards "
line "attached to your opponent's"
line "Pokémon! Without Energy, they won't"
line "be able to Attack or Retreat!"
done
PrehistoricPowerBookName:
text "Prehistoric Power"
done
PrehistoricPowerBookText:
text "Use Aerodactyl's Prehistoric Power"
line "to block your opponent's Pokémon"
line "from evolving. Your own Pokémon "
line "can't evolve? In that case, use"
line "Devolution Spray on Aerodactyl "
line "and turn it back into a "
line "Mysterious Fossil. Then you'll "
line "be able to evolve your Pokémon!"
done
PhantomCardsBookName:
text "Phantom Cards"
done
PhantomCardsBookText:
text "It is rumored that there is a"
line "Phantom Card that can only be "
line "gotten by using Card Pop!"
line "It is believed there are 2 such"
line "cards, but no one knows what"
line "kind of cards they are."
line "I'm off to search for someone "
line "who will give me these cards!"
line " ISHIHARA"
done
WeaknessAndResistanceBookName:
text "Weakness and Resistance"
done
WeaknessAndResistanceBookText:
text "If a Pokémon has a Weakness,"
line "it takes double damage when attacked"
line "by Pokémon of a certain type!"
line "If a Water Pokémon attacks"
line "a Fire Pokémon, the Fire Pokémon"
line "will receive double damage!"
line "If a Pokémon has a Resistance,"
line "it takes 30 less damage when"
line "attacked by Pokémon of a certain"
line "type. If an Attack gives a damage "
line "of 30, the Pokémon will not receive "
line "damage! Beware of the Weaknesses"
line "and Resistances of your Pokémon!"
done
DrawingDesiredCardsBookName:
text "Drawing Desired Cards"
done
DrawingDesiredCardsBookText:
text "The Trainer card, Computer Search,"
line "is useful when you want to draw a"
line "certain card! Item Finder and"
line "Poké Ball will also help!"
done
RetreatingBookName:
text "Retreating"
done
RetreatingBookText:
text "Retreating your Active Pokémon to"
line "the Bench is a good strategy in"
line "certain situations! Retreating a "
line "Pokémon requires Energy cards."
line "Dodrio's Retreat Aid decreases the "
line "number of Energy cards required to"
line "retreat. If you retreat right away,"
line "your Pokémon won't get knocked out!"
done
FightingPokemonBookName:
text "Fighting Pokémon"
done
FightingPokemonBookText:
text "Fighting Pokémon Characteristics:"
line "Strong against Lightning Pokémon."
line "Weak against Psychic Pokémon."
line "Require Fighting Energy cards "
line "to Attack."
done
FightingPokemonAndCombosBookName:
text "Fighting Pokémon and Combos"
done
FightingPokemonAndCombosBookText:
text "It is difficult to create combos"
line "with a Fighting Pokémon, since"
line "not many Fighting Pokémon have "
line "Pokémon Power. However, their "
line "strong attacks make up for this."
done
DoubleColorlessEnergyBookName:
text "Double Colorless Energy"
done
DoubleColorlessEnergyBookText:
text "Double Colorless Energy is a"
line "very useful card. By using this "
line "single card, you are able to"
line "attach 2 Energies at once."
line "But be careful because the "
line "energy is colorless."
done
RockPokemonBookName:
text "Rock Pokémon"
done
RockPokemonBookText:
text "Rock Pokémon Characteristics:"
line "Strong against Lightning Pokémon."
line "Weak against Grass Pokémon."
line "Require Fighting Energy cards"
line "to Attack."
done
WinningWithFightingPokemonBookName:
text "Winning with Fighting Pokémon"
done
WinningWithFightingPokemonBookText:
text "Fighting Pokémon will have a hard"
line "time against Stage 2 Pokémon,"
line "as many Stage 2 Pokémon are"
line "resistant to Fighting Pokémon."
line "Try to knock out your opponent's"
line "Pokémon before they evolve."
done
BasicPokemonBookName:
text "Basic Pokémon"
done
BasicPokemonBookText:
text "Basic Pokémon are a must in the"
line "Pokémon Trading Card Game!"
line "Basic Pokémon are the only Pokémon"
line "you can put directly from your"
line "hand into the play area. Stage 1"
line "and Stage 2 Evolution cards can"
line "only be used on Basic Pokémon."
line "Make sure you have enough"
line "Basic Pokémon in your deck!"
done
WaterPokemonBookName:
text "Water Pokémon"
done
WaterPokemonBookText:
text "Water Pokémon Characteristics:"
line "Strong against Fire Pokémon."
line "Weak against Lightning Pokémon."
line "Some cards are weak against "
line "Grass Pokémon. Require Water "
line "Energy cards to attack."
done
WaterPokemonAttacksBookName:
text "Water Pokémon Attacks"
done
WaterPokemonAttacksBookText:
text "Water Gun and Hydro Pump are"
line "attacks which have variable damage."
line "The more Water Energy you attach,"
line "the more powerful the attack is!"
line "The attack can do up to 20 more "
line "damage in this way."
done
ParalyzeBookName:
text "Paralyze"
done
ParalyzeBookText:
text "When a Pokémon is paralyzed, it"
line "is unable to do anything."
line "It cannot retreat, attack or use"
line "Pokémon Power, but the player may"
line "use any cards in his or her hand."
line "Paralysis lasts until the end of "
line "the paralyzed player's turn. "
line "Paralysis can be healed with"
line "Full Heal and Evolution cards."
done
LightningPokemonBookName:
text "Lightning Pokémon"
done
LightningPokemonBookText:
text "Lightning Pokémon Characteristics:"
line "Strong against Water Pokémon."
line "Weak against Fighting Pokémon."
line "Require Lightning Energy cards"
line "to attack."
done
EnergyCardsBookName:
text "Energy Cards"
done
EnergyCardsBookText:
text "There are 6 Basic Energy cards:"
line "Grass, Fire, Water, Lightning,"
line "Fighting and Psychic!"
line "There is also the Double Colorless"
line "Energy card."
line "You may include as many Energy "
line "cards as you like in your deck,"
line "but you may only include 4"
line "Double Colorless Energy cards."
done
CardPopBookName:
text "Card Pop!"
done
CardPopBookText:
text "When you and a friend Card Pop!,"
line "you will each receive a new card."
line "After you Pop! with a friend, you "
line "won't be able to Pop! with the same"
line "friend for a while. You always get"
line "the same card when you Pop! with"
line "the same friend, so Pop! with many"
line "friends to get different cards!"
done
GrassPokemonBookName:
text "Grass Pokémon"
done
GrassPokemonBookText:
text "Grass Pokémon Characteristics:"
line "Strong against Rock Pokémon."
line "Weak against Fire Pokémon."
line "Some Water Pokémon are weak"
line "against Grass Pokémon. Require "
line "Grass Energy cards to attack."
done
PoisonBookName:
text "Poison"
done
PoisonBookText:
text "When your Pokémon is poisoned, it"
line "will continue to lose HP."
line "The poisoned Pokémon will lose"
line "10 HP at the end of each player's "
line "turn. To heal a Poisoned Pokémon,"
line "you may retreat it to the Bench"
line "or use the Trainer Card, Full Heal."
line "Evolving or Devolving the Pokémon "
line "are other ways of healing it."
done
GrassPokemonPokemonBreederBookName:
text "Grass Pokémon & Pokémon Breeder"
done
GrassPokemonPokemonBreederBookText:
text "Many Grass Pokémon are capable of"
line "evolving to Stage 2 Pokémon."
line "Use the Trainer Card, Pokémon"
line "Breeder, to evolve Pokémon quickly."
line "You'll be able to use powerful"
line "attacks early in the game."
done
PsychicPokemonBookName:
text "Psychic Pokémon"
done
PsychicPokemonBookText:
text "Psychic Pokémon Characteristics:"
line "Weak against Psychic Pokémon."
line "Some Colorless Pokémon are strong "
line "against Psychic Pokémon. Require"
line "Psychic Energy cards to attack."
done
SleepBookName:
text "Sleep"
done
SleepBookText:
text "When a Pokémon is asleep,"
line "it is unable to do anything."
line "It cannot attack, retreat or use"
line "Pokémon Power. A coin will be "
line "flipped at the end of each player's "
line "turn. If the coin comes up heads, "
line "the Pokémon will wake up. If it's"
line "tails, the Pokémon remains asleep."
line "Use Full Heal to wake it up!"
done
PokemonPowerBookName:
text "Pokémon Power"
done
PokemonPowerBookText:
text "Some Pokémon have special "
line "abilities called Pokémon Power."
line "They are very powerful abilities!"
line "They can be used before attacking, "
line "even if the Pokémon with the "
line "Pokémon Power is still on the Bench."
line "There are many different Pokémon "
line "Powers, so check your cards!"
done
ScienceClubPokemonBookName:
text "Science Club Pokémon"
done
ScienceClubPokemonBookText:
text "Characteristics of Pokémon used"
line "in the Science Club:"
line "Strong against Rock Pokémon."
line "Weak against Psychic Pokémon."
line "Many cards have attacks with "
line "poison and sleep effects."
line "Require Grass Energy cards"
line "to attack."
done
ConfusionBookName:
text "Confusion"
done
ConfusionBookText:
text "It's big trouble if your Pokémon"
line "gets Confused!"
line "When a Confused Pokémon tries to"
line "attack, you must flip a coin!"
line "If it's heads, the attack is "
line "successful, but if it's tails,"
line "the Pokémon will attack itself"
line "for 20 damage!"
done
UsefulButtonsBookName:
text "Useful Buttons"
done
UsefulButtonsBookText:
text "While pressing the B Button,"
line "use the + Control Pad to view"
line "your own or your opponent's "
line "Play Area or Discard Pile!"
line "B + Down = Your Play Area"
line "B + Left = Your Discard Pile"
line "B + Up = Opponent's Play Area"
line "B + Right = Opponent's Discard Pile"
line "Remember these handy functions!"
done
FirePokemonBookName:
text "Fire Pokémon"
done
FirePokemonBookText:
text "Fire Pokémon Characteristics:"
line "Strong against Grass Pokémon."
line "Weak against Water Pokémon."
line "Some Grass Pokémon are not weak"
line "against Fire Pokémon."
line "Require Fire Energy cards"
line "to attack."
done
FirePokemonAttacksBookName:
text "Fire Pokémon Attacks"
done
FirePokemonAttacksBookText:
text "Many Fire Pokémon attacks require"
line "that an Energy card be removed."
line "Be sure to include many Energy"
line "cards in decks with Fire Pokémon."
line "It might be wise to also include"
line "Energy Retrieval in your deck."
done
OriginalGameBoyCardsBookName:
text "Original Game Boy Cards"
done
OriginalGameBoyCardsBookText:
text "The Pokémon Trading Card Game"
line "for Game Boy includes many "
line "original cards, like the "
line ""
text "<Lv>14 Meowth with the Cat Punch "
line "attack. There are many new cards,"
line "so go search them out!"
done
ColorlessPokemonBookName:
text "Colorless Pokémon"
done
ColorlessPokemonBookText:
text "Colorless Pokémon are very easy"
line "to use. They can attack with "
line "any type of Energy card, so"
line "you can include them in any type"
line "of deck. There are many Colorless "
line "Pokémon, so check them all out!"
done
DragonPokemonBookName:
text "Dragon Pokémon"
done
DragonPokemonBookText:
text "Colorless Dragon Pokémon cards"
line "have resistance to Psychic"
line "Pokémon and have no weaknesses."
line "They can attack with any type"
line "of Energy card - they are truly"
line "worthy of the name ”dragon!”"
done
BirdPokemonBookName:
text "Bird Pokémon"
done
BirdPokemonBookText:
text "Colorless Bird Pokémon cards"
line "have resistance to Fighting"
line "Pokémon but are weak against"
line "Lightning Pokémon. They can attack"
line "with any type of Energy card."
line "They can retreat easily, since"
line "they are flying."
done
LegendaryPokemonCardsVol1BookName:
text "Legendary Pokémon Cards, Vol. 1"
done
LegendaryPokemonCardsVol1BookText:
text "The first of the Legendary Pokémon"
line "Cards is <Lv>37 Moltres. With"
line "Firegiver, you can place Fire"
line "Energy cards in your hand! Also,"
line "Dive Bomb is a powerful attack!"
line "Grand Master Courtney, the Fire"
line "Queen, owns this card!"
done
LegendaryPokemonCardsVol2BookName:
text "Legendary Pokémon Cards, Vol. 2"
done
LegendaryPokemonCardsVol2BookText:
text "The second Legendary Pokémon Card"
line "is <Lv>68 Zapdos. With Peal of"
line "Thunder, just putting this card on"
line "the bench causes damage!"
line "Also, Big Thunder is a powerful"
line "attack! The Thunder Grand Master,"
line "Steve, owns this card!"
done
LegendaryPokemonCardsVol3BookName:
text "Legendary Pokémon Cards, Vol. 3"
done
LegendaryPokemonCardsVol3BookText:
text "The third Legendary Pokémon Card"
line "is <Lv>37 Articuno. Its Quickfreeze"
line "will paralyze opponents' Pokémon"
line "when the card is put in play!"
line "Also, Ice Breath is a powerful"
line "Attack! Grand Master Jack,"
line "the Ice-man, owns this card!"
done
LegendaryPokemonCardsVol4BookName:
text "Legendary Pokémon Cards, Vol. 4"
done
LegendaryPokemonCardsVol4BookText:
text "The fourth Legendary Pokémon Card"
line "is <Lv>41 Dragonite. Its Healing"
line "Wind will heal damage done to "
line "Pokémon when this card is played!"
line "Also, Slam is a powerful attack!"
line "Rod, Leader of the Grand Masters,"
line "owns this card!"
done
TheGrandMastersBookName:
text "The Grand Masters"
done
TheGrandMastersBookText:
text "Courtney, Steve, Jack and Rod -"
line "the 4 Grand Masters who defend"
line "the Legendary Pokémon Cards - "
line "are all master players of the "
line "Pokémon Trading Card Game!"
done
MasterMedalsBookName:
text "Master Medals"
done
MasterMedalsBookText:
text "There are a total of 8 Master Medals"
line "owned by the Club Masters. It is "
line "said that the secret of their Club's"
line "deck is encrypted in the Master "
line "Medals. Some say the medals were "
line "a gift from the Grand Masters."
done
PlateOfLegendsName:
text "Plate of Legends"
done
PlateOfLegendsText:
text "”Those in search of the Legendary"
line " Pokémon Cards..."
line " Defeat the Masters of the 8 Clubs"
line " and attain the 8 Medals."
line " Once attained, defeat the Grand"
line " Master here at Pokémon Dome..."
line " Then you shall inherit"
line " the Legendary Pokémon Cards.”"
done
MysteriousVoiceDoorName:
text "Mysterious Voice"
done
Clerk9DefaultText:
text "Greetings! Welcome to the "
line "Challenge Hall! The Challenge Cup "
line "will begin soon. If you win the "
line "Challenge Cup, you will receive "
line "a Promotional Card! Please join "
line "us for this competition."
done
Clerk9ChallengeCupOverText:
text "Greetings! Welcome to the "
line "Challenge Hall! This is where the"
line "the Challenge Cup is held. The "
line "Challenge Cup may start at any"
line "time, so please visit the "
line "Challenge Hall often."
done
Clerk9ChallengeCupReadyText:
text "Greetings! Welcome to the "
line "Challenge Hall! Defeat 3 "
line "opponents here, and you shall be "
line "presented with a wonderful gift!"
line "Please join in the competition!"
done
Clerk9ChallengeCupLostText:
text "Most unfortunate, <RAMNAME>."
line "Once you enter, you won't be able"
line "to re-enter for some time. "
line "Please try again another day."
done
Clerk9ChallengeCupWonText:
text "Congratulations, <RAMNAME>!"
line "You received a card!"
line "Please join us for the next "
line "Challenge Cup, too."
done
Pappy3Text:
text "I won't lose to any"
line "whipper-snapper!"
line "I'm going to win this "
line "Challenge Cup!"
done
Gal4Text:
text "I work at the Challenge Cup"
line "as the HOST."
line "I can't wait to get up on stage!"
done
ChampText:
text "The time has come to see if all"
line "my training has paid off!"
line "I'm going to win the Challenge Cup"
line "and become a Grand Master!"
done
Hood2Text:
text "Hey now! It's the Challenge Cup!"
line "Hey now! Gonna give it a try!"
line "Hey now! Gonna beat 3 people!"
line "Hey now! Watch me win the prize!"
done
Lass5Text:
text "I'm good enough to compete in"
line "the Challenge Cup! Girls are just"
line "as good at the Pokémon Trading"
line "Card Game as boys!"
done
Chap5Text:
text "What's that? Oh! The Challenge "
line "Cup isn't being held right now."
line "Me? I'm waiting for the Challenge"
line "Cup to begin."
done
RonaldChallengeCup1NotStarted1Text:
text "Hi, <RAMNAME>."
line "Are you competing, too?"
done
RonaldChallengeCup1NotStarted2Text:
text "I'm the one who's going to"
line "defeat 3 opponents! The prize, "
line ""
text "<Lv>60 Mewtwo, belongs to me!"
line "You just sit tight and watch me win!"
line "See Ya! Ha ha ha ha ha ha!"
done
RonaldChallengeCup1LostActive1Text:
text "Hey, it's <RAMNAME> - the loser"
line "of the Challenge Cup!"
done
RonaldChallengeCup1LostActive2Text:
text "What? You're asking if I won?"
line "I lost to the third opponent!"
line "I just lost my concentration."
line "But I'll win the next Challenge "
line "Cup! Of course I'll puverize you!"
line "See ya! Ha ha ha ha ha ha!"
done
RonaldChallengeCup1LostInactive1Text:
text "Hey <RAMNAME>, too bad "
line "you're too late!"
done
RonaldChallengeCup1LostInactive2Text:
text "The Challenge Cup is over! I"
line "defeated 3 opponents and won"
line "the prize - <Lv>60 Mewtwo!"
line "See ya! Ha ha ha ha ha ha!"
done
RonaldChallengeCup1Missed1Text:
text "Hi, <RAMNAME>."
line "What are you doing here?"
done
RonaldChallengeCup1Missed2Text:
text "The Challenge Cup is over! I"
line "defeated 3 opponents and won"
line "the prize - <Lv>60 Mewtwo!"
line "I guess you could try entering"
line "the next Challenge Cup, but "
line "you won't have a chance since "
line "I'll win that one, too!"
line "See ya! Ha ha ha ha ha ha!"
done
RonaldChallengeCup2NotStarted1Text:
text "Hey, <RAMNAME>."
line "We meet again."
done
RonaldChallengeCup2NotStarted2Text:
text "No matter who enters the Challenge"
line "Cup, I'll be the winner! "
line ""
text "<Lv>8 Mew, this Cup's prize, will "
line "belong to me! Why don't you just"
line "give up and go home!"
line "See ya! Ha ha ha ha ha ha!"
done
RonaldChallengeCup2LostActive1Text:
text "Hey, it's <RAMNAME> - the"
line "loser of the Challenge Cup!"
done
RonaldChallengeCup2LostActive2Text:
text "That was a close one for me!"
line "I lost to the third opponent!"
line "But I'll win the next Challenge "