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
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
|
Text026d: ; 3c000 (f:4000)
text "You do not own all cards needed"
line "to build this Deck."
done
Text026e: ; 3c035 (f:4035)
text "Built"
line "<RAMTEXT>"
done
Text026f: ; 3c03e (f:403e)
text "These cards are needed"
line "to build this Deck:"
done
Text0270: ; 3c06a (f:406a)
text "Dismantle these Decks?"
done
Text0271: ; 3c082 (f:4082)
text "Dismantled the Deck."
done
Text0272: ; 3c098 (f:4098)
text "OK if this file is deleted?"
done
Text0273: ; 3c0b5 (f:40b5)
text "Read the Instructions"
done
Text0274: ; 3c0cc (f:40cc)
text "Print this card?"
line " Yes No"
done
Text0275: ; 3c0ef (f:40ef)
text "Please choose a Deck configuration"
line "to print."
done
Text0276: ; 3c11d (f:411d)
text "Print this Deck?"
done
Text0277: ; 3c12f (f:412f)
text "Print the card list?"
line " Yes No"
done
Text0278: ; 3c156 (f:4156)
text "Pokémon Cards"
line "Deck Configuration"
line "Card List"
line "Print Quality"
line "Quit Print"
done
Text0279: ; 3c19b (f:419b)
text "What would you like to print?"
done
Text027a: ; 3c1ba (f:41ba)
text "Please set the contrast:"
line " Light 1 2 3 4 5 Dark"
done
Text027b: ; 3c1f7 (f:41f7)
text "Please make sure to turn"
line "the Game Boy Printer OFF."
done
Text027c: ; 3c22b (f:422b)
text "Procedures for sending cards:"
done
Text027d: ; 3c24a (f:424a)
text "1. Choose the card you wish to send."
line " Press left/right to choose more."
line ""
line "2. Choose all the cards. Then press"
line " the B Button to open the menu."
line ""
line "3. Choose Send to finish"
line " the process."
done
Text027e: ; 3c305 (f:4305)
text "Please read the procedures"
line "for sending cards."
done
Text027f: ; 3c334 (f:4334)
text "Send"
done
Text0280: ; 3c33a (f:433a)
text "Card received"
done
Text0281: ; 3c349 (f:4349)
text "Card to send"
done
Text0282: ; 3c357 (f:4357)
text "Send these cards?"
done
Text0283: ; 3c36a (f:436a)
text "Received these cards"
line "from <RAMTEXT>!"
done
Text0284: ; 3c389 (f:4389)
text "Please choose a Deck "
line "configuration to send."
done
Text0285: ; 3c3b7 (f:43b7)
text "Please choose a Save Slot."
done
Text0286: ; 3c3d3 (f:43d3)
text "Receive configuration."
done
Text0287: ; 3c3eb (f:43eb)
text "Received a deck configuration"
line "from <RAMTEXT>!"
done
Text0288: ; 3c413 (f:4413)
text " Fighting Machine "
done
Text0289: ; 3c429 (f:4429)
text " Rock Machine "
done
Text028a: ; 3c43b (f:443b)
text " Water Machine "
done
Text028b: ; 3c44f (f:444f)
text " Lightning Machine "
done
Text028c: ; 3c467 (f:4467)
text " Grass Machine "
done
Text028d: ; 3c47b (f:447b)
text " Psychic Machine "
done
Text028e: ; 3c491 (f:4491)
text " Science Machine "
done
Text028f: ; 3c4a7 (f:44a7)
text " Fire Machine "
done
Text0290: ; 3c4b9 (f:44b9)
text " Auto Machine "
done
Text0291: ; 3c4cb (f:44cb)
text " Legendary Machine "
done
Text0292: ; 3c4e3 (f:44e3)
text "All Fighting Pokémon"
done
Text0293: ; 3c4f9 (f:44f9)
text "Bench Attack"
done
Text0294: ; 3c507 (f:4507)
text "Battle Contest"
done
Text0295: ; 3c517 (f:4517)
text "Heated Battle"
done
Text0296: ; 3c526 (f:4526)
text "First-Strike"
done
Text0297: ; 3c534 (f:4534)
text "Squeaking Mouse"
done
Text0298: ; 3c545 (f:4545)
text "Great Quake"
done
Text0299: ; 3c552 (f:4552)
text "Bone Attack"
done
Text029a: ; 3c55f (f:455f)
text "Excavation"
done
Text029b: ; 3c56b (f:456b)
text "Rock Crusher"
done
Text029c: ; 3c579 (f:4579)
text "Blue Water"
done
Text029d: ; 3c585 (f:4585)
text "On the Beach"
done
Text029e: ; 3c593 (f:4593)
text "Paralyze!"
done
Text029f: ; 3c59e (f:459e)
text "Energy Removal"
done
Text02a0: ; 3c5ae (f:45ae)
text "Rain Dancer"
done
Text02a1: ; 3c5bb (f:45bb)
text "Cute Pokémon"
done
Text02a2: ; 3c5c9 (f:45c9)
text "Pokémon Flute"
done
Text02a3: ; 3c5d8 (f:45d8)
text "Yellow Flash"
done
Text02a4: ; 3c5e6 (f:45e6)
text "Electric Shock"
done
Text02a5: ; 3c5f6 (f:45f6)
text "Zapping Selfdestruct"
done
Text02a6: ; 3c60c (f:460c)
text "Insect Collection"
done
Text02a7: ; 3c61f (f:461f)
text "Jungle"
done
Text02a8: ; 3c627 (f:4627)
text "Flower Garden"
done
Text02a9: ; 3c636 (f:4636)
text "Kaleidoscope"
done
Text02aa: ; 3c644 (f:4644)
text "Flower Power"
done
Text02ab: ; 3c652 (f:4652)
text "Psychic Power"
done
Text02ac: ; 3c661 (f:4661)
text "Dream Eater Haunter"
done
Text02ad: ; 3c676 (f:4676)
text "Scavenging Slowbro"
done
Text02ae: ; 3c68a (f:468a)
text "Strange Power"
done
Text02af: ; 3c699 (f:4699)
text "Strange Psyshock"
done
Text02b0: ; 3c6ab (f:46ab)
text "Lovely Nidoran"
done
Text02b1: ; 3c6bb (f:46bb)
text "Science Corps"
done
Text02b2: ; 3c6ca (f:46ca)
text "Flyin' Pokémon"
done
Text02b3: ; 3c6da (f:46da)
text "Poison"
done
Text02b4: ; 3c6e2 (f:46e2)
text "Wonders of Science"
done
Text02b5: ; 3c6f6 (f:46f6)
text "Replace 'Em All"
done
Text02b6: ; 3c707 (f:4707)
text "Chari-Saur"
done
Text02b7: ; 3c713 (f:4713)
text "Traffic Light"
done
Text02b8: ; 3c722 (f:4722)
text "Fire Pokémon"
done
Text02b9: ; 3c730 (f:4730)
text "Fire Charge"
done
Text02ba: ; 3c73d (f:473d)
text "Charmander & Friends"
done
Text02bb: ; 3c753 (f:4753)
text "Squirtle & Friends"
done
Text02bc: ; 3c767 (f:4767)
text "Bulbasaur & Friends"
done
Text02bd: ; 3c77c (f:477c)
text "Psychic Machamp"
done
Text02be: ; 3c78d (f:478d)
text "Water Beetle"
done
Text02bf: ; 3c79b (f:479b)
text "Legendary Moltres"
done
Text02c0: ; 3c7ae (f:47ae)
text "Legendary Zapdos"
done
Text02c1: ; 3c7c0 (f:47c0)
text "Legendary Articuno"
done
Text02c2: ; 3c7d4 (f:47d4)
text "Legendary Dragonite"
done
Text02c3: ; 3c7e9 (f:47e9)
text "Mysterious Pokémon"
done
Text02c4: ; 3c7fd (f:47fd)
text "A Deck of Fighting Pokémon:"
line "Feel their Fighting power!"
done
Text02c5: ; 3c835 (f:4835)
text "A Deck of Pokémon that can"
line "attack the Bench."
done
Text02c6: ; 3c863 (f:4863)
text "A Deck which uses Fighting Attacks"
line "such as Slash and Punch."
done
Text02c7: ; 3c8a0 (f:48a0)
text "A powerful Deck with both Fire"
line "and Fighting Pokémon."
done
Text02c8: ; 3c8d6 (f:48d6)
text "A Deck for fast and furious "
line "attacks."
done
Text02c9: ; 3c8fd (f:48fd)
text "A Deck made of Mouse Pokémon."
line "Uses PlusPower to Power up!"
done
Text02ca: ; 3c938 (f:4938)
text "Use Dugtrio's Earthquake"
line "to cause great damage."
done
Text02cb: ; 3c969 (f:4969)
text "A Deck of Cubone and Marowak - "
line "A call for help."
done
Text02cc: ; 3c99b (f:499b)
text "A Deck which creates Pokémon by"
line "evolving Mysterious Fossils."
done
Text02cd: ; 3c9d9 (f:49d9)
text "A Deck of Rock Pokémon. It's"
line "Strong against Lightning Pokémon."
done
Text02ce: ; 3ca19 (f:4a19)
text "A Deck of Water Pokémon: Their"
line "Blue Horror washes over enemies."
done
Text02cf: ; 3ca5a (f:4a5a)
text "A well balanced Deck"
line "of Sandshrew and Water Pokémon!"
done
Text02d0: ; 3ca90 (f:4a90)
text "Paralyze the opponent's Pokémon:"
line "Stop 'em and drop 'em!"
done
Text02d1: ; 3cac9 (f:4ac9)
text "Uses Whirlpool and Hyper Beam to"
line "remove opponents' Energy cards."
done
Text02d2: ; 3cb0b (f:4b0b)
text "Use Rain Dance to attach Water"
line "Energy for powerful Attacks!"
done
Text02d3: ; 3cb48 (f:4b48)
text "A Deck of cute Pokémon such as"
line "Pikachu and Eevee."
done
Text02d4: ; 3cb7b (f:4b7b)
text "Use the Pokémon Flute to revive"
line "opponents' Pokémon and Attack!"
done
Text02d5: ; 3cbbb (f:4bbb)
text "A deck of Pokémon that use Lightning"
line "Energy to zap opponents."
done
Text02d6: ; 3cbfa (f:4bfa)
text "A Deck which Shocks and Paralyzes"
line "opponents with its Attacks."
done
Text02d7: ; 3cc39 (f:4c39)
text "Selfdestruct causes great damage "
line "- even to the opponent's Bench."
done
Text02d8: ; 3cc7c (f:4c7c)
text "A Deck made of Insect Pokémon"
line "Go Bug Power!"
done
Text02d9: ; 3cca9 (f:4ca9)
text "A Deck of Grass Pokémon: There "
line "are many dangers in the Jungle."
done
Text02da: ; 3ccea (f:4cea)
text "A Deck of Flower Pokémon:"
line "Beautiful but Dangerous"
done
Text02db: ; 3cd1d (f:4d1d)
text "Uses Venomoth's Pokémon Power to"
line "change the opponent's Weakness."
done
Text02dc: ; 3cd5f (f:4d5f)
text "A powerful Big Eggsplosion "
line "and Energy Transfer combo!"
done
Text02dd: ; 3cd97 (f:4d97)
text "Use the Psychic power of the"
line "Psychic Pokémon to Attack!"
done
Text02de: ; 3cdd0 (f:4dd0)
text "Uses Haunter's Dream Eater"
line "to cause great damage!"
done
Text02df: ; 3ce03 (f:4e03)
text "Continually draw Trainer "
line "Cards from the Discard Pile!"
done
Text02e0: ; 3ce3b (f:4e3b)
text "Confuse opponents with"
line "mysterious power!"
done
Text02e1: ; 3ce65 (f:4e65)
text "Use Alakazam's Damage Swap"
line "to move damage counters!"
done
Text02e2: ; 3ce9a (f:4e9a)
text "Uses Nidoqueen's Boyfriends to cause"
line "great damage to the opponent."
done
Text02e3: ; 3cede (f:4ede)
text "The march of the Science Corps!"
line "Attack with the power of science!"
done
Text02e4: ; 3cf21 (f:4f21)
text "Pokémon with feathers flock "
line "together! Retreating is easy!"
done
Text02e5: ; 3cf5d (f:4f5d)
text "A Deck that uses Poison to "
line "slowly Knock Out the opponent."
done
Text02e6: ; 3cf99 (f:4f99)
text "Block Pokémon Powers with "
line "Muk and attack with Mewtwo!"
done
Text02e7: ; 3cfd1 (f:4fd1)
text "A Deck that shuffles"
line "the opponent's cards"
done
Text02e8: ; 3cffc (f:4ffc)
text "Attack with Charizard - with "
line "just a few Fire Energy cards!"
done
Text02e9: ; 3d039 (f:5039)
text "Pokémon that can Attack with"
line "Fire, Water or Lightning Energy!"
done
Text02ea: ; 3d078 (f:5078)
text "With Fire Pokémon like Charizard, "
line "Rapidash and Magmar, it's hot!"
done
Text02eb: ; 3d0bb (f:50bb)
text "Desperate attacks Damage your "
line "opponent and you!"
done
Text02ec: ; 3d0ed (f:50ed)
text "A Fire, Grass and Water Deck:"
line "Charmander, Pinsir and Seel"
done
Text02ed: ; 3d128 (f:5128)
text "A Water, Fire, and Lightning Deck:"
line "Squirtle, Charmander and Pikachu"
done
Text02ee: ; 3d16d (f:516d)
text "A Grass, Lightning and Psychic Deck:"
line "Bulbasaur, Pikachu and Abra"
done
Text02ef: ; 3d1af (f:51af)
text "Machamp, Hitmonlee, Hitmonchan"
line "Gengar and Alakazam are furious!"
done
Text02f0: ; 3d1f0 (f:51f0)
text "An Evolution Deck with Weedle, "
line "Nidoran♂ and Bellsprout."
done
Text02f1: ; 3d22a (f:522a)
text "Gather Fire Energy with the"
line "Legendary Moltres!"
done
Text02f2: ; 3d25a (f:525a)
text "Zap opponents with the"
line "Legandary Zapdos!"
done
Text02f3: ; 3d284 (f:5284)
text "Paralyze opponents with the"
line "Legendary Articuno!"
done
Text02f4: ; 3d2b5 (f:52b5)
text "Heal your Pokémon with the"
line "Legendary Dragonite!"
done
Text02f5: ; 3d2e6 (f:52e6)
text "A very special Deck made of"
line "very rare Pokémon cards!"
done
PokemonCardGlossaryText: ; 3d31c (f:531c)
text "Pokémon Card Glossary"
done
GlossaryMenuPage1Text: ; 3d333 (f:5333)
text "Deck Active Pokémon"
line "Discard Pile Bench Pokémon"
line "Hand Prizes "
line "Arena Damage Counter"
line "Bench To next page "
done
GlossaryMenuPage2Text: ; 3d3e0 (f:53e0)
text "Energy Card Pokémon Power "
line "Trainer Card Weakness "
line "Basic Pokémon Resistance"
line "Evolution Card Retreat "
line "Attack To previous page"
done
ChooseWordAndPressAButtonText: ; 3d48f (f:548f)
text "Choose a word and press the"
line "A button."
done
Text02fa: ; 3d4b6 (f:54b6)
text "About the Deck"
done
Text02fb: ; 3d4c6 (f:54c6)
text "About the Discard Pile"
done
Text02fc: ; 3d4de (f:54de)
text "About the Hand"
done
Text02fd: ; 3d4ee (f:54ee)
text "About the Arena"
done
Text02fe: ; 3d4ff (f:54ff)
text "About the Bench"
done
Text02ff: ; 3d510 (f:5510)
text "About the Active Pokémon"
done
Text0300: ; 3d52a (f:552a)
text "About Bench Pokémon"
done
Text0301: ; 3d53f (f:553f)
text "About Prizes"
done
Text0302: ; 3d54d (f:554d)
text "About Damage Counters"
done
Text0303: ; 3d564 (f:5564)
text "About Energy Cards"
done
Text0304: ; 3d578 (f:5578)
text "About Trainer Cards"
done
Text0305: ; 3d58d (f:558d)
text "About Basic Pokémon"
done
Text0306: ; 3d5a2 (f:55a2)
text "About Evolution Cards"
done
Text0307: ; 3d5b9 (f:55b9)
text "About Attacking"
done
Text0308: ; 3d5ca (f:55ca)
text "About Pokémon Power"
done
Text0309: ; 3d5df (f:55df)
text "About Weakness"
done
Text030a: ; 3d5ef (f:55ef)
text "About Resistance"
done
Text030b: ; 3d601 (f:5601)
text "About Retreating"
done
Text030c: ; 3d613 (f:5613)
text "The Deck is the pile of cards"
line "you will be drawing from."
line "At the beginning of your turn, you"
line "will draw 1 card from your Deck."
line "If there are no cards to draw"
line "from the Deck, you lose the game."
done
Text030d: ; 3d6d0 (f:56d0)
text "The pile in which you place used"
line "cards is called the Discard Pile."
line "You can look at both yours and your"
line "opponent's Discard Pile "
line "with the Check command."
done
Text030e: ; 3d769 (f:5769)
text "The cards held by each player"
line "are called a Hand."
line "There is no restriction to the"
line "number of cards in the Hand."
line "You may even have 10 or 20 "
line "cards in your Hand."
done
Text030f: ; 3d807 (f:5807)
text "The place where the Pokémon"
line "that is actively fighting"
line "is placed is called the Arena."
line "The game proceeds by using the"
line "Active Pokémon in the Arena."
done
Text0310: ; 3d899 (f:5899)
text "The Bench is where your Pokémon"
line "that are in play but aren't actively"
line "fighting sit."
line "They're ready to come out and fight"
line "if the Active Pokémon retreats or"
line "is Knocked Out."
line "You can have up to 5 Pokémon on"
line "the Bench."
done
Text0311: ; 3d96e (f:596e)
text "The Active Pokémon is the "
line "Pokémon that is in the Arena."
line "Only Active Pokémon can "
line "attack."
done
Text0312: ; 3d9c9 (f:59c9)
text "The Pokémon that are in play"
line "but aren't actively fighting"
line "are called Bench Pokémon."
line "They're ready to come out and fight"
line "if the Active Pokémon retreats or"
line "is Knocked Out."
line "If the Active Pokémon is Knocked"
line "Out and you don't have a Bench "
line "Pokémon, you lose the game."
done
Text0313: ; 3dad1 (f:5ad1)
text "Prizes are the cards placed to"
line "count the number of the opponent's"
line "Pokémon you Knocked Out."
line "Every time one of your opponent's"
line "Pokémon is Knocked Out, you take 1"
line "of your Prizes into your Hand."
line "When you take all of your Prizes,"
line "you win the game."
done
Text0314: ; 3dbc5 (f:5bc5)
text "A Damage Counter represents the"
line "amount of damage a certain Pokémon"
line "has taken."
line "1 Damage Counter represents"
line "10 HP of damage."
line "If a Pokémon with an HP of 30 has"
line "3 Damage Counters, it has received"
line "30 HP of damage, and its remaining"
line "HP is 0."
done
Text0315: ; 3dcb2 (f:5cb2)
text "Energy Cards are cards that power"
line "your Pokémon, making them able"
line "to Attack."
line "There are 7 types of Energy Cards"
line "[<GRASS> Grass] [<FIRE> Fire]"
line "[<WATER> Water] [<LIGHTNING> Lightning]"
line "[<PSYCHIC> Psychic] [<FIGHTING> Fighting]"
line "and [<COLORLESS> Double Colorless]"
line "You may only play 1 Energy Card"
line "from your Hand per turn."
done
Text0316: ; 3ddbe (f:5dbe)
text "Trainer Cards are support cards."
line "There are many Trainer Cards"
line "with different effects."
line "Trainer Cards are played during"
line "your turn by following the"
line "instructions on the card and then"
line "discarding it."
line "You may use as many Trainer Cards"
line "as you like."
done
Text0317: ; 3deb0 (f:5eb0)
text "Basic Pokémon are cards that "
line "can be played directly from your "
line "hand into the play area. Basic "
line "Pokémon act as the base for "
line "Evolution Cards. Charmander, "
line "Squirtle and Bulbasaur are"
line "examples of Basic Pokémon."
done
Text0318: ; 3df82 (f:5f82)
text "Evolution Cards are cards you"
line "play on top of a Basic Pokémon card"
line "(or sometimes on top of another"
line "Evolution Card) to make it stronger."
line "There are Stage 1 and Stage 2"
line "Evolution Cards."
line "If you do not have a Basic Pokémon"
line "in the Play Area, you cannot place"
line "the Stage 1 Evolution Card, and if"
line "you do not have a Stage 1 Evolution"
line "Card in the Play Area, you cannot"
line "place the Stage 2 Evolution Card."
done
Text0319: ; 3e10a (f:610a)
text "By choosing Attack, your Pokémon"
line "will fight your opponent's Pokémon."
line "Your Pokémon require Energy"
line "in order to Attack."
line "The amount of Energy required"
line "differs according to the Attack."
line "The Active Pokémon is the only"
line "Pokémon that can Attack."
done
Text031a: ; 3e1f7 (f:61f7)
text "Unlike Attacks, Pokémon Power"
line "can be used by Active or Benched"
line "Pokémon. Some Pokémon Power are"
line "effective by just placing the"
line "Pokémon in the Play Area, but for"
line "some you must choose the"
line "command, PKMN Power."
done
Text031b: ; 3e2c5 (f:62c5)
text "Some Pokémon have a Weakness."
line "If a Pokémon has a Weakness, it"
line "takes double damage when attacked by"
line "Pokémon of a certain type."
done
Text031c: ; 3e344 (f:6344)
text "Some Pokémon have Resistance."
line "If a Pokémon has Resistance, it"
line "takes 30 less damage whenever"
line "attacked by Pokémon of"
line "a certain type."
done
Text031d: ; 3e3c8 (f:63c8)
text "By choosing Retreat, you can"
line "switch the Active Pokémon with"
line "a Pokémon on your Bench."
line "Energy is required to Retreat"
line "your Active Pokémon."
line "The amount of Energy required to"
line "Retreat differs for each Pokémon."
line "To Retreat, you must discard"
line "Energy equal to the Retreat Cost"
line "of the retreating Pokémon."
done
Text031e: ; 3e4ed (f:64ed)
text "Modify Deck"
line "Card List"
line "Album List"
line "Deck Save Machine"
line "Printing Menu"
line "Auto Deck Machine"
line "Gift Center"
line "Name Input"
done
Text031f: ; 3e558 (f:6558)
text "Fighting Machine"
line "Rock Machine"
line "Water Machine"
line "Lightning Machine"
line "Grass Machine"
line "Psychic Machine"
line "Science Machine"
line "Fire Machine"
line "Auto Machine"
line "Legendary Machine"
done
Text0320: ; 3e5f1 (f:65f1)
text "Send a Card"
line "Receive a Card"
line "Give Deck Instructions"
line "Receive Deck Instructions"
done
Text0321: ; 3e63e (f:663e)
text "Lecture Duel"
done
Text0322: ; 3e64c (f:664c)
text "First Strike Deck"
line ""
done
Text0323: ; 3e660 (f:6660)
text " Mason Laboratory "
done
Text0324: ; 3e676 (f:6676)
text " ISHIHARA's House "
done
Text0325: ; 3e68c (f:668c)
text " Fighting Club "
done
Text0326: ; 3e6a2 (f:66a2)
text " Rock Club "
done
Text0327: ; 3e6b8 (f:66b8)
text " Water Club "
done
Text0328: ; 3e6ce (f:66ce)
text " Lightning Club "
done
Text0329: ; 3e6e4 (f:66e4)
text " Grass Club "
done
Text032a: ; 3e6fa (f:66fa)
text " Psychic Club "
done
Text032b: ; 3e710 (f:6710)
text " Science Club "
done
Text032c: ; 3e726 (f:6726)
text " Fire Club "
done
Text032d: ; 3e73c (f:673c)
text " Challenge Hall "
done
Text032e: ; 3e752 (f:6752)
text " Pokémon Dome "
done
Text032f: ; 3e768 (f:6768)
text " ??'s House "
done
Text0330: ; 3e77e (f:677e)
text "Mason Laboratory"
done
Text0331: ; 3e790 (f:6790)
text "Mr Ishihara's House"
done
Text0332: ; 3e7a5 (f:67a5)
text "Fighting"
done
Text0333: ; 3e7af (f:67af)
text "Rock"
done
Text0334: ; 3e7b5 (f:67b5)
text "Water"
done
Text0335: ; 3e7bc (f:67bc)
text "Lightning"
done
Text0336: ; 3e7c7 (f:67c7)
text "Grass"
done
Text0337: ; 3e7ce (f:67ce)
text "Psychic"
done
Text0338: ; 3e7d7 (f:67d7)
text "Science"
done
Text0339: ; 3e7e0 (f:67e0)
text "Fire"
done
Text033a: ; 3e7e6 (f:67e6)
text "Challenge Hall"
done
Text033b: ; 3e7f6 (f:67f6)
text "Pokémon Dome"
done
Text033c: ; 3e804 (f:6804)
text "??'s House"
done
Text033d: ; 3e810 (f:6810)
text "Status"
line "Diary"
line "Deck"
line "Card"
line "Config"
line "Exit"
done
Text033e: ; 3e834 (f:6834)
text "Status"
line "Diary"
line "Deck"
line "Card"
line "Config"
line "Debug"
line "Close"
done
Text033f: ; 3e85f (f:685f)
text "Name <RAMNAME>"
done
Text0340: ; 3e867 (f:6867)
text "Album "
half2full
textfw0 "/"
done
Text0341: ; 3e87b (f:687b)
text "Play time "
half2full
textfw3 ":"
done
Text0342: ; 3e892 (f:6892)
text "<RAMNAME>'s diary"
done
Text0343: ; 3e89d (f:689d)
text "Master Medals Won "
done
Text0344: ; 3e8b1 (f:68b1)
text "Would you like to keep a diary?"
done
Text0345: ; 3e8d2 (f:68d2)
text "<RAMNAME>"
line "wrote in the diary."
done
Text0346: ; 3e8e9 (f:68e9)
text "Nothing was recorded "
line "in the diary."
done
Text0347: ; 3e90e (f:690e)
text "Master Medals"
done
Text0348: ; 3e91d (f:691d)
text " Change Settings"
done
Text0349: ; 3e939 (f:6939)
text "Message Speed"
line ""
line " Slow 1 2 3 4 5 Fast"
done
Text034a: ; 3e96c (f:696c)
text "Duel Animation"
line ""
line " Show All Skip Some None"
done
Text034b: ; 3e9a0 (f:69a0)
text " Exit Settings"
done
Text034c: ; 3e9b2 (f:69b2)
text "Duel [<RAMTEXT>]"
line "SELECT [<RAMTEXT>]"
line "Receive many cards"
line "To Pokémon Dome 1"
line "To Pokémon Dome 2"
done
Text034d: ; 3ea10 (f:6a10)
text "Normal Duel"
done
Text034e: ; 3ea1d (f:6a1d)
text "Skip"
done
Text034f: ; 3ea23 (f:6a23)
text "Normal"
done
Text0350: ; 3ea2b (f:6a2b)
text "Freeze Screen"
done
Text0351: ; 3ea3a (f:6a3a)
text "Card Album"
line "Read Mail"
line "Glossary"
line "Print"
line "Shut Down"
done
TurnedPCOnText: ; 3ea69 (f:6a69)
text "<RAMNAME>"
line "turned the PC on!"
done
TurnedPCOffText: ; 3ea7e (f:6a7e)
text "<RAMNAME>"
line "turned the PC off!"
done
Text0354: ; 3ea94 (f:6a94)
text "Send Card"
line "Receive Card"
line "Send Deck Configuration"
line "Receive Deck Configuration"
line "Exit"
done
Text0355: ; 3eae4 (f:6ae4)
text "Send Card"
done
Text0356: ; 3eaef (f:6aef)
text "Receive Card"
done
Text0357: ; 3eafd (f:6afd)
text "Send Deck Configuration"
done
Text0358: ; 3eb16 (f:6b16)
text "Receive Deck Configuration"
done
Text0359: ; 3eb32 (f:6b32)
text " Mail <RAMNAME> "
done
Text035a: ; 3eb3e (f:6b3e)
text "Which mail would you like to read?"
done
Text035b: ; 3eb62 (f:6b62)
text "Mail 0 1 2 3 4 5 6 7 8 9101112131415"
done
Text035c: ; 3eb88 (f:6b88)
textfw0 " ", " ", " ", " ", " "
done
Text035d: ; 3eb8e (f:6b8e)
text "Mail 1"
done
Text035e: ; 3eb96 (f:6b96)
text "Mail 2"
done
Text035f: ; 3eb9e (f:6b9e)
text "Mail 3"
done
Text0360: ; 3eba6 (f:6ba6)
text "Mail 4"
done
Text0361: ; 3ebae (f:6bae)
text "Mail 5"
done
Text0362: ; 3ebb6 (f:6bb6)
text "Mail 6"
done
Text0363: ; 3ebbe (f:6bbe)
text "Mail 7"
done
Text0364: ; 3ebc6 (f:6bc6)
text "Mail 8"
done
Text0365: ; 3ebce (f:6bce)
text "Mail 9"
done
Text0366: ; 3ebd6 (f:6bd6)
text "Mail 10"
done
Text0367: ; 3ebdf (f:6bdf)
text "Mail 11"
done
Text0368: ; 3ebe8 (f:6be8)
text "Mail 12"
done
Text0369: ; 3ebf1 (f:6bf1)
text "Mail 13"
done
Text036a: ; 3ebfa (f:6bfa)
text "Mail 14"
done
Text036b: ; 3ec03 (f:6c03)
text "Mail 15"
done
Text036c: ; 3ec0c (f:6c0c)
text "NEW GAME"
done
Text036d: ; 3ec16 (f:6c16)
text "CARD POP!"
line "CONTINUE FROM DIARY"
line "NEW GAME"
done
Text036e: ; 3ec3e (f:6c3e)
text "CARD POP!"
line "CONTINUE FROM DIARY"
line "New Game"
line "CONTINUE DUEL"
done
Text036f: ; 3ec74 (f:6c74)
text "When you CARD POP! with a friend,"
line "you will each receive a new card!"
done
Text0370: ; 3ecb9 (f:6cb9)
text " <RAMNAME> <RAMTEXT>"
line " Master Medals Won "
half2full
textfw0 "<RAMNUM>"
text ""
line " Album "
half2full
textfw0 "/"
text ""
line " Play time "
half2full
textfw3 ":"
text ""
done
Text0371: ; 3ed14 (f:6d14)
text "Start a New Game."
line ""
done
Text0372: ; 3ed28 (f:6d28)
text "The Game will continue from "
line "the point in the duel at"
line "which the power was turned OFF."
done
Text0373: ; 3ed7f (f:6d7f)
text "Saved data already exists."
line "If you continue, you will lose"
line "all the cards you have collected."
done
Text0374: ; 3eddc (f:6ddc)
text "OK to delete the data?"
done
Text0375: ; 3edf4 (f:6df4)
text "All data was deleted."
done
Text0376: ; 3ee0b (f:6e0b)
text "Data exists from when the power "
line "was turned OFF during a duel."
line "Choose CONTINUE DUEL on the"
line "Main Menu to continue the duel."
line "If you continue now, the heading,"
line "CONTINUE DUEL, will be"
line "deleted, and the game will start"
line "from the point when you last "
line "wrote in the Diary."
line ""
line "Would you like to continue the Game"
line "from the point saved in"
done
Text0377: ; 3ef50 (f:6f50)
text "CONTINUE FROM DIARY?"
done
Text0378: ; 3ef66 (f:6f66)
text "You can access Card Pop! only"
line "with two Game Boy Colors."
line "Please play using a Game Boy Color."
done
Text0379: ; 3efc3 (f:6fc3)
text "<RAMNAME> is crazy about Pokémon"
line "and Pokémon card collecting!"
line "One day,"
line "<RAMNAME> heard a rumor:"
line " ”The Legendary Pokémon Cards..."
line " the extremely rare and powerful "
line " cards held by Pokémon Trading "
line " Card Game's greatest players... "
line " The Grand Masters are searching"
line " for one to inherit the legend!”"
line "Dreaming of inheriting the"
line "Legendary Pokémon Cards,"
line "<RAMNAME> visits the Pokémon"
line "card researcher, Dr. Mason..."
done
Text037a: ; 3f147 (f:7147)
text "POWER ON"
line "DUEL MODE"
line "CONTINUE FROM DIARY"
line "CGB TEST"
line "SGB FRAME"
line "STANDARD BG CHARACTER"
line "LOOK AT SPR"
line "V EFFECT"
line "CREATE BOOSTER PACK"
line "CREDITS"
line "QUIT"
done
Text037b: ; 3f1ce (f:71ce)
text "NORMAL DUEL"
line "SKIP"
done
Text037c: ; 3f1e0 (f:71e0)
text "COLOSSEUM"
line "EVOLUTION"
line "MYSTERY"
line "LABORATORY"
line "Energy"
done
Text037d: ; 3f20f (f:720f)
text "1"
line "2"
line "3"
line "4"
line "5"
line "6"
line "7"
done
Text037e: ; 3f21e (f:721e)
text "1"
line "2"
line "3"
line "4"
line "5"
line "6"
done
Text037f: ; 3f22b (f:722b)
text "1"
line "2"
line "3"
line "4"
line "5"
done
Text0380: ; 3f236 (f:7236)
text "1"
line "2"
line "3"
line "4"
done
Text0381: ; 3f23f (f:723f)
text "A TIME"
line " TO (Change with Start)"
line " A+B: Stop Animation"
line " Select: Exit"
done
Text0382: ; 3f2b3 (f:72b3)
text "Left"
done
Text0383: ; 3f2b9 (f:72b9)
text "Right"
done
Text0384: ; 3f2c0 (f:72c0)
text "SPR_"
done
Text0385: ; 3f2c6 (f:72c6)
text "WIN <RAMNUM> Prizes Duel"
line "LOSE with <RAMTEXT>(<RAMNUM>)"
done
Text0386: ; 3f2f1 (f:72f1)
text " Use <RAMNUM>'s Deck"
done
ReceivedBoosterPackText: ; 3f308 (f:7308)
text "<RAMNAME> received a Booster"
line "Pack: <RAMTEXT>."
done
AndAnotherBoosterPackText: ; 3f327 (f:7327)
text "...And another Booster Pack:"
line "<RAMTEXT>."
done
CheckedCardsInBoosterPackText: ; 3f348 (f:7348)
text "<RAMNAME> checked the cards"
line "in the Booster Pack!!"
done
Text038a: ; 3f373 (f:7373)
text "Substitute screen for"
line "receiving cards."
done
WonTheMedalText: ; 3f39b (f:739b)
text "<RAMNAME>"
line "Won the <RAMTEXT> Medal!"
done
Text038c: ; 3f3af (f:73af)
text "Substitute screen for sending"
line "cards by Link cable."
done
Text038d: ; 3f3e3 (f:73e3)
text "Substitute screen for receiving"
line "cards by Link cable."
done
Text038e: ; 3f419 (f:7419)
text "Substitute screen for sending"
line "a Deck design."
done
Text038f: ; 3f447 (f:7447)
text "Substitute screen for receiving"
line "a Deck design."
done
Text0390: ; 3f477 (f:7477)
text "????"
done
Text0391: ; 3f47d (f:747d)
text "Ending Screen"
line "THE END"
done
Text0392: ; 3f494 (f:7494)
text "Was the data transfer successful?"
done
Text0393: ; 3f4b7 (f:74b7)
text "(Person transferring data to)"
done
Text0394: ; 3f4d6 (f:74d6)
text "(Name of Deck transferring)"
done
Text0395: ; 3f4f3 (f:74f3)
text "<RAMTEXT> <RAMTEXT>"
done
Text0396: ; 3f4f9 (f:74f9)
text "<RAMTEXT> Deck"
done
Text0397: ; 3f501 (f:7501)
text "Fighting Club Member"
done
Text0398: ; 3f517 (f:7517)
text "Rock Club Member"
done
Text0399: ; 3f529 (f:7529)
text "Water Club Member"
done
Text039a: ; 3f53c (f:753c)
text "Lightning Club Member"
done
Text039b: ; 3f553 (f:7553)
text "Grass Club Member"
done
Text039c: ; 3f566 (f:7566)
text "Psychic Club Member"
done
Text039d: ; 3f57b (f:757b)
text "Science Club Member"
done
Text039e: ; 3f590 (f:7590)
text "Fire Club Member"
done
Text039f: ; 3f5a2 (f:75a2)
text "Fighting Club Master"
done
Text03a0: ; 3f5b8 (f:75b8)
text "Rock Club Master"
done
Text03a1: ; 3f5ca (f:75ca)
text "Water Club Master"
done
Text03a2: ; 3f5dd (f:75dd)
text "Lightning Club Master"
done
Text03a3: ; 3f5f4 (f:75f4)
text "Grass Club Master"
done
Text03a4: ; 3f607 (f:7607)
text "Psychic Club Master"
done
Text03a5: ; 3f61c (f:761c)
text "Science Club Master"
done
Text03a6: ; 3f631 (f:7631)
text "Fire Club Master"
done
Text03a7: ; 3f643 (f:7643)
done
Text03a8: ; 3f644 (f:7644)
text "COLOSSEUM"
done
Text03a9: ; 3f64f (f:764f)
text "EVOLUTION"
done
Text03aa: ; 3f65a (f:765a)
text "MYSTERY"
done
Text03ab: ; 3f663 (f:7663)
text "LABORATORY"
done
Text03ac: ; 3f66f (f:766f)
text "Dr. Mason"
done
Text03ad: ; 3f67a (f:767a)
text "Ronald"
done
Text03ae: ; 3f682 (f:7682)
text "ISHIHARA"
done
Text03af: ; 3f68c (f:768c)
text "Imakuni?"
done
Text03b0: ; 3f696 (f:7696)
text "CLERK"
done
Text03b1: ; 3f69d (f:769d)
text "Sam"
done
Text03b2: ; 3f6a2 (f:76a2)
text "TECH"
done
Text03b3: ; 3f6a8 (f:76a8)
text "CLERK"
done
Text03b4: ; 3f6af (f:76af)
text "Chris"
done
Text03b5: ; 3f6b6 (f:76b6)
text "Michael"
done
Text03b6: ; 3f6bf (f:76bf)
text "Jessica"
done
Text03b7: ; 3f6c8 (f:76c8)
text "Mitch"
done
Text03b8: ; 3f6cf (f:76cf)
text "Matthew"
done
Text03b9: ; 3f6d8 (f:76d8)
text "Ryan"
done
Text03ba: ; 3f6de (f:76de)
text "Andrew"
done
Text03bb: ; 3f6e6 (f:76e6)
text "Gene"
done
Text03bc: ; 3f6ec (f:76ec)
text "Sara"
done
Text03bd: ; 3f6f2 (f:76f2)
text "Amanda"
done
Text03be: ; 3f6fa (f:76fa)
text "Joshua"
done
Text03bf: ; 3f702 (f:7702)
text "Amy"
done
Text03c0: ; 3f707 (f:7707)
text "Jennifer"
done
Text03c1: ; 3f711 (f:7711)
text "Nicholas"
done
Text03c2: ; 3f71b (f:771b)
text "Brandon"
done
Text03c3: ; 3f724 (f:7724)
text "Isaac"
done
Text03c4: ; 3f72b (f:772b)
text "Brittany"
done
Text03c5: ; 3f735 (f:7735)
text "Kristin"
done
Text03c6: ; 3f73e (f:773e)
text "Heather"
done
Text03c7: ; 3f747 (f:7747)
text "Nikki"
done
Text03c8: ; 3f74e (f:774e)
text "Robert"
done
Text03c9: ; 3f756 (f:7756)
text "Daniel"
done
Text03ca: ; 3f75e (f:775e)
text "Stephanie"
done
Text03cb: ; 3f769 (f:7769)
text "Murray"
done
Text03cc: ; 3f771 (f:7771)
text "Joseph"
done
Text03cd: ; 3f779 (f:7779)
text "David"
done
Text03ce: ; 3f780 (f:7780)
text "Erik"
done
Text03cf: ; 3f786 (f:7786)
text "Rick"
done
Text03d0: ; 3f78c (f:778c)
text "John"
done
Text03d1: ; 3f792 (f:7792)
text "Adam"
done
Text03d2: ; 3f798 (f:7798)
text "Jonathan"
done
Text03d3: ; 3f7a2 (f:77a2)
text "Ken"
done
Text03d4: ; 3f7a7 (f:77a7)
text "COURTNEY"
done
Text03d5: ; 3f7b1 (f:77b1)
text "Steve"
done
Text03d6: ; 3f7b8 (f:77b8)
text "Jack"
done
Text03d7: ; 3f7be (f:77be)
text "Rod"
done
Text03d8: ; 3f7c3 (f:77c3)
text "Man"
done
Text03d9: ; 3f7c8 (f:77c8)
text "Woman"
done
Text03da: ; 3f7cf (f:77cf)
text "CHAP"
done
Text03db: ; 3f7d5 (f:77d5)
text "GAL"
done
Text03dc: ; 3f7da (f:77da)
text "Lass"
done
Text03dd: ; 3f7e0 (f:77e0)
text "Pappy"
done
Text03de: ; 3f7e7 (f:77e7)
text "Lad"
done
Text03df: ; 3f7ec (f:77ec)
text "HOST"
done
Text03e0: ; 3f7f2 (f:77f2)
text "Specs"
done
Text03e1: ; 3f7f9 (f:77f9)
text "Butch"
done
Text03e2: ; 3f800 (f:7800)
text "Hood"
done
Text03e3: ; 3f806 (f:7806)
text "Champ"
done
Text03e4: ; 3f80d (f:780d)
text "Mania"
done
Text03e5: ; 3f814 (f:7814)
text "Granny"
done
Text03e6: ; 3f81c (f:781c)
text "Guide"
done
Text03e7: ; 3f823 (f:7823)
text "Aaron"
done
Text03e8: ; 3f82a (f:782a)
text "<Lv>60 MEWTWO "
done
Text03e9: ; 3f838 (f:7838)
text "<Lv>8 MEW "
done
Text03ea: ; 3f842 (f:7842)
text "<Lv>34 ARCANINE"
done
Text03eb: ; 3f851 (f:7851)
text "<Lv>16 PIKACHU"
done
Text03ec: ; 3f85f (f:785f)
text "<Lv>13 SURFING PIKACHU"
done
Text03ed: ; 3f875 (f:7875)
text "<Lv>20 ELECTABUZZ"
done
Text03ee: ; 3f886 (f:7886)
text "<Lv>9 SLOWPOKE"
done
Text03ef: ; 3f894 (f:7894)
text "<Lv>12 JIGGLYPUFF"
done
Text03f0: ; 3f8a5 (f:78a5)
text "<Lv>68 ZAPDOS"
done
Text03f1: ; 3f8b2 (f:78b2)
text "<Lv>37 MOLTRES"
done
Text03f2: ; 3f8c0 (f:78c0)
text "<Lv>37 ARTICUNO"
done
Text03f3: ; 3f8cf (f:78cf)
text "<Lv>41 DRAGONITE"
done
Text03f4: ; 3f8df (f:78df)
text "Super Energy Retrieval"
done
Text03f5: ; 3f8f7 (f:78f7)
text "<Lv>12 FLYING PIKACHU"
done
Text03f6: ; 3f90c (f:790c)
text "Lightning & Fire Deck"
done
Text03f7: ; 3f923 (f:7923)
text "Water & Fighting Deck"
done
Text03f8: ; 3f93a (f:793a)
text "Grass & Psychic Deck"
done
Text03f9: ; 3f950 (f:7950)
text "Please select the Deck"
line "you wish to Duel against."
done
Text03fa: ; 3f982 (f:7982)
text "CHARMANDER & Friends Deck"
done
Text03fb: ; 3f99d (f:799d)
text "SQUIRTLE & Friends Deck"
done
Text03fc: ; 3f9b6 (f:79b6)
text "BULBASAUR & Friends Deck"
done
Text03fd: ; 3f9d0 (f:79d0)
text "Please select the Deck you want."
done
Text03fe: ; 3f9f2 (f:79f2)
text "Hi, <RAMNAME>."
line "How can I help you?"
done
Text03ff: ; 3fa0e (f:7a0e)
text "Normal Duel"
line "Practice"
line "Rules"
line "Nothing"
done
Text0400: ; 3fa32 (f:7a32)
text "Energy"
line "Attacking"
line "Retreating"
line "Evolving Pokémon"
line "Using Pokémon Power"
line "Ending Your Turn"
line "Win or Loss of a Duel"
line "Nothing to Ask"
done
Text0401: ; 3faaa (f:7aaa)
text "<RAMNAME>,"
line "It's me, Doctor Mason."
line "Are you getting the hang of"
line "the Pokémon Trading Card Game?"
line "I have some information for you"
line "about Booster Packs. "
line "If you want to collect the same"
line "cards, duel the same person many"
line "times to get a particular Booster"
line "Pack! By doing so, you will be able "
line "to collect the same cards, making it"
line "easier for you to build your Deck."
line "Another method for collecting "
line "cards is to use CARD POP!"
line "When you and a friend use CARD POP!,"
line "you will each receive a new card!"
line "Once you POP! with a certain"
line "friend, you won't be able to POP!"
line "with that friend again, so find "
line "many friends who own the Pokémon "
line "Trading Card Game for Game Boy,"
line "and CARD POP! with them to"
line "get new cards!"
line "Oh, here's something for you..."
done
Text0402: ; 3fd72 (f:7d72)
text "I'll be sending you useful"
line "information by e-mail."
line "I'll also attach a Booster Pack"
line "for you, so check your mail"
line "often."
line "Mason Laboratory"
line " Doctor Mason ;)"
done
Text0403: ; 3fe10 (f:7e10)
text "<RAMNAME>,"
line "It's me, Doctor Mason."
line "I have some information for you"
line "about Mitch's deck - he's "
line "the Master of the Fighting Club."
line "His First-Strike Deck is built"
line "for a quick attack, but it's"
line "weak against Psychic Pokémon!"
line "I suggest you duel him using"
line "the Deck from the Psychic Medal"
line "Deck Machine."
line "Here's a Booster Pack for you..."
done
Text0404: ; 3ff4d (f:7f4d)
text "<RAMNAME>, I know you can do it!"
line "Go win the Fighting Medal!"
line "Mason Laboratory"
line " Doctor Mason ;)"
done
|