summaryrefslogtreecommitdiff
path: root/src/text/text8.asm
blob: 73b32b982ce28826de0fb9fb5d058066527bb437 (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
Text0684: ; 50000 (14:4000)
	text "I'll think of a new strategy,"
	line "so come see me again!"
	line "I'll be waiting!"
	line "Ha ha ha ha ha......"
	done

Text0685: ; 5005b (14:405b)
	text "It seems you weren't really ready."
	line "If you keep playing like that,"
	line "You'll only inherit the Legendary "
	line "Pokémon Cards in your dreams!"
	done

Text0686: ; 500df (14:40df)
	text "Hello, <RAMNAME>!"
	line "I just came up with a new card"
	line "strategy and was looking for"
	line "someone to test it on."
	line "You'll duel with me, of course,"
	line "won't you?"
	done

Text0687: ; 50168 (14:4168)
	text "Oh. Well, come by when you feel "
	line "like playing."
	done

Text0688: ; 50198 (14:4198)
	text "Alright! That's the spirit!"
	line "You've made me a happy man!"
	line "We'll play with 6 Prizes!"
	line "I can't wait! Let's start!"
	done

Text0689: ; 50206 (14:4206)
	text "Hmmm..."
	line "Maybe my Deck isn't well balanced?"
	line "I must change some of the cards"
	line "and try again."
	line "Oh yeah, take this."
	done

Text068a: ; 50275 (14:4275)
	text "Come play with me again."
	done

Text068b: ; 5028f (14:428f)
	text "It seems you weren't really "
	line "ready. Come back once you're "
	line "finally ready."
	done

Text068c: ; 502da (14:42da)
	text "Greetings."
	line "Welcome to the Fire Club!"
	line "This is a Club for boys with a "
	line "burning passion for Fire Pokémon."
	line "Fire Pokémon have the greatest "
	line "attack power of all Pokémon!"
	done

Text068d: ; 5037f (14:437f)
	text "Training's so boring and out of "
	line "date. Why do I have to do it?"
	line "Why me?"
	line "I'm Jessica of the Fighting Club."
	line "Oh! You must be <RAMNAME>."
	line "I heard about you from Mitch."
	line "Defeating you should be more"
	line "fun than training!"
	done

Text068e: ; 5044a (14:444a)
	text "Training's so boring and out of "
	line "date. Why do I have to do it?"
	line ""
	text "<RAMNAME>, it's you again!"
	line "What a pain."
	line "But defeating you should be more"
	line "fun than training."
	done

Text068f: ; 504df (14:44df)
	text "Would you like to duel Jessica?"
	done

Text0690: ; 50500 (14:4500)
	text "Oh, OK."
	line "Well, I'm busy anyway."
	line "Bye!"
	line "Training's so boring..."
	done

Text0691: ; 5053d (14:453d)
	text "OK! A single Match with 4 Prizes."
	line "Let's go to it!"
	done

Text0692: ; 50570 (14:4570)
	text "How could I lose...?"
	done

Text0693: ; 50586 (14:4586)
	text "How boring!"
	line "I'm going home! Bye!"
	done

Text0694: ; 505a8 (14:45a8)
	text "Wow! That was fun!"
	line "Much better than training!"
	line "Let's do it again sometime!"
	line "Bye!"
	done

Text0695: ; 505f8 (14:45f8)
	text "Do you know the empty house on"
	line "the cape to the northwest?"
	line "That's ISHIHARA's house!"
	line "Isn't it nice to have friends?"
	done

Text0696: ; 5066b (14:466b)
	text "My friend, ISHIHARA, wants to"
	line "trade cards."
	line "Why don't you go visit him "
	line "sometime."
	done

Text0697: ; 506bd (14:46bd)
	text "My friend, ISHIHARA, owns "
	line "really rare cards."
	line "Why don't you go visit him "
	line "sometime?"
	done

Text0698: ; 50712 (14:4712)
	text "I heard my friend, ISHIHARA, "
	line "gave someone a card."
	line "Why don't you go visit him "
	line "sometime?"
	done

Text0699: ; 5076c (14:476c)
	text "ISHIHARA's my friend."
	line "Isn't it nice to have friends?"
	done

Text069a: ; 507a2 (14:47a2)
	text "ISHIHARA's my friend."
	line "Isn't it nice to have friends?"
	done

Text069b: ; 507d8 (14:47d8)
	text "Energy! Energy!"
	line "Energy cards are very important!"
	line "Come back and see me when you"
	line "collect a lot of Energy cards!"
	line "Then..."
	line "I'll let you in on a secret!"
	done

Text069c: ; 5086c (14:486c)
	text "When you build a lot of decks,"
	line "you start to run out of Energy "
	line "cards. Please give me your Energy "
	line "cards! Give me all the Energy cards "
	line "that aren't in your Deck!!!"
	line "Gimme, Gimme! Gimme all of 'em!!!"
	done

Text069d: ; 50932 (14:4932)
	text "Give the Energy Cards?"
	done

Text069e: ; 5094a (14:494a)
	text "You're so mean!"
	line "It's OK! I'll ask someone else!"
	line "Bye!"
	line "Meanie!"
	done

Text069f: ; 50988 (14:4988)
	text "All your Energy cards are"
	line "in your Deck..."
	line "Then I can't ask for them."
	line "Bye!"
	done

Text06a0: ; 509d3 (14:49d3)
	text "<RAMNAME> lost all "
	line "his Energy cards!"
	done

Text06a1: ; 509f2 (14:49f2)
	text "Wow!"
	line "Thanks!"
	line "Since you were so nice,"
	line "I'll tell you a secret!"
	line "Check the wall 2 tiles"
	line "left of the bookcase..."
	line "You'll probably find something"
	line "really nice!"
	line "Thanks again."
	line "Bye!"
	done

FoundLv9SlowpokeText: ; 50a9e (14:4a9e)
	text "<RAMNAME>"
	line "checked the wall!"
	line ""
	text "<RAMNAME>"
	line "found a <Lv>9 Slowpoke!"
	done

Text06a3: ; 50acc (14:4acc)
	text "I'm burning with Pokémon "
	line "fever today!"
	line "One day, I'm going to inherit"
	line "the Legendary Cards!"
	done

Text06a4: ; 50b27 (14:4b27)
	text "I'm burning with Pokémon "
	line "fever today!"
	line "One day, I'm going to inherit"
	line "the Legendary Cards!"
	line "What???"
	line "You already inherited the Cards?"
	line "You..."
	line "Stop Lying!!!"
	done

Text06a5: ; 50bc0 (14:4bc0)
	text "This is the Fire Club, where guys"
	line "with a burning passion for Pokémon "
	line "Trading Cards get together for "
	line "heated duels! Join the fiery fun!"
	done

Text06a6: ; 50c49 (14:4c49)
	text "Would you like to duel John?"
	done

Text06a7: ; 50c67 (14:4c67)
	text "If you're a real man, you gotta"
	line "compete in a heated duel!"
	done

Text06a8: ; 50ca2 (14:4ca2)
	text "4 Prizes!"
	line "Let's heat it up!"
	done

Text06a9: ; 50cbf (14:4cbf)
	text "Yeah! That was really Hot!"
	line "You're the greatest!"
	line "Here, let me give you this!"
	line "Let's heat it up again!"
	done

Text06aa: ; 50d24 (14:4d24)
	text "Let's heat it up again!!!"
	done

Text06ab: ; 50d3f (14:4d3f)
	text "I guess my deck was hotter than"
	line "yours this time!"
	line "Let's heat it up again!!!"
	done

Text06ac: ; 50d8b (14:4d8b)
	text "Hey! Does everyone have the fever?"
	line "Do you have the fever?"
	line "If you have Pokémon fever,"
	line "duel with me!!!"
	done

Text06ad: ; 50df1 (14:4df1)
	text "Would you like to duel Adam?"
	done

Text06ae: ; 50e0f (14:4e0f)
	text "Why are you being so cold?"
	line "Come on! Catch the fever!"
	done

Text06af: ; 50e45 (14:4e45)
	text "A single Match with 4 Prizes!"
	line "Come on, duel me!"
	done

Text06b0: ; 50e76 (14:4e76)
	text "Whoa! I lost!!!"
	line "Here, this Booster Pack is yours!"
	done

Text06b1: ; 50ea9 (14:4ea9)
	text "Let's duel again!"
	line "See ya!!!"
	done

Text06b2: ; 50ec6 (14:4ec6)
	text "Yeah! I won!"
	line "Am I Hot or what!?!"
	line "Let's duel again!"
	line "See ya!!"
	done

Text06b3: ; 50f03 (14:4f03)
	text "Come on, people, say Fire Pokémon!"
	line "You! Come on, say Fire! "
	line "Fire Pokémon! OK! Let's duel!!!"
	done

Text06b4: ; 50f60 (14:4f60)
	text "Would you like to Duel Jonathan?"
	done

Text06b5: ; 50f82 (14:4f82)
	text "Dang! You're icy cold!"
	line "Come on! Say Fire Pokémon!"
	done

Text06b6: ; 50fb5 (14:4fb5)
	text "A 4-prize match!"
	line "Here we go! Fire Pokémon!"
	done

Text06b7: ; 50fe1 (14:4fe1)
	text "That was a great duel!"
	line "I want you to have this!"
	done

Text06b8: ; 51012 (14:5012)
	text "Let's duel again!"
	line "Come on, people, say Fire Pokémon!"
	done

Text06b9: ; 51048 (14:5048)
	text "That was a great Duel!"
	line "Let's duel again! Fire Pokémon!"
	done

Text06ba: ; 51080 (14:5080)
	text "I am Ken, the Fire Club Master!"
	line "So, you are collecting Medals"
	line "to inherit the Legendary Cards?"
	line "What!?! You have almost no cards!"
	line "If you wish to duel me, go collect "
	line "more cards!"
	done

Text06bb: ; 51131 (14:5131)
	text "I am Ken, the Fire Club Master!"
	line "You still need to collect more"
	line "cards if you wish to inherit"
	line "the Legendary Pokémon Cards!"
	line "If you wish to duel me, go collect "
	line "more cards!"
	done

Text06bc: ; 511db (14:51db)
	text "I am Ken, the Fire Club Master!"
	line "So you are collecting Medals"
	line "to inherit the Legendary Cards?"
	line "You will need many cards in order"
	line "to inherit the Legendary Cards."
	line "Hmmm...it seems you have "
	line "collected many cards!"
	line "Then let's begin our Duel!"
	done

Text06bd: ; 512c6 (14:52c6)
	text "I am Ken, the Fire Club Master!"
	line "I see you have collected more cards!"
	line "Then let's begin our duel!"
	done

Text06be: ; 51327 (14:5327)
	text "Would you like to duel Ken?"
	done

Text06bf: ; 51344 (14:5344)
	text "Don't douse my burning "
	line "desire for competition!"
	done

Text06c0: ; 51375 (14:5375)
	text "We'll play with 6 Prizes!"
	line "If you win, I'll give you a Medal!"
	line "Come on!"
	line "Let's start the Duel!"
	done

Text06c1: ; 513d2 (14:53d2)
	text "That was a great Duel!"
	line "Here, let me give you this!!!"
	done

Text06c2: ; 51408 (14:5408)
	text "With this, you're a little closer"
	line "to the Legendary Pokémon Cards!"
	line "Here, take this, too!"
	line "I hope it will help you out!"
	done

Text06c3: ; 5147e (14:547e)
	text "Let's play a heated duel again!"
	line "See you later!!!"
	done

Text06c4: ; 514b0 (14:54b0)
	text "Hmmm...That was no good."
	line "It sure wasn't a hot duel."
	line "I can't give you a Medal for a"
	line "lukewarm performance like that!!!"
	done

Text06c5: ; 51526 (14:5526)
	text "Hmmm...That was a lukewarm "
	line "performance."
	line "Next time we duel,"
	line "Let's heat it up a little more!"
	done

Text06c6: ; 51583 (14:5583)
	text "I am Ken, the Fire Club Master!"
	line "Let us play a heated Duel!"
	done

Text06c7: ; 515bf (14:55bf)
	text "A 1-match duel for 6 Prizes!"
	line "Let us start the Duel!"
	done

Text06c8: ; 515f4 (14:55f4)
	text "Greetings."
	line "Welcome to the Battle Center!"
	line "Would you like to duel a friend?"
	done

Text06c9: ; 5163f (14:563f)
	text "Thank you."
	line "Please come again."
	done

Text06ca: ; 5165e (14:565e)
	text "Thank you for visiting"
	line "the Battle Center."
	done

Text06cb: ; 51689 (14:5689)
	text "Congratulations!"
	line "You have won the duel!"
	line "Thank you."
	line "Please come again."
	done

Text06cc: ; 516d0 (14:56d0)
	text "I'm very sorry..."
	line "Thank you for visiting"
	line "the Battle Center."
	line "Please come again."
	done

Text06cd: ; 51720 (14:5720)
	text "Greetings."
	line "Welcome to the Gift Center!"
	line "What can I do for you?"
	done

Text06ce: ; 5175f (14:575f)
	text "OK, "
	line "To <RAMTEXT>."
	line "Please write in your Diary before"
	line "the transaction."
	done

Text06cf: ; 5179e (14:579e)
	text "Write in your diary?"
	done

Text06d0: ; 517b4 (14:57b4)
	text "We can't complete the transaction"
	line "unless you write in your Diary."
	done

Text06d1: ; 517f7 (14:57f7)
	text "<RAMNAME>"
	line "wrote in the Diary."
	done

Text06d2: ; 5180e (14:580e)
	text "Thank you."
	line "Please come again."
	done

Text06d3: ; 5182d (14:582d)
	text "You sent a card to"
	line "<RAMTEXT>!"
	line "Thank you."
	line "Please come again."
	done

Text06d4: ; 51862 (14:5862)
	text "You sent the configuration for"
	line "the <RAMTEXT> Deck!"
	line "Thank you."
	line "Please come again."
	done

Text06d5: ; 518ac (14:58ac)
	text "You received the configuration for"
	line "the <RAMTEXT> Deck!"
	line "Thank you."
	line "Please come again."
	done

Text06d6: ; 518fa (14:58fa)
	text "Welcome to the Gift Center!"
	line "Here you can give or receive cards"
	line "or deck configurations via the"
	line "Infrared Link."
	line "Unfortunately, our service is"
	line "only available for the"
	line "Game Boy Color."
	line ""
	line "Please enjoy our service with"
	line "a Game Boy Color."
	done

Text06d7: ; 519de (14:59de)
	text "Greetings."
	line "Welcome to the Grass Club."
	line "This Club is for girls who love"
	line "to grow flowers."
	line "The Pokémon cards used here are "
	line "also beautiful flowers."
	done

Text06d8: ; 51a6f (14:5a6f)
	text "All the members of this Club"
	line "are girls."
	line "But I can't beat girls who"
	line "are this tough!"
	line "Huh? You must be <RAMNAME>."
	line "Mitch told me all about you."
	line "Beating you will be much better"
	line "than losing to the girls!"
	done

Text06d9: ; 51b2e (14:5b2e)
	text "Hi, <RAMNAME>."
	line "Would you duel me?"
	done

Text06da: ; 51b49 (14:5b49)
	text "Would you like to duel Michael?"
	done

Text06db: ; 51b6a (14:5b6a)
	text "I'll be here a while, so come"
	line "see me if you change your mind."
	done

Text06dc: ; 51ba9 (14:5ba9)
	text "OK! A single Match for 4 prizes!"
	line "Let's begin!"
	done

Text06dd: ; 51bd8 (14:5bd8)
	text "Tch! I lost!"
	line "I'll go back to my Club and train!"
	line "Oops! Before I go..."
	line "Since it's the rule, take this!"
	done

Text06de: ; 51c3e (14:5c3e)
	text "I'm heading back to the Fighting "
	line "Club. Bye! See you again."
	done

Text06df: ; 51c7b (14:5c7b)
	text "You're still no match for me!"
	line "I'll be here, so come back after"
	line "you train more!"
	done

Text06e0: ; 51ccb (14:5ccb)
	text "Taking care of plants is hard work."
	line "Let me rest for a while..."
	line "Who? The Master of the Grass Club?"
	line "Do you mean Nikki? Nikki's out. "
	line "I need a break."
	line "Do you want to play the Pokémon "
	line "Trading Card Game with me?"
	done

Text06e1: ; 51d9b (14:5d9b)
	text "Caring for plants is hard work."
	line "You think I'm slacking off?"
	line "How rude! I'm only taking a short "
	line "break! "
	line "You need a gentle heart"
	line "to take care of plants!"
	line "Say, would you play the Pokémon"
	line "Trading Card Game with me?"
	done

Text06e2: ; 51e6e (14:5e6e)
	text "Would you like to duel Brittany?"
	done

Text06e3: ; 51e90 (14:5e90)
	text "How boring..."
	done

Text06e4: ; 51e9f (14:5e9f)
	text "OK! A single Match with 4 Prizes."
	line "Let's start!"
	done

Text06e5: ; 51ecf (14:5ecf)
	text "How could I lose?"
	line "How!?!"
	done

Text06e6: ; 51ee9 (14:5ee9)
	text "Humph! It's not much of a break"
	line "if I lose."
	done

Text06e7: ; 51f15 (14:5f15)
	text "Humph! Whenever I lose, I "
	line "get irritated me!"
	done

Text06e8: ; 51f43 (14:5f43)
	text "Oh, by the way, Nikki is visiting"
	line "ISHIHARA's house."
	line "You'll probably find her there."
	done

Text06e9: ; 51f98 (14:5f98)
	text "Thanks!"
	line "That was a nice little break!"
	done

Text06ea: ; 51fbf (14:5fbf)
	text "Thanks for the card!"
	line "I'll take good care of it!"
	done

Text06eb: ; 51ff0 (14:5ff0)
	text "Oddish, Oddish,"
	line "Roly-Poly Oddish!"
	line "Oddish is so Roly-Poly "
	line "and so cute!"
	line "I'll give you this Vileplume"
	line "if you give me an Oddish!"
	done

Text06ec: ; 5206f (14:606f)
	text "Hi!"
	line "Did you bring me an Oddish?"
	line "Will you trade your Oddish"
	line "for my Vileplume?"
	done

Text06ed: ; 520bd (14:60bd)
	text "Would you like to trade?"
	done

Text06ee: ; 520d7 (14:60d7)
	text "I want an Oddish!"
	line "A Roly-Poly Oddish!"
	done

Text06ef: ; 520fe (14:60fe)
	text "Excuse me..."
	line "Do you have an Oddish..."
	done

Text06f0: ; 52125 (14:6125)
	text "Then let's trade!"
	line "Vileplume for an Oddish!"
	line "Oops!"
	line "Your Oddish is in your Deck!"
	line "I can't take that!"
	line "Please trade me some other time."
	done

Text06f1: ; 521a8 (14:61a8)
	text "OK then, let's trade!"
	line "Vileplume for an Oddish."
	done

Text06f2: ; 521d8 (14:61d8)
	text "<RAMNAME> traded an Oddish"
	line "for a Vileplume!"
	done

Text06f3: ; 521fd (14:61fd)
	text "Thanks for the card!"
	line "I'll take good care of it!"
	done

Text06f4: ; 5222e (14:622e)
	text "Pika Pika"
	line "Pika Pika Pikachu!"
	line "Pikachu's cute, but I prefer"
	line "Clefairy!"
	line "I'll give you this Pikachu"
	line "if you give me a Clefairy!"
	done

Text06f5: ; 522a9 (14:62a9)
	text "Hi!"
	line "Did you bring me a Clefairy?"
	line "Would you trade your Clefairy"
	line "for my Pikachu?"
	done

Text06f6: ; 522f9 (14:62f9)
	text "I want a Clefairy!"
	line "Fairy, fairy, fairy!"
	done

Text06f7: ; 52322 (14:6322)
	text "Hi..."
	line "Do you have a Clefairy..."
	done

Text06f8: ; 52343 (14:6343)
	text "Then let's trade!"
	line "Pikachu for a Clefairy!"
	line "Oops!"
	line "Your Clefairy is in your deck!"
	line "I can't take that!"
	line "Please trade me another time!"
	done

Text06f9: ; 523c4 (14:63c4)
	text "OK then let's trade!"
	line "Pikachu for Clefairy."
	done

Text06fa: ; 523f0 (14:63f0)
	text "<RAMNAME> traded a Clefairy"
	line "for a Pikachu!"
	done

Text06fb: ; 52414 (14:6414)
	text "Charizard! Charizard!"
	line "Charizard, light my fire!"
	line "Blastoise is cool,"
	line "But I prefer Charizard!"
	line "I'll give you this Blastoise"
	line "if you give me a Charizard!"
	done

Text06fc: ; 524a9 (14:64a9)
	text "Hi!"
	line "Did you bring me a Charizard?"
	line "Would you trade your Charizard"
	line "for my Blastoise?"
	done

Text06fd: ; 524fd (14:64fd)
	text "I want a Charizard!"
	line "Charizard! Charizard!"
	done

Text06fe: ; 52528 (14:6528)
	text "Excuse me..."
	line "Do you have a Charizard..."
	done

Text06ff: ; 52551 (14:6551)
	text "Then let's trade!"
	line "Blastoise for a Charizard."
	line "Oops!"
	line "Your Charizard is in your Deck!"
	line "I can't take that."
	line "Please trade me some other time!"
	done

Text0700: ; 525d9 (14:65d9)
	text "OK then, let's trade!"
	line "Blastoise for a Charizard!"
	done

Text0701: ; 5260b (14:660b)
	text "<RAMNAME> traded a Charizard"
	line "for a Blastoise!"
	done

Text0702: ; 52632 (14:6632)
	text "I really love"
	line "this Duel Hall."
	line "There's so much greenery and "
	line "so many beautiful flowers."
	done

Text0703: ; 5268a (14:668a)
	text "Only girls are allowed to join"
	line "the Grass Club,"
	line "But we're not accepting "
	line "applications now, anyway. Sorry!"
	done

Text0704: ; 526f4 (14:66f4)
	text "Are you looking for Nikki,"
	line "the Grass Club Master?"
	line "I don't think she's here"
	line "at the Club at the moment."
	line "Would you like to take care"
	line "of the plants?"
	line "We could Duel with cards"
	line "if you prefer..."
	done

Text0705: ; 527b0 (14:67b0)
	text "Hi, would you like to take care of"
	line "the plants with me?"
	line "We could Duel with cards"
	line "if you prefer..."
	done

Text0706: ; 52812 (14:6812)
	text "Would you like to Duel Kristin?"
	done

Text0707: ; 52833 (14:6833)
	text "If you'll excuse me,"
	line "I have plants to look after!"
	done

Text0708: ; 52866 (14:6866)
	text "We'll play a single Match"
	line "with 4 Prizes."
	line "Don't take me lightly"
	line "just because I'm a girl!"
	done

Text0709: ; 528bf (14:68bf)
	text "Oh! I lost."
	line "Well, I guess this is for you..."
	done

Text070a: ; 528ed (14:68ed)
	text "The Pokémon Trading Card Game is "
	line "fun, but so is taking care of trees!"
	done

Text070b: ; 52935 (14:6935)
	text "I believe Nikki is at "
	line "ISHIHARA's house."
	line "Maybe you should go meet her there,"
	line "since she's late getting back."
	done

Text070c: ; 529a2 (14:69a2)
	text "Oh! I won."
	line "I told you not to take me lightly."
	line "Now, if you'll excuse me,"
	line "I have plants to look after!"
	done

Text070d: ; 52a08 (14:6a08)
	text "Master Nikki is out right now."
	line "Where'd she go? That's a secret..."
	line "... Hmmm, let me see..."
	line "If you defeat..."
	line "3 members of the Grass Club,"
	line "I'll tell you where she is."
	line "So, how about it?"
	done

Text070e: ; 52abf (14:6abf)
	text "Oh!"
	line "It's you again."
	line "If you don't mind,"
	line "would you duel with me?"
	done

Text070f: ; 52aff (14:6aff)
	text "Would you like to duel Heather?"
	done

Text0710: ; 52b20 (14:6b20)
	text "I'll be glad to duel you"
	line "any time you like."
	done

Text0711: ; 52b4d (14:6b4d)
	text "Are 4 Prizes OK?"
	line "Let's begin!"
	done

Text0712: ; 52b6c (14:6b6c)
	text "I can't believe"
	line "I could lose..."
	done

Text0713: ; 52b8d (14:6b8d)
	text "I can't believe"
	line "I would lose again..."
	done

Text0714: ; 52bb4 (14:6bb4)
	text "I need to practice more..."
	done

Text0715: ; 52bd0 (14:6bd0)
	text "Nikki is visiting"
	line "ISHIHARA."
	line "Why don't you go see her"
	line "at ISHIHARA's house."
	done

Text0716: ; 52c1b (14:6c1b)
	text "Well, that wasn't much of a Duel!"
	line "I'll be glad to duel you"
	line "any time you like."
	done

Text0717: ; 52c6a (14:6c6a)
	text "I wonder if your last win "
	line "was just luck?"
	line "I will be glad to Duel you"
	line "any time you like."
	done

Text0718: ; 52cc3 (14:6cc3)
	text "I'm Nikki, the Master of the"
	line "Grass Club."
	line "I'm sorry I kept you waiting."
	line "Shall we duel?"
	done

Text0719: ; 52d1a (14:6d1a)
	text "Hello, <RAMNAME>."
	line "Did you come for a Duel?"
	done

Text071a: ; 52d3e (14:6d3e)
	text "Would you like to duel Nikki?"
	done

Text071b: ; 52d5d (14:6d5d)
	text "Oh...You do not wish to duel?"
	line "I'll be here at the Club for "
	line "a while, so please come by "
	line "any time you like."
	done

Text071c: ; 52dc9 (14:6dc9)
	text "Then why don't you stop and "
	line "gaze at our flowers for a while."
	line "Looking at beautiful flowers"
	line "makes you feel so serene."
	done

Text071d: ; 52e3f (14:6e3f)
	text "Shall we play with 6 Prizes?"
	line "Please go easy on me."
	done

Text071e: ; 52e73 (14:6e73)
	text "We'll play with 6 Prizes, as usual."
	line "Please go easy on me."
	done

Text071f: ; 52eae (14:6eae)
	text "Oh, no! I lost!"
	line "Well, you truly are skilled."
	line "Maybe one day you will inherit"
	line "the Legendary Pokémon Cards."
	line "Please allow me to give you"
	line "this Grass Medal."
	done

Text0720: ; 52f46 (14:6f46)
	text "Oh, no!"
	line "How could I lose?"
	line "Please allow me to give you"
	line "this Booster Pack."
	done

Text0721: ; 52f90 (14:6f90)
	text "Please"
	line "take this, too."
	done

Text0722: ; 52fa8 (14:6fa8)
	text "My duel with you was..."
	line "quite fun!"
	line "Please allow me"
	line "to duel you again!"
	done

Text0723: ; 52fef (14:6fef)
	text "I am Nikki, the Grass Club "
	line "Master. What? You were looking "
	line "for me? Oh my..."
	line "I'm very sorry to keep you waiting."
	line "I was doing a little research here."
	line "I assume you would like to Duel?"
	line "I only Duel at the Club."
	line "I'm sorry, but could you meet me"
	line "at the Grass Club?"
	line "I will head back to the Grass Club"
	line "and wait for you there."
	done

Text0724: ; 5312e (14:712e)
	text "Thank you very much, ISHIHARA."
	line "Your books were very helpful!"
	line "You are indeed the Number 1"
	line "Pokémon Trading Card Collector."
	done

Text0725: ; 531a8 (14:71a8)
	text "Oh, no!"
	line "You give me too much credit..."
	line "If you need to research anything,"
	line "please come see me again!"
	done

Text0726: ; 5320c (14:720c)
	text "Thank you very much, ISHIHARA."
	line "If you will excuse me..."
	done

Text0727: ; 53245 (14:7245)
	text "Hello, nice to meet you."
	line "I'm ISHIHARA."
	line "I'm a Pokémon Card Collector."
	line "I love collecting cards."
	line "I see you also love"
	line "Pokémon Cards."
	line "Please come see me again."
	line "We must trade some sometime."
	line "OH!"
	line "If you're playing with the cards,"
	line "Please read some of the books here."
	line "I believe they will be helpful."
	done

Text0728: ; 53368 (14:7368)
	text "Hello, <RAMNAME>."
	line "Welcome."
	line "There aren't any cards I want "
	line "or can trade at the moment."
	line "Let's trade some other time."
	line "If you like, please feel free to"
	line "read some of the books I wrote."
	line "I believe they will be helpful!"
	done

Text0729: ; 53435 (14:7435)
	text "Hello, <RAMNAME>."
	line "I guess you're here because you"
	line "heard the rumor that I'm looking"
	line "for a Clefable..."
	line "I'm thinking about trading"
	line "my Surfing Pikachu for it."
	line "Do you have a Clefable?"
	done

Text072a: ; 534e1 (14:74e1)
	text "Hello, <RAMNAME>."
	line "Are you enjoying the "
	line "Pokémon Trading Card Game?"
	line "By the way, I'm looking for a "
	line "Clefable..."
	line "I'm thinking about trading"
	line "my Surfing Pikachu for it."
	line "Do you have a Clefable?"
	done

Text072b: ; 53596 (14:7596)
	text "Would you like to trade cards?"
	done

Text072c: ; 535b6 (14:75b6)
	text "Alright."
	line "I understand..."
	line "Please trade with me"
	line "some other time..."
	done

Text072d: ; 535f8 (14:75f8)
	text "I appreciate your interest,"
	line "but you don't own that card."
	line "Please trade with me"
	line "some other time..."
	done

Text072e: ; 5365a (14:765a)
	text "Hmm, I see all the Clefable cards "
	line "you own are in your Deck."
	line "I can't very well take a card"
	line "you are using in duels."
	line "Please trade with me"
	line "some other time..."
	done

Text072f: ; 536f6 (14:76f6)
	text "Oh wonderful!"
	line "Then without delay..."
	done

Text0730: ; 5371b (14:771b)
	text "<RAMNAME> traded a Clefable"
	line "for a Surfing Pikachu!"
	done

Text0731: ; 53747 (14:7747)
	text "Thank you for this Clefable."
	line "You've been a great help!"
	done

Text0732: ; 5377f (14:777f)
	text "Hello, <RAMNAME>."
	line "I suppose you're here because you"
	line "heard that I was looking for"
	line "a Ditto this time..."
	line "I'm thinking about trading"
	line "my Flying Pikachu for one."
	line "Do you have a Ditto?"
	done

Text0733: ; 53829 (14:7829)
	text "Hello, <RAMNAME>. "
	line "Are you enjoying the"
	line "Pokémon Trading Card Game?"
	line "I'm looking for a Ditto"
	line "this time..."
	line "I'm thinking about trading"
	line "my Flying Pikachu for one."
	line "Do you have a Ditto?"
	done

Text0734: ; 538d5 (14:78d5)
	text "Hmmm..."
	line "I see you don't have a Ditto card."
	line "I will only trade my"
	line "Flying Pikachu for a Ditto."
	line "Please trade with me"
	line "some other time..."
	done

Text0735: ; 5395a (14:795a)
	text "Hmmm...I see all your Ditto cards"
	line "are in your Deck."
	line "I can't very well take a card"
	line "you are using in duels."
	line "Please trade with me"
	line "some other time..."
	done

Text0736: ; 539ed (14:79ed)
	text "<RAMNAME> traded a Ditto"
	line "for a Flying Pikachu!"
	done

Text0737: ; 53a15 (14:7a15)
	text "Thank you for this Ditto."
	line "You've been a great help!"
	done

Text0738: ; 53a4a (14:7a4a)
	text "Hello, <RAMNAME>."
	line "You're really current on the news!"
	line "I'm looking for a Chansey this "
	line "time! I'm thinking about trading"
	line "my Surfing Pikachu for it."
	line "This one has a different "
	line "illustration than the last one."
	line "Do you have a Chansey?"
	done

Text0739: ; 53b25 (14:7b25)
	text "Hello, <RAMNAME>. "
	line "Are you enjoying the"
	line "Pokémon Trading Card Game?"
	line "I'm looking for a Chansey"
	line "this time! I'm thinking about "
	line "trading my Surfing Pikachu for "
	line "one. This one has a different "
	line "illustration than the last one."
	line "Do you have a Chansey to trade?"
	done

Text073a: ; 53c19 (14:7c19)
	text "Hmmm..."
	line "I see you don't have a Chansey."
	line "Please trade with me"
	line "some other time..."
	done

Text073b: ; 53c6a (14:7c6a)
	text "Hmmm...I see all your Chansey"
	line "are in your Deck."
	line "I can't very well take a card"
	line "you are using in duels."
	line "Please trade with me"
	line "some other time..."
	done

Text073c: ; 53cf9 (14:7cf9)
	text "<RAMNAME> traded a Chansey"
	line "for a Surfing Pikachu!"
	done

Text073d: ; 53d24 (14:7d24)
	text "Thank you for this Chansey."
	line "You've been a great help!"
	done

Text073e: ; 53d5b (14:7d5b)
	text "Oh! Congratulations, <RAMNAME>!"
	line "I heard the news! You've finally "
	line "inherited the Legendary Pokémon "
	line "Cards! Don't worry, I'm not going "
	line "to ask you to trade them to me."
	line "Besides, it would be a waste "
	line "not to use the Legendary Cards "
	line "for dueling. Make sure your "
	line "Duels are worthy of"
	line "the Legendary Pokémon Cards."
	done

	ds $17a