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
|
Text0524: ; 48000 (12:4000)
db TX_START,"The Challenge Cup is over already! \n"
db "Too bad you couldn't enter!\n"
db "The prize belongs to me! ",TX_LVL,"8 Mew!\n"
db "You really should enter the next\n"
db "Challenge Cup! But then again, \n"
db "why bother, since I'll also win \n"
db "that one, too! See ya!\n"
db "Ha ha ha ha ha ha!",TX_END
Text0525: ; 480ef (12:40ef)
db TX_START,"We do not accept entrants at\n"
db "this reception area.\n"
db "Please go to the reception area\n"
db "to the left.",TX_END
Text0526: ; 4814f (12:414f)
db TX_START,"You can't go past this point!\n"
db "It's restricted!",TX_END
Text0527: ; 4817f (12:417f)
db TX_START,"The last Challenge Cup was \n"
db "a blast! The prize was really\n"
db "cool too! Challenge Cups are \n"
db "the best! I wonder when the \n"
db "next one will be?",TX_END
Text0528: ; 48207 (12:4207)
db TX_START,"The Challenge Cup is held here,\n"
db "at the Challenge Hall.\n"
db "We're still preparing for the \n"
db "next Challenge Cup.\n"
db "Please visit us another time.",TX_END
Text0529: ; 48290 (12:4290)
db TX_START,"Someone who entered a Challenge\n"
db "Cup once cannot re-enter the \n"
db "same Challenge Cup again. Please\n"
db "wait for the next Challenge Cup.",TX_END
Text052a: ; 48311 (12:4311)
db TX_START,"Someone who entered a Challenge\n"
db "Cup once cannot re-enter for\n"
db "a while. Please visit us another\n"
db "time.",TX_END
Text052b: ; 48376 (12:4376)
db TX_START,"The first Challenge Cup is\n"
db "now underway!\n"
db "Defeat 3 opponents to win the\n"
db "wonderful prize of ",TX_LVL,"60 Mewtwo!",TX_END
Text052c: ; 483de (12:43de)
db TX_START,"The second Challenge Cup is\n"
db "now under way!\n"
db "Defeat 3 opponents to win the\n"
db "wonderful prize of ",TX_LVL,"8 Mew!",TX_END
Text052d: ; 48444 (12:4444)
db TX_START,"The Challenge Cup is now \n"
db "underway!\n"
db "Defeat 3 opponents to win a\n"
db "fabulous prize!",TX_END
Text052e: ; 48495 (12:4495)
db TX_START,"The game will be a 1-match \n"
db "duel with 4 prizes! We are \n"
db "now accepting entrants here.\n"
db "Wouldn't you like to enter?",TX_END
Text052f: ; 48507 (12:4507)
db TX_START,"Will you enter?",TX_END
Text0530: ; 48518 (12:4518)
db TX_START,"Oh, that's too bad.\n"
db "Please do visit us again.",TX_END
Text0531: ; 48547 (12:4547)
db TX_START,"Then please proceed to the stage!",TX_END
Text0532: ; 4856a (12:456a)
db TX_START,"Well, things are heating up\n"
db "here at the Challenge Cup!",TX_END
Text0533: ; 485a2 (12:45a2)
db TX_START,"Presently, ",TX_RAM1," is still\n"
db "a contender!",TX_END
Text0534: ; 485c6 (12:45c6)
db TX_START,TX_RAM1," is the new challenger!",TX_END
Text0535: ; 485e0 (12:45e0)
db TX_START,"There will be 4 Prizes!\n"
db "OK!!\n"
db "Let the duel begin!",TX_END
Text0536: ; 48612 (12:4612)
db TX_START,"The winner is ",TX_RAM2,"!!\n"
db TX_START,TX_RAM2," has defeated 2 opponents!\n"
db "Just 1 more opponent to go\n"
db "before winning the prize!",TX_END
Text0537: ; 48677 (12:4677)
db TX_START,"Too bad, ",TX_RAM1,".\n"
db "Have a safe trip home!",TX_END
Text0538: ; 4869b (12:469b)
db TX_START,"The Winner is ",TX_RAM2,"!!!\n"
db TX_START,TX_RAM2," has defeated 1 opponent!\n"
db "2 more opponents to go\n"
db "before winning the prize!",TX_END
Text0539: ; 486fc (12:46fc)
db TX_START,"How unfortunate!\n"
db "Unable to defeat the last opponent!\n"
db "It was close, but ",TX_RAM1," was \n"
db "defeated by the third opponent!",TX_END
Text053a: ; 4876b (12:476b)
db TX_START,"You see! I'm the better player?\n"
db "Two more opponents to go\n"
db "to win the Challenge Cup!!",TX_END
Text053b: ; 487c0 (12:47c0)
db TX_START,"Ha ha ha! How about that!?!\n"
db "I win!!\n"
db "2 more opponents to go and\n"
db "the ",TX_LVL,"8 Mew belongs to me!",TX_END
Text053c: ; 4881b (12:481b)
db TX_START,"Congratulations!\n"
db "The Winner is ",TX_RAM1,"!\n"
db TX_START,TX_RAM1," has defeated\n"
db "1 opponent!!!",TX_END
Text053d: ; 4885c (12:485c)
db TX_START,"Way to go, ",TX_RAM1,"!\n"
db "That's 2 wins!!!\n"
db "One more opponent to go before\n"
db "winning the Challenge Cup!",TX_END
Text053e: ; 488b6 (12:48b6)
db TX_START,"Most unfortunate, ",TX_RAM2,".\n"
db "Have a safe trip home!",TX_END
Text053f: ; 488e3 (12:48e3)
db TX_START,"Let's meet our next challenger!",TX_END
Text0540: ; 48904 (12:4904)
db TX_START,"Our new challenger is...\n"
db TX_START,TX_RAM2,"!",TX_END
Text0541: ; 48922 (12:4922)
db TX_START,"The third opponent is\n"
db TX_START,TX_RAM2,"!",TX_END
Text0542: ; 4893d (12:493d)
db TX_START,"Hey, ",TX_RAM1,"!\n"
db "I'm not gonna lose to you!\n"
db TX_START,TX_LVL,"60 Mewtwo belongs to me!!!",TX_END
Text0543: ; 4897f (12:497f)
db TX_START,TX_RAM1,"!\n"
db "I'm going to defeat you!\n"
db TX_START,TX_LVL,"8 Mew belongs to me!!!",TX_END
Text0544: ; 489b6 (12:49b6)
db TX_START,"With that, let the third match \n"
db "begin!",TX_END
Text0545: ; 489de (12:49de)
db TX_START,"Are your decks ready?",TX_END
Text0546: ; 489f5 (12:49f5)
db TX_START,"Prepare your deck?",TX_END
Text0547: ; 48a09 (12:4a09)
db TX_START,"Well then, ",TX_RAM1,"!\n"
db "Let the second match begin!",TX_END
Text0548: ; 48a34 (12:4a34)
db TX_START,"Well, ",TX_RAM1,", let the third,\n"
db "and final, match begin!",TX_END
Text0549: ; 48a65 (12:4a65)
db TX_START,"Now then, please make \n"
db "your preparations!",TX_END
Text054a: ; 48a90 (12:4a90)
db TX_START,"Congratulations!\n"
db "You've defeated 3 opponents!",TX_END
Text054b: ; 48abf (12:4abf)
db TX_START,"Most unfortunate, ",TX_RAM2,".\n"
db "Do try again in the next\n"
db "Challenge Cup.",TX_END
Text054c: ; 48afd (12:4afd)
db TX_START,"That was luck!\n"
db "But a loss is a loss...",TX_END
Text054d: ; 48b25 (12:4b25)
db TX_START,"Shoot! I got a bad deal!",TX_END
Text054e: ; 48b3f (12:4b3f)
db TX_START,TX_RAM1,"!\n"
db "I won't lose next time!",TX_END
Text054f: ; 48b5b (12:4b5b)
db TX_START,TX_RAM1,"!\n"
db "I'll win next time!",TX_END
Text0550: ; 48b73 (12:4b73)
db TX_START,"The Winner of this Challenge Cup \n"
db "is ",TX_START,TX_RAM1,"!!!",TX_END
Text0551: ; 48b9f (12:4b9f)
db TX_START,TX_RAM1,", your prize\n"
db "is ",TX_RAM2,"!",TX_END
Text0552: ; 48bb4 (12:4bb4)
db TX_START,"Congratulations, ",TX_START,TX_RAM1,"!!!",TX_END
Text0553: ; 48bcc (12:4bcc)
db TX_START,"Hi, ",TX_RAM1,".\n"
db "What are you doing here?",TX_END
Text0554: ; 48bed (12:4bed)
db TX_START,"Yes! The Legendary Pok`mon Cards\n"
db "will be inherited here at\n"
db "Pok`mon Dome! Of course, I, \n"
db "Ronald, will inherit the cards!\n"
db "Hey, did you collect the Medals?",TX_END
Text0555: ; 48c87 (12:4c87)
db TX_START,"Duh! That's pretty obvious!\n"
db "There's no way you could \n"
db "collect them all! Why don't \n"
db "you just give up? See ya!",TX_END
Text0556: ; 48cf5 (12:4cf5)
db TX_START,"Hey, ",TX_RAM1,"!\n"
db "You only have ",TX_RAM3," Medals!\n"
db "I've already collected ",TX_RAM3,"!\n"
db "Why don't you just give up? See ya!",TX_END
Text0557: ; 48d54 (12:4d54)
db TX_START,"What!?! You don't have any!?!\n"
db "It's about time you got the hint:\n"
db "Give it up, already! See ya!",TX_END
Text0558: ; 48db2 (12:4db2)
db TX_START,"Only those who have won all 8 \n"
db "Master Medals may enter the Grand \n"
db "Hall. You have not won all the \n"
db "Master Medals. Leave this place!",TX_END
Text0559: ; 48e36 (12:4e36)
db TX_START,"Only those who have won all 8 \n"
db "Master Medals may enter the Grand \n"
db "Hall. You have won all 8 Master \n"
db "Medals! Enter the Grand Hall!",TX_END
Text055a: ; 48eb8 (12:4eb8)
db TX_START,"Congratulations!\n"
db "My Legendary Card belongs to you!\n"
db "Please take good care of this card!",TX_END
Text055b: ; 48f10 (12:4f10)
db TX_START,"You're very good, ",TX_RAM1,".\n"
db "Please take care of my card.",TX_END
Text055c: ; 48f43 (12:4f43)
db TX_START,"Congratulations! \n"
db "You're the Champ!\n"
db "My Zapdos card belongs to you!",TX_END
Text055d: ; 48f87 (12:4f87)
db TX_START,"Congratulations!\n"
db "You're the Champ!\n"
db "Please treasure my Zapdos card!",TX_END
Text055e: ; 48fcb (12:4fcb)
db TX_START,"Please build a powerful Deck\n"
db "around my card!",TX_END
Text055f: ; 48ff9 (12:4ff9)
db TX_START,"You've really improved your \n"
db "game, ",TX_START,TX_RAM1,".\n"
db "Use my card to make it better!",TX_END
Text0560: ; 49040 (12:5040)
db TX_START,"You played a wonderful match!\n"
db "The Legendary Cards seem pleased\n"
db "to be passed on to you\n"
db TX_START,TX_RAM1,". Hurry and go through\n"
db "to the Hall of Honor!",TX_END
Text0561: ; 490c6 (12:50c6)
db TX_START,"You played a wonderful match!\n"
db "The Legendary Cards seem pleased\n"
db "to be passed on to you.",TX_END
Text0562: ; 4911e (12:511e)
db TX_START,TX_RAM1,", That is not the way\n"
db "to the Hall of Honor.\n"
db "Hurry, ",TX_START,TX_RAM1,"! Go through to\n"
db "the Hall of Honor!",TX_END
Text0563: ; 49178 (12:5178)
db TX_START,TX_RAM1,", if you leave the \n"
db "Grand Hall, you must defeat \n"
db "each of us again to enter\n"
db "the Hall of Honor.",TX_END
Text0564: ; 491d8 (12:51d8)
db TX_START,"Exit the Grand Hall?",TX_END
Text0565: ; 491ee (12:51ee)
db TX_START,"Possessor of all 8 Master Medals...\n"
db "Enter the Dueling Stage...\n"
db "However, you will be unable to \n"
db "turn back.",TX_END
Text0566: ; 49259 (12:5259)
db TX_START,"Enter the Dueling Stage?",TX_END
Text0567: ; 49273 (12:5273)
db TX_START,"Then leave the Grand Hall!",TX_END
Text0568: ; 4928f (12:528f)
db TX_START,"In that case...\n"
db "Enter the Dueling Stage.",TX_END
Text0569: ; 492b9 (12:52b9)
db TX_START,"Welcome to Pok`mon Dome!",TX_END
Text056a: ; 492d3 (12:52d3)
db TX_START,"Welcome back,\n"
db "brave challenger!",TX_END
Text056b: ; 492f4 (12:52f4)
db TX_START,"I am Rod, Leader of the \n"
db "Grand Masters, and this is\n"
db "Grand Master Courtney,\n"
db "the Fire Queen.",TX_END
Text056c: ; 49350 (12:5350)
db TX_START,"Grand Master of Lightning,\n"
db "Thunder Steve!",TX_END
Text056d: ; 4937b (12:537b)
db TX_START,"Grand Master of Ice,\n"
db "Gentlemanly Jack.",TX_END
Text056e: ; 493a3 (12:53a3)
db TX_START,"We are the 4 Grand Masters who\n"
db "guard the Legendary Pok`mon Cards.\n"
db "If you can defeat all of us, then \n"
db "you will have earned the right to \n"
db "inherit the Legendary Pok`mon Cards!",TX_END
Text056f: ; 49451 (12:5451)
db TX_START,"We are the Grand Masters who guard\n"
db "the Legendary Pok`mon Cards!\n"
db "We will accept your challenge as\n"
db "many times as will take for you \n"
db "to inherit all 4 of the \n"
db "Legendary Pok`mon Cards!",TX_END
Text0570: ; 49506 (12:5506)
db TX_START,"We are the Grand Masters who guard\n"
db "the Legendary Pok`mon Cards!\n"
db "Challenge us as many times as \n"
db "you wish!",TX_END
Text0571: ; 49570 (12:5570)
db TX_START,TX_RAM1,",\n"
db "take your place at the table.",TX_END
Text0572: ; 49592 (12:5592)
db TX_START,"Your first opponent shall be \n"
db "Courtney!",TX_END
Text0573: ; 495bb (12:55bb)
db TX_START,"First, you must duel Courtney!",TX_END
Text0574: ; 495db (12:55db)
db TX_START,"Hm-hmmm...I, Courtney, the Fire \n"
db "Queen, shall be your first \n"
db "opponent! We shall see if you can \n"
db "take the heat. A 6-prizes match! \n"
db "Hm-hmm-hmm...Let's go to it!",TX_END
Text0575: ; 4967b (12:567b)
db TX_START,"Let's see if you can take the heat!\n"
db "There will be 6 Prizes.\n"
db "Hm-hmm-hmm...Let's go to it!",TX_END
Text0576: ; 496d5 (12:56d5)
db TX_START,"Hm-hmm-hmm...\n"
db "I W I N ! Come back when you've\n"
db "gotten a little better. I can't\n"
db "give a Legendary Pok`mon Card to\n"
db "someone who plays like that!",TX_END
Text0577: ; 49763 (12:5763)
db TX_START,"Hm-hmm-hmm...I W I N !\n"
db "The Legendary Pok`mon Cards \n"
db "deserve better than that!",TX_END
Text0578: ; 497b3 (12:57b3)
db TX_START,"I'm sorry, but you have to leave.\n"
db "Well, take care...",TX_END
Text0579: ; 497e9 (12:57e9)
db TX_START,"Hmm-hmm-hmm...I lose.\n"
db "But that's no suprise, seeing \n"
db "as how you've come this far.\n"
db "Your next opponent is waiting \n"
db "for you!",TX_END
Text057a: ; 49864 (12:5864)
db TX_START,"Hmm-hmm-hmm...I lose.\n"
db "I find you worthy of inheriting\n"
db "the Legendary Pok`mon Cards!",TX_END
Text057b: ; 498b8 (12:58b8)
db TX_START,"Very good, ",TX_RAM1,"!\n"
db "Your second opponent is Steve!",TX_END
Text057c: ; 498e6 (12:58e6)
db TX_START,TX_RAM1,"! Next, you must duel \n"
db "Steve!",TX_END
Text057d: ; 49906 (12:5906)
db TX_START,"I, Thunder Steve, am your next \n"
db "opponent. Hey! Do you want the\n"
db "Legendary Pok`mon Cards!?!\n"
db "Then you must defeat me first!",TX_END
Text057e: ; 49980 (12:5980)
db TX_START,"Hey, ",TX_RAM1,"!\n"
db "Come battle Steve!",TX_END
Text057f: ; 4999c (12:599c)
db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
Text0580: ; 499b5 (12:59b5)
db TX_START,"Prepare for the Duel?",TX_END
Text0581: ; 499cc (12:59cc)
db TX_START,"All right then!\n"
db "Let's begin the Duel!",TX_END
Text0582: ; 499f3 (12:59f3)
db TX_START,"6 Prizes!\n"
db "Ready? Set! Go!",TX_END
Text0583: ; 49a0e (12:5a0e)
db TX_START,"You lose! You still have a \n"
db "long way to go,\n"
db "but don't give up!\n"
db "Challenge me again!",TX_END
Text0584: ; 49a62 (12:5a62)
db TX_START,"You Lose! You still have a \n"
db "long way to go!\n"
db "But don't give up!\n"
db "Challenge me again!",TX_END
Text0585: ; 49ab6 (12:5ab6)
db TX_START,"You're the Winner! You're the \n"
db "Greatest! With that skill, I \n"
db "feel we can give you the \n"
db "Legendary Pok`mon Cards!",TX_END
Text0586: ; 49b27 (12:5b27)
db TX_START,"You're the Winner!\n"
db "You're the Greatest!",TX_END
Text0587: ; 49b50 (12:5b50)
db TX_START,"Very good, ",TX_RAM1,".\n"
db "Your next opponent is Jack!",TX_END
Text0588: ; 49b7b (12:5b7b)
db TX_START,"That's great, ",TX_RAM1,"!\n"
db "Jack is your next opponent!",TX_END
Text0589: ; 49ba9 (12:5ba9)
db TX_START,"I, Jack, am your third opponent.\n"
db "You shall not be able to defeat\n"
db "my splendid deck!\n"
db "Come! I shall prove it to you!",TX_END
Text058a: ; 49c1c (12:5c1c)
db TX_START,"I shall duel you with my splendid \n"
db "deck! I shan't lose this time!",TX_END
Text058b: ; 49c5f (12:5c5f)
db TX_START,TX_RAM1,",\n"
db "have you readied your deck?",TX_END
Text058c: ; 49c7f (12:5c7f)
db TX_START,"Prepare for the duel?",TX_END
Text058d: ; 49c96 (12:5c96)
db TX_START,"Very well then!\n"
db "Let us begin the duel!",TX_END
Text058e: ; 49cbe (12:5cbe)
db TX_START,"Shall we start?\n"
db "There will be 6 Prizes!",TX_END
Text058f: ; 49ce7 (12:5ce7)
db TX_START,"What did I tell you?\n"
db "There was absolutely no way you \n"
db "could have defeated my\n"
db "splendid deck!",TX_END
Text0590: ; 49d44 (12:5d44)
db TX_START,"What did I tell you?\n"
db "There was no way you could have \n"
db "defeated my splendid deck!",TX_END
Text0591: ; 49d96 (12:5d96)
db TX_START,"I simply can't believe my \n"
db "splendid deck could lose...\n"
db "It is a mortifying thought, \n"
db "but it appears you are better \n"
db "than I. Very well! Now\n"
db "on to your final test...",TX_END
Text0592: ; 49e3a (12:5e3a)
db TX_START,"I simply can't believe my \n"
db "splendid deck could lose...\n"
db "It would appear that you are \n"
db "a true Master...",TX_END
Text0593: ; 49ea1 (12:5ea1)
db TX_START,"Spectacular dueling! I, Rod,\n"
db "will be your next opponent!",TX_END
Text0594: ; 49edb (12:5edb)
db TX_START,"Splendid, as usual!\n"
db "I will be your next opponent!",TX_END
Text0595: ; 49f0e (12:5f0e)
db TX_START,"This is your final duel!\n"
db "Show me what you're made of!",TX_END
Text0596: ; 49f45 (12:5f45)
db TX_START,"If you win this Duel, I will \n"
db "allow you to duel Ronald!",TX_END
Text0597: ; 49f7e (12:5f7e)
db TX_START,"This is your final duel!\n"
db "Show me what you're made of!",TX_END
Text0598: ; 49fb5 (12:5fb5)
db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
Text0599: ; 49fce (12:5fce)
db TX_START,"Prepare for the Duel?",TX_END
Text059a: ; 49fe5 (12:5fe5)
db TX_START,"Then let's begin the final duel - \n"
db "a 1-match duel for 6 Prizes!!!",TX_END
Text059b: ; 4a028 (12:6028)
db TX_START,"A 1-match duel for 6 prizes!!",TX_END
Text059c: ; 4a047 (12:6047)
db TX_START,"That was close, but you came \n"
db "up a little short.",TX_END
Text059d: ; 4a079 (12:6079)
db TX_START,"I'm sorry, but I cannot pass the\n"
db "the Legendary Pok`mon Cards to you.\n"
db "Continue training and try again.\n"
db "Until then!",TX_END
Text059e: ; 4a0ec (12:60ec)
db TX_START,"Continue training and try again.\n"
db "Until then!",TX_END
Text059f: ; 4a11a (12:611a)
db TX_START,"Wha-what on earth? Even\n"
db "I, Rod, have been defeated?!?\n"
db "Wonderful! This is wonderful!!\n"
db "Congratulations, ",TX_RAM1,". \n"
db "You have proven yourself worthy\n"
db "enough to inherit the\n"
db "Legendary Pok`mon Cards!!!\n"
db "Except...",TX_END
Text05a0: ; 4a1e1 (12:61e1)
db TX_START,"Congratulations, ",TX_RAM1,"!\n"
db "You're a master duelist!!!\n"
db "But...",TX_END
Text05a1: ; 4a218 (12:6218)
db TX_START,"We have a problem...\n"
db "There is another who has \n"
db "defeated us...\n"
db "You must duel him...",TX_END
Text05a2: ; 4a26c (12:626c)
db TX_START,"You must duel Ronald again.",TX_END
Text05a3: ; 4a289 (12:6289)
db TX_START,"Congratulations, ",TX_RAM1,"!\n"
db "You're a master duelist!",TX_END
Text05a4: ; 4a2b7 (12:62b7)
db TX_START,"Even I, Rod, am no longer any \n"
db "match for you.\n"
db "Please, enter the \n"
db "Hall of Honor!",TX_END
Text05a5: ; 4a308 (12:6308)
db TX_START,"Yeah! That's right! \n"
db "It's me!!! Ronald!!!\n"
db "I have already inherited the\n"
db "Legendary Pok`mon Cards!",TX_END
Text05a6: ; 4a369 (12:6369)
db TX_START,"No, Ronald! That cannot be \n"
db "allowed! He, too, has earned \n"
db "the right to inherit the \n"
db "Legendary Pok`mon Cards!\n"
db "Ronald! ",TX_RAM1,"!\n"
db "You two must duel to determine who \n"
db "will inherit the Legendary Pok`mon \n"
db "Cards. So say the Rules!",TX_END
Text05a7: ; 4a443 (12:6443)
db TX_START,"Alright, Rod!",TX_END
Text05a8: ; 4a452 (12:6452)
db TX_START,"Yeah! That's right! It's me!!!\n"
db "Ronald!!!\n"
db "I'll take your challenge,\n"
db TX_START,TX_RAM1,"!",TX_END
Text05a9: ; 4a49a (12:649a)
db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
Text05aa: ; 4a4b3 (12:64b3)
db TX_START,"Prepare for the Duel?",TX_END
Text05ab: ; 4a4ca (12:64ca)
db TX_START,"OK, Then let's begin this \n"
db "ultimate duel!",TX_END
Text05ac: ; 4a4f5 (12:64f5)
db TX_START,"I was here first! The Legendary\n"
db "Pok`mon Cards belong to me!\n"
db "I'll make it all too clear to\n"
db "you, ",TX_START,TX_RAM1,"!",TX_END
Text05ad: ; 4a559 (12:6559)
db TX_START,"It's a 1-match duel with 6-prizes!\n"
db "Let it begin!",TX_END
Text05ae: ; 4a58b (12:658b)
db TX_START,"Now do you know who the better \n"
db "player is!?!\n"
db "The Legendary Pok`mon Cards\n"
db "belong to me!\n"
db "If you still won't give up,\n"
db "I'll take you on again...\n"
db "But first, you'll have to defeat\n"
db "all 4 of the Grand Masters again!",TX_END
Text05af: ; 4a65c (12:665c)
db TX_START,"No!!! How...? How could I lose!?!",TX_END
Text05b0: ; 4a67f (12:667f)
db TX_START,"I'm sorry, but the Legendary Pok`mon\n"
db "Cards have chosen ",TX_RAM1,".",TX_END
Text05b1: ; 4a6ba (12:66ba)
db TX_START,"The Legendary Pok`mon Cards\n"
db "vanished from Ronald's Deck!",TX_END
Text05b2: ; 4a6f4 (12:66f4)
db TX_START,"No! My...My Legendary \n"
db "Pok`mon Cards!\n"
db "No...!\n"
db "Noooooo!!!",TX_END
Text05b3: ; 4a72d (12:672d)
db TX_START,"Congratulations, ",TX_RAM1,"!\n"
db "You are a Card Master\n"
db "worthy of inheriting\n"
db "the Legendary Pok`mon Cards!\n"
db "The Legendary Pok`mon Cards\n"
db "recognize you as a true Master!",TX_END
Text05b4: ; 4a7c6 (12:67c6)
db TX_START,"Now go through to the Hall of Honor\n"
db "to receive the Legendary Cards!",TX_END
Text05b5: ; 4a80b (12:680b)
db TX_START,"The Legendary Auto Deck Machine \n"
db "has been turned on!",TX_END
Text05b6: ; 4a841 (12:6841)
db TX_START,"Would you like to build a Deck?",TX_END
Text05b7: ; 4a862 (12:6862)
db TX_START,"The Legendary Auto Deck Machine\n"
db "has been turned off!",TX_END
Text05b8: ; 4a898 (12:6898)
db TX_START,"The 4 Legendary Pok`mon Cards\n"
db "float, glowing in the air!",TX_END
Text05b9: ; 4a8d2 (12:68d2)
db TX_START,"The Legendary Pok`mon Cards\n"
db "speak to you...\n"
db " \"You who have inherited us...\n"
db " Great Card Master! \n"
db " Our Master must not forget:\n"
db " Inheriting us does not make you\n"
db " a Pok`mon Card Master!\n"
db " A true Pok`mon Card Master is\n"
db " one who has the skill to use\n"
db " the abilities of the different\n"
db " cards and the courage to duel\n"
db " powerful opponents. And most\n"
db " of all, the ability to love the\n"
db " Pok`mon Trading Card Game\n"
db " no matter what - win or lose!\n"
db " A new journey has just begun...\"",TX_END
Text05ba: ; 4aaad (12:6aad)
db TX_START,"One of the Legendary Pok`mon Cards\n"
db "floats, glowing in the air!",TX_END
Text05bb: ; 4aaed (12:6aed)
db TX_START,"A Legendary Pok`mon Card\n"
db "floats, glowing in the air!",TX_END
Text05bc: ; 4ab23 (12:6b23)
db TX_START,"The Legendary Pok`mon Cards\n"
db "speak to you...\n"
db " \"You who have inherited us...\n"
db " Great Card Master!\n"
db " There are no cards left for us\n"
db " to give you, but do not forget:\n"
db " Inheriting us does not make you\n"
db " a Pok`mon Card Master!\n"
db " A true Pok`mon Card Master\n"
db " is one who has the skill to use\n"
db " the abilities of the different\n"
db " cards and the courage to duel\n"
db " powerful opponents. And above\n"
db " all, the ability to love the\n"
db " Pok`mon Trading Card Game no\n"
db " matter what - win or lose!\n"
db " A new journey has just begun...\"",TX_END
Text05bd: ; 4ad20 (12:6d20)
db TX_START,"It's the Challenge Machine,\n"
db "created by Dr. Mason!",TX_END
Text05be: ; 4ad53 (12:6d53)
db TX_START,"The 8 Club Masters each own a\n"
db "Master Medal.\n"
db "The secret of each Club's deck is\n"
db "encrypted in its Master Medal.\n"
db "Once you get a Master Medal, go\n"
db "to the computer room in back.\n"
db "You can place the Medals in the\n"
db "Auto Deck Machines to create\n"
db "different Decks!",TX_END
Text05bf: ; 4ae4d (12:6e4d)
db TX_START,"You finally inherited the\n"
db "Legendary Pok`mon Cards!\n"
db "Did you see the Legendary Auto\n"
db "Deck Machine?\n"
db "It is rumored that it's in the \n"
db "Hall of Honor at Pok`mon Dome.\n"
db "It supposedly holds the secret \n"
db "to a very powerful deck!",TX_END
Text05c0: ; 4af26 (12:6f26)
db TX_START,"Excuse me, but you don't seem \n"
db "to have many Energy cards.\n"
db "Building a deck must be difficult \n"
db "with so few Energy cards.\n"
db "Here, take these!",TX_END
Text05c1: ; 4afb0 (12:6fb0)
db TX_START,TX_RAM1," received some \n"
db "Energy cards!",TX_END
Text05c2: ; 4afd0 (12:6fd0)
db TX_START,"Goodbye!\n"
db "Take care!",TX_END
Text05c3: ; 4afe5 (12:6fe5)
db TX_START,"Are you also hoping to inherit\n"
db "the Legendary Pok`mon Cards?\n"
db "If you want the Legendary Cards,\n"
db "you must defeat the Grand Masters.\n"
db "To duel the Grand Masters, you\n"
db "must first get the Master Medals.\n"
db "The 8 Masters of the Card Clubs\n"
db "each have a Master Medal. Go to\n"
db "Pok`mon Dome if you want to learn\n"
db "more about the Legendary Cards.",TX_END
Text05c4: ; 4b129 (12:7129)
db TX_START,"You finally inherited the\n"
db "Legendary Pok`mon Cards!\n"
db "Amazing!\n"
db "Congratulations, ",TX_RAM1,"!!!",TX_END
Text05c5: ; 4b17c (12:717c)
db TX_START,"When you defeat a Club Member,\n"
db "you'll receive a Booster Pack.\n"
db "Each Booster Pack has 10 cards.\n"
db "The cards differ depending on\n"
db "the Booster Pack you receive. \n"
db "The type of Booster Pack differs\n"
db "depending on who you duel, \n"
db "so choose your opponents well.",TX_END
Text05c6: ; 4b274 (12:7274)
db TX_START,"Congratulations on inheriting \n"
db "the Legendary Pok`mon Cards,\n"
db TX_START,TX_RAM1,"! Now you should try\n"
db "dueling different people using the\n"
db "cards you inherited. I'm sure \n"
db "you'll have a good time!",TX_END
Text05c7: ; 4b323 (12:7323)
db TX_START,"I'm sure you already know, but there\n"
db "are 8 Clubs: the Fighting, Water,\n"
db "Lightning, Grass, Psychic, Fire,\n"
db "Rock and Science Clubs!\n"
db "The different Clubs use cards that\n"
db "are specific to that Club.",TX_END
Text05c8: ; 4b3e2 (12:73e2)
db TX_START,"Amazing! You beat the 8 Club \n"
db "Masters!\n"
db "And you even defeated the\n"
db "4 Grand Masters! Amazing!",TX_END
Text05c9: ; 4b43e (12:743e)
db TX_START,"To save your game, press START\n"
db "and choose Diary from the Menu.\n"
db "You can do all sorts of stuff with\n"
db "that PC over there.\n"
db "You can read e-mail from \n"
db "Dr. Mason on that PC, too!",TX_END
Text05ca: ; 4b4ea (12:74ea)
db TX_START,"This is the Challenge Machine\n"
db "created by Dr. Mason!\n"
db "The Challenge Machine is a \n"
db "Pok`mon Card Dueling Machine. \n"
db "The rules of the game are simple: \n"
db "choose 1 deck with which you must\n"
db "duel 5 computer opponents!\n"
db "If you can defeat the 5 \n"
db "opponents, you win! You can also \n"
db "play to extend your winning \n"
db "streak! Build a deck and \n"
db "give it a try, ",TX_RAM1,"!",TX_END
Text05cb: ; 4b63e (12:763e)
db TX_START,"OK, let's start using the practice\n"
db "Deck. Listen and follow Dr. Mason's\n"
db "instructions.",TX_END
Text05cc: ; 4b694 (12:7694)
db TX_START,"Practice with Sam?",TX_END
Text05cd: ; 4b6a8 (12:76a8)
db TX_START,"You should practice again if there\n"
db "is anything you don't understand.",TX_END
Text05ce: ; 4b6ee (12:76ee)
db TX_START,"OK, a 2-Prize duel using\n"
db "the practice deck!",TX_END
Text05cf: ; 4b71b (12:771b)
db TX_START,"Would you like to duel Sam?",TX_END
Text05d0: ; 4b738 (12:7738)
db TX_START,"Come see me any time.\n"
db "The basics are very important!",TX_END
Text05d1: ; 4b76e (12:776e)
db TX_START,"You're getting the hang of it!",TX_END
Text05d2: ; 4b78e (12:778e)
db TX_START,"Keep this up, and you should be able\n"
db "to win some duels!",TX_END
Text05d3: ; 4b7c7 (12:77c7)
db TX_START,"You need to practice more.\n"
db "If you think things through,\n"
db "you should be able to win.\n"
db "Why don't you practice \n"
db "a little more?",TX_END
Text05d4: ; 4b842 (12:7842)
db TX_START,"So, have you learned how to \n"
db "play the game?\n"
db "I hope you enjoy playing the\n"
db "Pok`mon Trading Card Game!",TX_END
Text05d5: ; 4b8a7 (12:78a7)
db TX_START,"What do you want to \n"
db "ask about?",TX_END
Text05d6: ; 4b8c8 (12:78c8)
db TX_START,"In order to do anything, Pok`mon \n"
db "must have Energy cards. \n"
db "If no Energy cards are attached,\n"
db "the Pok`mon will not be able to \n"
db "attack or retreat. There are 7 \n"
db "types of Energy cards: Grass, \n"
db "Fire, Water, Lightning, Psychic, \n"
db "Fighting and Colorless.\n"
db "The type of Energy required \n"
db "depends on the Pok`mon.\n"
db "Be sure to learn which Pok`mon \n"
db "require which type of Energy!",TX_END
Text05d7: ; 4ba32 (12:7a32)
db TX_START,"Pok`mon damage defending Pok`mon \n"
db "by attacking. Pok`mon need Energy \n"
db "cards in order to attack.\n"
db "For example, the energy required \n"
db "for Seaking's Waterfall is ",TX_WATER,TX_COLORLESS,".\n"
db TX_WATER,TX_COLORLESS," stands for 1 Water Energy \n"
db "card and another Energy card of \n"
db "any type. The energy required \n"
db "differs according to the attack.",TX_END
Text05d8: ; 4bb56 (12:7b56)
db TX_START,"To switch your Active Pok`mon\n"
db "with a Bench Pok`mon, choose \n"
db "the Retreat command. If the \n"
db "Active Pok`mon is in danger,\n"
db "move it back to your Bench.\n"
db "Energy is required in order\n"
db "to Retreat. The number of \n"
db "Energy cards required varies,\n"
db "depending on the Pok`mon.",TX_END
Text05d9: ; 4bc58 (12:7c58)
db TX_START,"There are 3 types of Pok`mon cards:\n"
db "Basic Pok`mon, Stage 1 Pok`mon and \n"
db "Stage 2 Pok`mon. Squirtle is a \n"
db "Basic, Wartortle a Stage 1 and \n"
db "Blastoise a Stage 2 Pok`mon.\n"
db "Basic Pok`mon are the only cards\n"
db "that can be put directly into play.\n"
db "A Basic Pok`mon in play can be\n"
db "evolved to a Stage 1 Pok`mon. A\n"
db "Stage 1 Pok`mon in the Play Area \n"
db "can then be evolved to a Stage 2 \n"
db "Pok`mon. Therefore, Squirtle is \n"
db "needed in order to play Wartortle,\n"
db "and Wartortle is needed in\n"
db "order to play Blastoise.",TX_END
Text05da: ; 4be3e (12:7e3e)
db TX_START,"Some Pok`mon have special\n"
db "abilities called Pok`mon Powers.\n"
db "Some Pok`mon Powers are used as\n"
db "soon as the Pok`mon is played,\n"
db "while others must be used by\n"
db "choosing the PKMN Power command.\n"
db "There are many different Pok`mon\n"
db "Powers, so read each card's text\n"
db "carefully.",TX_END
|