summaryrefslogtreecommitdiff
path: root/src/text/text5.asm
blob: 6fbceaa5d1f0e1e519f16d8e8b3030f11bc980a2 (plain)
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
Text048c: ; 44000 (11:4000)
	db TX_START,"You're just going to turn \n"
	db "and run!?! You chicken!",TX_END

Text048d: ; 44034 (11:4034)
	db TX_START,"A 1-match duel with 4 prizes!\n"
	db "Let's do it!",TX_END

Text048e: ; 44060 (11:4060)
	db TX_START,"No! I lost again!\n"
	db "I can't start training, yet!",TX_END

Text048f: ; 44090 (11:4090)
	db TX_START,"Shoot! I'm going to \n"
	db "become a better player!",TX_END

Text0490: ; 440be (11:40be)
	db TX_START,"Yeah! I won!\n"
	db "I've gotten pretty good, haven't I?\n"
	db "I think I'll start training again.",TX_END

Text0491: ; 44113 (11:4113)
	db TX_START,"I've been training since I lost\n"
	db "to you at the Grass Club.\n"
	db "How about a rematch?",TX_END

Text0492: ; 44163 (11:4163)
	db TX_START,"Would you like to duel Michael?",TX_END

Text0493: ; 44184 (11:4184)
	db TX_START,"OK. But do duel me \n"
	db "again sometime.",TX_END

Text0494: ; 441a9 (11:41a9)
	db TX_START,"OK, a 1-match duel with 4 prizes!\n"
	db "Let's do it!",TX_END

Text0495: ; 441d9 (11:41d9)
	db TX_START,"I guess I need to train more...",TX_END

Text0496: ; 441fa (11:41fa)
	db TX_START,"Duel me again another time.\n"
	db "See ya!",TX_END

Text0497: ; 4421f (11:421f)
	db TX_START,"I guess my training has paid off!\n"
	db "Duel me again sometime. See ya!",TX_END

Text0498: ; 44262 (11:4262)
	db TX_START,"Training is so boring...\n"
	db "Why anyone would want to?\n"
	db "Hey, it's you!\n"
	db "Do you want to duel me again?",TX_END

Text0499: ; 442c3 (11:42c3)
	db TX_START,"Would you like to duel Jessica?",TX_END

Text049a: ; 442e4 (11:42e4)
	db TX_START,"Well, OK.\n"
	db "I'm busy anyway!",TX_END

Text049b: ; 44300 (11:4300)
	db TX_START,"OK! A 1-match duel with 4 prizes!\n"
	db "Let's go to it!",TX_END

Text049c: ; 44333 (11:4333)
	db TX_START,"Oops! I lost...\n"
	db "Here! You can have this!",TX_END

Text049d: ; 4435d (11:435d)
	db TX_START,"Don't talk to me, I'm busy!",TX_END

Text049e: ; 4437a (11:437a)
	db TX_START,"Hey, I won!\n"
	db "Could this also be due to my \n"
	db "natural ability? \n"
	db "Well, I hope I see you around!",TX_END

Text049f: ; 443d6 (11:43d6)
	db TX_START,"What is a deck?",TX_END

Text04a0: ; 443e7 (11:43e7)
	db TX_START,"A deck is the set of Pok`mon cards\n"
	db "used in duels.\n"
	db "A deck consists of 60 cards.\n"
	db "Only 4 of the same card are\n"
	db "allowed in a deck. Create your \n"
	db "own deck to play the game.\n"
	db "These are the basic rules of the\n"
	db "Pok`mon Trading Card Game.",TX_END

Text04a1: ; 444ca (11:44ca)
	db TX_START,"Cards, Vol. 1: Pok`mon Cards",TX_END

Text04a2: ; 444e8 (11:44e8)
	db TX_START,"There are 2 types of Pok`mon cards \n"
	db "in the Pok`mon Trading Card Game:\n"
	db "Basic Pok`mon and Evolution \n"
	db "Pok`mon. Only Basic Pok`mon may be \n"
	db "placed directly on the Bench.\n"
	db "There are 2 types of Evolution\n"
	db "Pok`mon cards: Stage 1 and \n"
	db "Stage 2. Play Stage 1 Pok`mon on \n"
	db "top of Basic Pok`mon, and Stage 2\n"
	db "Pok`mon on top of Stage 1 Pok`mon.",TX_END

Text04a3: ; 44630 (11:4630)
	db TX_START,"Cards, Vol. 2: Energy Cards",TX_END

Text04a4: ; 4464d (11:464d)
	db TX_START,"Attach Energy cards to your Pok`mon\n"
	db "to give them the energy they need to\n"
	db "attack. Choose an Energy card from \n"
	db "your hand and attach it to a\n"
	db "Pok`mon. You may attach only \n"
	db "one Energy card per turn.",TX_END

Text04a5: ; 44710 (11:4710)
	db TX_START,"Cards, Vol. 3: Trainer Cards",TX_END

Text04a6: ; 4472e (11:472e)
	db TX_START,"Trainer cards are one-shot cards\n"
	db "that can be used once and are \n"
	db "then discarded. You can play as \n"
	db "many Trainer cards as you like \n"
	db "during your turn.",TX_END

Text04a7: ; 447c2 (11:47c2)
	db TX_START,"Win or Loss of a Match, Vol. 1",TX_END

Text04a8: ; 447e2 (11:47e2)
	db TX_START,"When a Pok`mon loses all of \n"
	db "its HP, the Pok`mon is knocked out. \n"
	db "Place it and all attached Energy \n"
	db "cards in the discard pile.\n"
	db "Each time you knock out 1 \n"
	db "of your opponent's Pok`mon, \n"
	db "you draw 1 of your prize cards \n"
	db "and place it in your hand. \n"
	db "When you've taken all \n"
	db "of your prizes, you win the game.",TX_END

Text04a9: ; 4490f (11:490f)
	db TX_START,"Win or Loss of a Match, Vol. 2",TX_END

Text04aa: ; 4492f (11:492f)
	db TX_START,"You also win if your opponent's\n"
	db "deck is out of cards at the start\n"
	db "of your opponent's turn. Be \n"
	db "careful not to run out of cards!",TX_END

Text04ab: ; 449b0 (11:49b0)
	db TX_START,"Win or Loss of a Match, Vol. 3",TX_END

Text04ac: ; 449d0 (11:49d0)
	db TX_START,"You also win if your opponent has\n"
	db "no Pok`mon left on the bench\n"
	db "after you have knocked out his or\n"
	db "her active Pok`mon. Be sure to \n"
	db "keep enough Pok`mon on your bench.",TX_END

Text04ad: ; 44a75 (11:4a75)
	db TX_START,"Combos",TX_END

Text04ae: ; 44a7d (11:4a7d)
	db TX_START,"You can create powerful combos by\n"
	db "combining the abilities of 2 cards.\n"
	db "Pok`mon Powers and Trainer Cards \n"
	db "are useful in creating combos! \n"
	db "Find card combinations that will\n"
	db "create your own powerful combos.",TX_END

Text04af: ; 44b48 (11:4b48)
	db TX_START,"Energy Trans",TX_END

Text04b0: ; 44b56 (11:4b56)
	db TX_START,"What if you place Exeggutor in the\n"
	db "arena, but you don't have any Energy\n"
	db "cards? In this case, use Venusaur's\n"
	db "Energy Trans to transfer Grass\n"
	db "Energy and use Big Eggsplosion! If\n"
	db "you attach 8 Energy cards, you can\n"
	db "give your opponent up to 160 damage.",TX_END

Text04b1: ; 44c4d (11:4c4d)
	db TX_START,"Toxic Gas",TX_END

Text04b2: ; 44c58 (11:4c58)
	db TX_START,"Muk's Toxic Gas is very powerful!\n"
	db "It can block all Pok`mon Powers!\n"
	db "But be careful because it also\n"
	db "blocks your own Pok`mon's Powers!",TX_END

Text04b3: ; 44cdd (11:4cdd)
	db TX_START,"Rain Dance",TX_END

Text04b4: ; 44ce9 (11:4ce9)
	db TX_START,"Blastoise's Pok`mon Power, Rain \n"
	db "Dance, is a great boon for your\n"
	db "Water Pok`mon! You can attach \n"
	db "as many Water Energy cards as \n"
	db "you have to your Water Pok`mon.\n"
	db "Power up your Pok`mon and attack!",TX_END

Text04b5: ; 44dab (11:4dab)
	db TX_START,"Selfdestruct",TX_END

Text04b6: ; 44db9 (11:4db9)
	db TX_START,"It's a good idea to use Defender\n"
	db "when attacking with Selfdestruct.\n"
	db "That way, you'll be able to give\n"
	db "major damage to your opponent's \n"
	db "Active and Benched Pok`mon without \n"
	db "your Pok`mon getting knocked out.",TX_END

Text04b7: ; 44e85 (11:4e85)
	db TX_START,"Damage Swap",TX_END

Text04b8: ; 44e92 (11:4e92)
	db TX_START,"You can use Alakazam's Damage Swap\n"
	db "to move damage counters off of a\n"
	db "Pok`mon that is almost knocked out,\n"
	db "or you can create a combo by\n"
	db "combining it with Chansey and\n"
	db "Scoop Up. Keep moving damage \n"
	db "counters to Chansey and use Scoop \n"
	db "Up to return Chansey to your hand.\n"
	db "Then put Chansey back in play. You\n"
	db "will have lost all damage counters!",TX_END

Text04b9: ; 44fe1 (11:4fe1)
	db TX_START,"Hyper Beam",TX_END

Text04ba: ; 44fed (11:4fed)
	db TX_START,"Hyper Beam is extremely powerful!\n"
	db "You can remove the Energy cards \n"
	db "attached to your opponent's\n"
	db "Pok`mon! Without Energy, they won't\n"
	db "be able to Attack or Retreat!",TX_END

Text04bb: ; 4508f (11:508f)
	db TX_START,"Prehistoric Power",TX_END

Text04bc: ; 450a2 (11:50a2)
	db TX_START,"Use Aerodactyl's Prehistoric Power\n"
	db "to block your opponent's Pok`mon\n"
	db "from evolving. Your own Pok`mon \n"
	db "can't evolve? In that case, use\n"
	db "Devolution Spray on Aerodactyl \n"
	db "and turn it back into a \n"
	db "Mysterious Fossil. Then you'll \n"
	db "be able to evolve your Pok`mon!",TX_END

Text04bd: ; 451a1 (11:51a1)
	db TX_START,"Phantom Cards",TX_END

Text04be: ; 451b0 (11:51b0)
	db TX_START,"It is rumored that there is a\n"
	db "Phantom Card that can only be \n"
	db "gotten by using Card Pop!\n"
	db "It is believed there are 2 such\n"
	db "cards, but no one knows what\n"
	db "kind of cards they are.\n"
	db "I'm off to search for someone \n"
	db "who will give me these cards!\n"
	db "                        ISHIHARA",TX_END

Text04bf: ; 452bb (11:52bb)
	db TX_START,"Weakness and Resistance",TX_END

Text04c0: ; 452d4 (11:52d4)
	db TX_START,"If a Pok`mon has a Weakness,\n"
	db "it takes double damage when attacked\n"
	db "by Pok`mon of a certain type!\n"
	db "If a Water Pok`mon attacks\n"
	db "a Fire Pok`mon, the Fire Pok`mon\n"
	db "will receive double damage!\n"
	db "If a Pok`mon has a Resistance,\n"
	db "it takes 30 less damage when\n"
	db "attacked by Pok`mon of a certain\n"
	db "type. If an Attack gives a damage \n"
	db "of 30, the Pok`mon will not receive \n"
	db "damage! Beware of the Weaknesses\n"
	db "and Resistances of your Pok`mon!",TX_END

Text04c1: ; 45474 (11:5474)
	db TX_START,"Drawing Desired Cards",TX_END

Text04c2: ; 4548b (11:548b)
	db TX_START,"The Trainer card, Computer Search,\n"
	db "is useful when you want to draw a\n"
	db "certain card! Item Finder and\n"
	db "Pok` Ball will also help!",TX_END

Text04c3: ; 45509 (11:5509)
	db TX_START,"Retreating",TX_END

Text04c4: ; 45515 (11:5515)
	db TX_START,"Retreating your Active Pok`mon to\n"
	db "the Bench is a good strategy in\n"
	db "certain situations! Retreating a \n"
	db "Pok`mon requires Energy cards.\n"
	db "Dodrio's Retreat Aid decreases the \n"
	db "number of Energy cards required to\n"
	db "retreat. If you retreat right away,\n"
	db "your Pok`mon won't get knocked out!",TX_END

Text04c5: ; 45628 (11:5628)
	db TX_START,"Fighting Pok`mon",TX_END

Text04c6: ; 4563a (11:563a)
	db TX_START,"Fighting Pok`mon Characteristics:\n"
	db "Strong against Lightning Pok`mon.\n"
	db "Weak against Psychic Pok`mon.\n"
	db "Require Fighting Energy cards \n"
	db "to Attack.",TX_END

Text04c7: ; 456c7 (11:56c7)
	db TX_START,"Fighting Pok`mon and Combos",TX_END

Text04c8: ; 456e4 (11:56e4)
	db TX_START,"It is difficult to create combos\n"
	db "with a Fighting Pok`mon, since\n"
	db "not many Fighting Pok`mon have \n"
	db "Pok`mon Power. However, their \n"
	db "strong attacks make up for this.",TX_END

Text04c9: ; 45785 (11:5785)
	db TX_START,"Double Colorless Energy",TX_END

Text04ca: ; 4579e (11:579e)
	db TX_START,"Double Colorless Energy is a\n"
	db "very useful card. By using this \n"
	db "single card, you are able to\n"
	db "attach 2 Energies at once.\n"
	db "But be careful because the \n"
	db "energy is colorless.",TX_END

Text04cb: ; 45846 (11:5846)
	db TX_START,"Rock Pok`mon",TX_END

Text04cc: ; 45854 (11:5854)
	db TX_START,"Rock Pok`mon Characteristics:\n"
	db "Strong against Lightning Pok`mon.\n"
	db "Weak against Grass Pok`mon.\n"
	db "Require Fighting Energy cards\n"
	db "to Attack.",TX_END

Text04cd: ; 458da (11:58da)
	db TX_START,"Winning with Fighting Pok`mon",TX_END

Text04ce: ; 458f9 (11:58f9)
	db TX_START,"Fighting Pok`mon will have a hard\n"
	db "time against Stage 2 Pok`mon,\n"
	db "as many Stage 2 Pok`mon are\n"
	db "resistant to Fighting Pok`mon.\n"
	db "Try to knock out your opponent's\n"
	db "Pok`mon before they evolve.",TX_END

Text04cf: ; 459b2 (11:59b2)
	db TX_START,"Basic Pok`mon",TX_END

Text04d0: ; 459c1 (11:59c1)
	db TX_START,"Basic Pok`mon are a must in the\n"
	db "Pok`mon Trading Card Game!\n"
	db "Basic Pok`mon are the only Pok`mon\n"
	db "you can put directly from your\n"
	db "hand into the play area. Stage 1\n"
	db "and Stage 2 Evolution cards can\n"
	db "only be used on Basic Pok`mon.\n"
	db "Make sure you have enough\n"
	db "Basic Pok`mon in your deck!",TX_END

Text04d1: ; 45ad5 (11:5ad5)
	db TX_START,"Water Pok`mon",TX_END

Text04d2: ; 45ae4 (11:5ae4)
	db TX_START,"Water Pok`mon Characteristics:\n"
	db "Strong against Fire Pok`mon.\n"
	db "Weak against Lightning Pok`mon.\n"
	db "Some cards are weak against \n"
	db "Grass Pok`mon. Require Water \n"
	db "Energy cards to attack.",TX_END

Text04d3: ; 45b94 (11:5b94)
	db TX_START,"Water Pok`mon Attacks",TX_END

Text04d4: ; 45bab (11:5bab)
	db TX_START,"Water Gun and Hydro Pump are\n"
	db "attacks which have variable damage.\n"
	db "The more Water Energy you attach,\n"
	db "the more powerful the attack is!\n"
	db "The attack can do up to 20 more \n"
	db "damage in this way.",TX_END

Text04d5: ; 45c65 (11:5c65)
	db TX_START,"Paralyze",TX_END

Text04d6: ; 45c6f (11:5c6f)
	db TX_START,"When a Pok`mon is paralyzed, it\n"
	db "is unable to do anything.\n"
	db "It cannot retreat, attack or use\n"
	db "Pok`mon Power, but the player may\n"
	db "use any cards in his or her hand.\n"
	db "Paralysis lasts until the end of \n"
	db "the paralyzed player's turn. \n"
	db "Paralysis can be healed with\n"
	db "Full Heal and Evolution cards.",TX_END

Text04d7: ; 45d8b (11:5d8b)
	db TX_START,"Lightning Pok`mon",TX_END

Text04d8: ; 45d9e (11:5d9e)
	db TX_START,"Lightning Pok`mon Characteristics:\n"
	db "Strong against Water Pok`mon.\n"
	db "Weak against Fighting Pok`mon.\n"
	db "Require Lightning Energy cards\n"
	db "to attack.",TX_END

Text04d9: ; 45e29 (11:5e29)
	db TX_START,"Energy Cards",TX_END

Text04da: ; 45e37 (11:5e37)
	db TX_START,"There are 6 Basic Energy cards:\n"
	db "Grass, Fire, Water, Lightning,\n"
	db "Fighting and Psychic!\n"
	db "There is also the Double Colorless\n"
	db "Energy card.\n"
	db "You may include as many Energy \n"
	db "cards as you like in your deck,\n"
	db "but you may only include 4\n"
	db "Double Colorless Energy cards.",TX_END

Text04db: ; 45f37 (11:5f37)
	db TX_START,"Card Pop!",TX_END

Text04dc: ; 45f42 (11:5f42)
	db TX_START,"When you and a friend Card Pop!,\n"
	db "you will each receive a new card.\n"
	db "After you Pop! with a friend, you \n"
	db "won't be able to Pop! with the same\n"
	db "friend for a while. You always get\n"
	db "the same card when you Pop! with\n"
	db "the same friend, so Pop! with many\n"
	db "friends to get different cards!",TX_END

Text04dd: ; 46054 (11:6054)
	db TX_START,"Grass Pok`mon",TX_END

Text04de: ; 46063 (11:6063)
	db TX_START,"Grass Pok`mon Characteristics:\n"
	db "Strong against Rock Pok`mon.\n"
	db "Weak against Fire Pok`mon.\n"
	db "Some Water Pok`mon are weak\n"
	db "against Grass Pok`mon. Require \n"
	db "Grass Energy cards to attack.",TX_END

Text04df: ; 46115 (11:6115)
	db TX_START,"Poison",TX_END

Text04e0: ; 4611d (11:611d)
	db TX_START,"When your Pok`mon is poisoned, it\n"
	db "will continue to lose HP.\n"
	db "The poisoned Pok`mon will lose\n"
	db "10 HP at the end of each player's \n"
	db "turn. To heal a Poisoned Pok`mon,\n"
	db "you may retreat it to the Bench\n"
	db "or use the Trainer Card, Full Heal.\n"
	db "Evolving or Devolving the Pok`mon \n"
	db "are other ways of healing it.",TX_END

Text04e1: ; 46243 (11:6243)
	db TX_START,"Grass Pok`mon & Pok`mon Breeder",TX_END

Text04e2: ; 46264 (11:6264)
	db TX_START,"Many Grass Pok`mon are capable of\n"
	db "evolving to Stage 2 Pok`mon.\n"
	db "Use the Trainer Card, Pok`mon\n"
	db "Breeder, to evolve Pok`mon quickly.\n"
	db "You'll be able to use powerful\n"
	db "attacks early in the game.",TX_END

Text04e3: ; 46320 (11:6320)
	db TX_START,"Psychic Pok`mon",TX_END

Text04e4: ; 46331 (11:6331)
	db TX_START,"Psychic Pok`mon Characteristics:\n"
	db "Weak against Psychic Pok`mon.\n"
	db "Some Colorless Pok`mon are strong \n"
	db "against Psychic Pok`mon. Require\n"
	db "Psychic Energy cards to attack.",TX_END

Text04e5: ; 463d5 (11:63d5)
	db TX_START,"Sleep",TX_END

Text04e6: ; 463dc (11:63dc)
	db TX_START,"When a Pok`mon is asleep,\n"
	db "it is unable to do anything.\n"
	db "It cannot attack, retreat or use\n"
	db "Pok`mon Power. A coin will be \n"
	db "flipped at the end of each player's \n"
	db "turn. If the coin comes up heads, \n"
	db "the Pok`mon will wake up. If it's\n"
	db "tails, the Pok`mon remains asleep.\n"
	db "Use Full Heal to wake it up!",TX_END

Text04e7: ; 464fe (11:64fe)
	db TX_START,"Pok`mon Power",TX_END

Text04e8: ; 4650d (11:650d)
	db TX_START,"Some Pok`mon have special \n"
	db "abilities called Pok`mon Power.\n"
	db "They are very powerful abilities!\n"
	db "They can be used before attacking, \n"
	db "even if the Pok`mon with the \n"
	db "Pok`mon Power is still on the Bench.\n"
	db "There are many different Pok`mon \n"
	db "Powers, so check your cards!",TX_END

Text04e9: ; 46611 (11:6611)
	db TX_START,"Science Club Pok`mon",TX_END

Text04ea: ; 46627 (11:6627)
	db TX_START,"Characteristics of Pok`mon used\n"
	db "in the Science Club:\n"
	db "Strong against Rock Pok`mon.\n"
	db "Weak against Psychic Pok`mon.\n"
	db "Many cards have attacks with \n"
	db "poison and sleep effects.\n"
	db "Require Grass Energy cards\n"
	db "to attack.",TX_END

Text04eb: ; 466f6 (11:66f6)
	db TX_START,"Confusion",TX_END

Text04ec: ; 46701 (11:6701)
	db TX_START,"It's big trouble if your Pok`mon\n"
	db "gets Confused!\n"
	db "When a Confused Pok`mon tries to\n"
	db "attack, you must flip a coin!\n"
	db "If it's heads, the attack is \n"
	db "successful, but if it's tails,\n"
	db "the Pok`mon will attack itself\n"
	db "for 20 damage!",TX_END

Text04ed: ; 467dc (11:67dc)
	db TX_START,"Useful Buttons",TX_END

Text04ee: ; 467ec (11:67ec)
	db TX_START,"While pressing the B Button,\n"
	db "use the + Control Pad to view\n"
	db "your own or your opponent's \n"
	db "Play Area or Discard Pile!\n"
	db "B + Down = Your Play Area\n"
	db "B + Left = Your Discard Pile\n"
	db "B + Up = Opponent's Play Area\n"
	db "B + Right = Opponent's Discard Pile\n"
	db "Remember these handy functions!",TX_END

Text04ef: ; 468f9 (11:68f9)
	db TX_START,"Fire Pok`mon",TX_END

Text04f0: ; 46907 (11:6907)
	db TX_START,"Fire Pok`mon Characteristics:\n"
	db "Strong against Grass Pok`mon.\n"
	db "Weak against Water Pok`mon.\n"
	db "Some Grass Pok`mon are not weak\n"
	db "against Fire Pok`mon.\n"
	db "Require Fire Energy cards\n"
	db "to attack.",TX_END

Text04f1: ; 469bb (11:69bb)
	db TX_START,"Fire Pok`mon Attacks",TX_END

Text04f2: ; 469d1 (11:69d1)
	db TX_START,"Many Fire Pok`mon attacks require\n"
	db "that an Energy card be removed.\n"
	db "Be sure to include many Energy\n"
	db "cards in decks with Fire Pok`mon.\n"
	db "It might be wise to also include\n"
	db "Energy Retrieval in your deck.",TX_END

Text04f3: ; 46a95 (11:6a95)
	db TX_START,"Original Game Boy Cards",TX_END

Text04f4: ; 46aae (11:6aae)
	db TX_START,"The Pok`mon Trading Card Game\n"
	db "for Game Boy includes many \n"
	db "original cards, like the \n"
	db TX_START,TX_LVL,"14 Meowth with the Cat Punch \n"
	db "attack. There are many new cards,\n"
	db "so go search them out!",TX_END

Text04f5: ; 46b5d (11:6b5d)
	db TX_START,"Colorless Pok`mon",TX_END

Text04f6: ; 46b70 (11:6b70)
	db TX_START,"Colorless Pok`mon are very easy\n"
	db "to use. They can attack with \n"
	db "any type of Energy card, so\n"
	db "you can include them in any type\n"
	db "of deck. There are many Colorless \n"
	db "Pok`mon, so check them all out!",TX_END

Text04f7: ; 46c2f (11:6c2f)
	db TX_START,"Dragon Pok`mon",TX_END

Text04f8: ; 46c3f (11:6c3f)
	db TX_START,"Colorless Dragon Pok`mon cards\n"
	db "have resistance to Psychic\n"
	db "Pok`mon and have no weaknesses.\n"
	db "They can attack with any type\n"
	db "of Energy card - they are truly\n"
	db "worthy of the name \"dragon!\"",TX_END

Text04f9: ; 46cf5 (11:6cf5)
	db TX_START,"Bird Pok`mon",TX_END

Text04fa: ; 46d03 (11:6d03)
	db TX_START,"Colorless Bird Pok`mon cards\n"
	db "have resistance to Fighting\n"
	db "Pok`mon but are weak against\n"
	db "Lightning Pok`mon. They can attack\n"
	db "with any type of Energy card.\n"
	db "They can retreat easily, since\n"
	db "they are flying.",TX_END

Text04fb: ; 46dcb (11:6dcb)
	db TX_START,"Legendary Pok`mon Cards, Vol. 1",TX_END

Text04fc: ; 46dec (11:6dec)
	db TX_START,"The first of the Legendary Pok`mon\n"
	db "Cards is ",TX_LVL,"37 Moltres. With\n"
	db "Firegiver, you can place Fire\n"
	db "Energy cards in your hand! Also,\n"
	db "Dive Bomb is a powerful attack!\n"
	db "Grand Master Courtney, the Fire\n"
	db "Queen, owns this card!",TX_END

Text04fd: ; 46ec2 (11:6ec2)
	db TX_START,"Legendary Pok`mon Cards, Vol. 2",TX_END

Text04fe: ; 46ee3 (11:6ee3)
	db TX_START,"The second Legendary Pok`mon Card\n"
	db "is ",TX_LVL,"68 Zapdos. With Peal of\n"
	db "Thunder, just putting this card on\n"
	db "the bench causes damage!\n"
	db "Also, Big Thunder is a powerful\n"
	db "attack! The Thunder Grand Master,\n"
	db "Steve, owns this card!",TX_END

Text04ff: ; 46fb8 (11:6fb8)
	db TX_START,"Legendary Pok`mon Cards, Vol. 3",TX_END

Text0500: ; 46fd9 (11:6fd9)
	db TX_START,"The third Legendary Pok`mon Card\n"
	db "is ",TX_LVL,"37 Articuno. Its Quickfreeze\n"
	db "will paralyze opponents' Pok`mon\n"
	db "when the card is put in play!\n"
	db "Also, Ice Breath is a powerful\n"
	db "Attack! Grand Master Jack,\n"
	db "the Ice-man, owns this card!",TX_END

Text0501: ; 470b3 (11:70b3)
	db TX_START,"Legendary Pok`mon Cards, Vol. 4",TX_END

Text0502: ; 470d4 (11:70d4)
	db TX_START,"The fourth Legendary Pok`mon Card\n"
	db "is ",TX_LVL,"41 Dragonite. Its Healing\n"
	db "Wind will heal damage done to \n"
	db "Pok`mon when this card is played!\n"
	db "Also, Slam is a powerful attack!\n"
	db "Rod, Leader of the Grand Masters,\n"
	db "owns this card!",TX_END

Text0503: ; 471aa (11:71aa)
	db TX_START,"The Grand Masters",TX_END

Text0504: ; 471bd (11:71bd)
	db TX_START,"Courtney, Steve, Jack and Rod -\n"
	db "the 4 Grand Masters who defend\n"
	db "the Legendary Pok`mon Cards - \n"
	db "are all master players of the \n"
	db "Pok`mon Trading Card Game!",TX_END

Text0505: ; 47256 (11:7256)
	db TX_START,"Master Medals",TX_END

Text0506: ; 47265 (11:7265)
	db TX_START,"There are a total of 8 Master Medals\n"
	db "owned by the Club Masters. It is \n"
	db "said that the secret of their Club's\n"
	db "deck is encrypted in the Master \n"
	db "Medals. Some say the medals were \n"
	db "a gift from the Grand Masters.",TX_END

Text0507: ; 47334 (11:7334)
	db TX_START,"Plate of Legends",TX_END

Text0508: ; 47346 (11:7346)
	db TX_START,"\"Those in search of the Legendary\n"
	db " Pok`mon Cards...\n"
	db " Defeat the Masters of the 8 Clubs\n"
	db " and attain the 8 Medals.\n"
	db " Once attained, defeat the Grand\n"
	db " Master here at Pok`mon Dome...\n"
	db " Then you shall inherit\n"
	db " the Legendary Pok`mon Cards.\"",TX_END

Text0509: ; 47430 (11:7430)
	db TX_START,"Mysterious Voice",TX_END

Text050a: ; 47442 (11:7442)
	db TX_START,"Greetings! Welcome to the \n"
	db "Challenge Hall! The Challenge Cup \n"
	db "will begin soon. If you win the \n"
	db "Challenge Cup, you will receive \n"
	db "a Promotional Card! Please join \n"
	db "us for this competition.",TX_END

Text050b: ; 474fd (11:74fd)
	db TX_START,"Greetings! Welcome to the \n"
	db "Challenge Hall! This is where the\n"
	db "the Challenge Cup is held. The \n"
	db "Challenge Cup may start at any\n"
	db "time, so please visit the \n"
	db "Challenge Hall often.",TX_END

Text050c: ; 475ab (11:75ab)
	db TX_START,"Greetings! Welcome to the \n"
	db "Challenge Hall! Defeat 3 \n"
	db "opponents here, and you shall be \n"
	db "presented with a wonderful gift!\n"
	db "Please join in the competition!",TX_END

Text050d: ; 47644 (11:7644)
	db TX_START,"Most unfortunate, ",TX_RAM1,".\n"
	db "Once you enter, you won't be able\n"
	db "to re-enter for some time. \n"
	db "Please try again another day.",TX_END

Text050e: ; 476b6 (11:76b6)
	db TX_START,"Congratulations, ",TX_RAM1,"!\n"
	db "You received a card!\n"
	db "Please join us for the next \n"
	db "Challenge Cup, too.",TX_END

Text050f: ; 47711 (11:7711)
	db TX_START,"I won't lose to any\n"
	db "whipper-snapper!\n"
	db "I'm going to win this \n"
	db "Challenge Cup!",TX_END

Text0510: ; 4775d (11:775d)
	db TX_START,"I work at the Challenge Cup\n"
	db "as the HOST.\n"
	db "I can't wait to get up on stage!",TX_END

Text0511: ; 477a8 (11:77a8)
	db TX_START,"The time has come to see if all\n"
	db "my training has paid off!\n"
	db "I'm going to win the Challenge Cup\n"
	db "and become a Grand Master!",TX_END

Text0512: ; 47821 (11:7821)
	db TX_START,"Hey now! It's the Challenge Cup!\n"
	db "Hey now! Gonna give it a try!\n"
	db "Hey now! Gonna beat 3 people!\n"
	db "Hey now! Watch me win the prize!",TX_END

Text0513: ; 478a0 (11:78a0)
	db TX_START,"I'm good enough to compete in\n"
	db "the Challenge Cup! Girls are just\n"
	db "as good at the Pok`mon Trading\n"
	db "Card Game as boys!",TX_END

Text0514: ; 47913 (11:7913)
	db TX_START,"What's that? Oh! The Challenge \n"
	db "Cup isn't being held right now.\n"
	db "Me? I'm waiting for the Challenge\n"
	db "Cup to begin.",TX_END

Text0515: ; 47984 (11:7984)
	db TX_START,"Hi, ",TX_RAM1,".\n"
	db "Are you competing, too?",TX_END

Text0516: ; 479a4 (11:79a4)
	db TX_START,"I'm the one who's going to\n"
	db "defeat 3 opponents! The prize, \n"
	db TX_START,TX_LVL,"60 Mewtwo, belongs to me!\n"
	db "You just sit tight and watch me win!\n"
	db "See Ya! Ha ha ha ha ha ha!",TX_END

Text0517: ; 47a3d (11:7a3d)
	db TX_START,"Hey, it's ",TX_RAM1," - the loser\n"
	db "of the Challenge Cup!",TX_END

Text0518: ; 47a6c (11:7a6c)
	db TX_START,"What? You're asking if I won?\n"
	db "I lost to the third opponent!\n"
	db "I just lost my concentration.\n"
	db "But I'll win the next Challenge \n"
	db "Cup! Of course I'll puverize you!\n"
	db "See ya! Ha ha ha ha ha ha!",TX_END

Text0519: ; 47b25 (11:7b25)
	db TX_START,"Hey ",TX_RAM1,", too bad \n"
	db "you're too late!",TX_END

Text051a: ; 47b47 (11:7b47)
	db TX_START,"The Challenge Cup is over! I\n"
	db "defeated 3 opponents and won\n"
	db "the prize - ",TX_LVL,"60 Mewtwo!\n"
	db "See ya! Ha ha ha ha ha ha!",TX_END

Text051b: ; 47bb6 (11:7bb6)
	db TX_START,"Hi, ",TX_RAM1,".\n"
	db "What are you doing here?",TX_END

Text051c: ; 47bd7 (11:7bd7)
	db TX_START,"The Challenge Cup is over! I\n"
	db "defeated 3 opponents and won\n"
	db "the prize - ",TX_LVL,"60 Mewtwo!\n"
	db "I guess you could try entering\n"
	db "the next Challenge Cup, but \n"
	db "you won't have a chance since \n"
	db "I'll win that one, too!\n"
	db "See ya! Ha ha ha ha ha ha!",TX_END

Text051d: ; 47cb9 (11:7cb9)
	db TX_START,"Hey, ",TX_RAM1,".\n"
	db "We meet again.",TX_END

Text051e: ; 47cd1 (11:7cd1)
	db TX_START,"No matter who enters the Challenge\n"
	db "Cup, I'll be the winner! \n"
	db TX_START,TX_LVL,"8 Mew, this Cup's prize, will \n"
	db "belong to me! Why don't you just\n"
	db "give up and go home!\n"
	db "See ya! Ha ha ha ha ha ha!",TX_END

Text051f: ; 47d82 (11:7d82)
	db TX_START,"Hey, it's ",TX_RAM1," - the\n"
	db "loser of the Challenge Cup!",TX_END

Text0520: ; 47db1 (11:7db1)
	db TX_START,"That was a close one for me!\n"
	db "I lost to the third opponent!\n"
	db "But I'll win the next Challenge \n"
	db "Cup! And of course, I'll pulverize \n"
	db "you! See ya! Ha ha ha ha ha!",TX_END

Text0521: ; 47e4f (11:7e4f)
	db TX_START,"Hey, isn't that ",TX_RAM1,"?\n"
	db "Late as always!",TX_END

Text0522: ; 47e73 (11:7e73)
	db TX_START,"The Challenge Cup is already\n"
	db "over! What? Who won?\n"
	db "Who do you expect!?! Me, of \n"
	db "course! The prize belongs to\n"
	db "me! ",TX_LVL,"8 Mew! See ya!\n"
	db "Ha ha ha ha ha ha!",TX_END

Text0523: ; 47f08 (11:7f08)
	db TX_START,"Hey, ",TX_RAM1,"!\n"
	db "What are you doing here?",TX_END