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
|
AcidCheckText: ; 38000 (e:4000)
text "Acid check! If Heads,"
line "unable to Retreat during next turn."
done
TransparencyCheckText: ; 3803b (e:403b)
text "Transparency check! If Heads,"
line "do not receive opponent's Attack!"
done
ConfusionCheckDamageText: ; 3807c (e:407c)
text "Confusion check,"
line "If Tails, damage to yourself!"
done
ConfusionCheckRetreatText: ; 380ac (e:40ac)
text "Confusion check!"
line "If Tails, unable to Retreat."
done
PokemonsSleepCheckText: ; 380db (e:40db)
text "<RAMTEXT>'s Sleep check."
done
PoisonedIfHeadsConfusedIfTailsText: ; 380ed (e:40ed)
text "Opponent is Poisoned if Heads,"
line "and Confused if Tails."
done
IfHeadsDoNotReceiveDamageOrEffectText: ; 38124 (e:4124)
text "If Heads, do not receive damage"
line "or effect of opponent's next Attack!"
done
IfHeadsOpponentCannotAttackText: ; 3816a (e:416a)
text "If Heads, opponent cannot Attack"
line "next turn!"
done
AttackUnsuccessfulText: ; 38197 (e:4197)
text "Attack unsuccessful."
done
UnableToRetreatDueToAcidText: ; 381ad (e:41ad)
text "Unable to Retreat due to"
line "the effects of Acid."
done
UnableToUseTrainerDueToHeadacheText: ; 381dc (e:41dc)
text "Unable to use a Trainer card"
line "due to the effects of Headache."
done
UnableToAttackDueToTailWagText: ; 3821a (e:421a)
text "Unable to Attack due to"
line "the effects of Tail wag."
done
UnableToAttackDueToLeerText: ; 3824c (e:424c)
text "Unable to Attack due to"
line "the effects of Leer."
done
UnableToAttackDueToBoneAttackText: ; 3827a (e:427a)
text "Unable to Attack due to"
line "the effects of Bone attack."
done
UnableToUseAttackDueToAmnesiaText: ; 382af (e:42af)
text "Unable to use this Attack"
line "due to the effects of Amnesia."
done
KnockedOutDueToDestinyBondText: ; 382e9 (e:42e9)
text "<RAMTEXT> was Knocked Out"
line "due to the effects of Destiny Bond."
done
ReceivesDamageDueToStrikesBackText: ; 38320 (e:4320)
text "<RAMTEXT> receives <RAMNUM> damage"
line "due to the effects of Strikes Back."
done
UnableToEvolveDueToPrehistoricPowerText: ; 38359 (e:4359)
text "Unable to evolve due to the"
line "effects of Prehistoric Power."
done
NoDamageOrEffectDueToFlyText: ; 38394 (e:4394)
text "No damage or effect on next Attack"
line "due to the effects of Fly."
done
NoDamageOrEffectDueToBarrierText: ; 383d3 (e:43d3)
text "No damage or effect on next Attack"
line "due to the effects of Barrier."
done
NoDamageOrEffectDueToAgilityText: ; 38416 (e:4416)
text "No damage or effect on next Attack"
line "due to the effects of Agility."
done
UnableToUseAttackDueToNShieldText: ; 38459 (e:4459)
text "Unable to use this Attack due to"
line "the effects of N Shield."
done
NoDamageOrEffectDueToNShieldText: ; 38494 (e:4494)
text "No damage or effect on next Attack"
line "due to the effects of N Shield."
done
NoDamageOrEffectDueToTransparencyText: ; 384d8 (e:44d8)
text "No damage or effect on next Attack"
line "due to the effects of Transparency"
done
MetamorphsToText: ; 3851f (e:451f)
text "<RAMTEXT>"
line "metamorphs to <RAMTEXT>."
done
SelectPkmnOnBenchToSwitchWithActiveText: ; 38533 (e:4533)
text "Select a Pokémon on the Bench"
line "to switch with the Active Pokémon."
done
SelectPokemonToPlaceInTheArenaText: ; 38575 (e:4575)
text "Select a Pokémon to place"
line "in the Arena."
done
DuelistIsSelectingPokemonToPlaceInArenaText: ; 3859e (e:459e)
text "<RAMNAME> is selecting a Pokémon"
line "to place in the Arena."
done
ChooseWeaknessYouWishToChangeText: ; 385cf (e:45cf)
text "Choose the Weakness you wish"
line "to change with Conversion 1."
done
ChooseResistanceYouWishToChangeText: ; 3860a (e:460a)
text "Choose the Resistance you wish"
line "to change with Conversion 2."
done
ChoosePokemonWishToColorChangeText: ; 38647 (e:4647)
text "Choose the Pokémon whose color you"
line "wish to change with Color change."
done
ChangedTheWeaknessOfPokemonToColorText: ; 3868d (e:468d)
text "Changed the Weakness of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
ChangedTheResistanceOfPokemonToColorText: ; 386af (e:46af)
text "Changed the Resistance of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
ChangedTheColorOfText: ; 386d3 (e:46d3)
text "Changed the color of"
line ""
text "<RAMTEXT> to <RAMTEXT>."
done
Draw1CardFromTheDeckText: ; 386f2 (e:46f2)
text "Draw 1 card from the Deck."
done
DrawCardsFromTheDeckText: ; 3870e (e:470e)
text "Draw <RAMNUM> card(s) from the Deck."
done
CannotDrawCardBecauseNoCardsInDeckText: ; 3872d (e:472d)
text "Cannot draw a card because"
line "there are no cards in the Deck."
done
ChoosePkmnInTheBenchToGiveDamageText: ; 38769 (e:4769)
text "Choose a Pokémon on the Bench"
line "to give damage to."
done
ChooseUpTo3PkmnOnBenchToGiveDamageText: ; 3879b (e:479b)
text "Choose up to 3 Pokémon on the"
line "Bench to give damage to."
done
Choose1BasicEnergyCardFromDeckText: ; 387d3 (e:47d3)
text "Choose 1 Basic Energy card"
line "from the Deck."
done
ChoosePokemonToAttachEnergyCardText: ; 387fe (e:47fe)
text "Choose a Pokémon to attach"
line "the Energy card to."
done
Text011e: ; 3882e (e:482e)
text "Choose and Discard"
line "1 Fire Energy card."
done
ChooseAndDiscard2FireEnergyCardsText: ; 38856 (e:4856)
text "Choose and Discard"
line "2 Fire Energy cards."
done
DiscardOppDeckAsManyFireEnergyCardsText: ; 3887f (e:487f)
text "Discard from opponent's Deck as many"
line "Fire Energy cards as were discarded."
done
ChooseAndDiscard2EnergyCardsText: ; 388ca (e:48ca)
text "Choose and Discard"
line "2 Energy cards."
done
ChooseAKrabbyFromDeckText: ; 388ee (e:48ee)
text "Choose a Krabby"
line "from the Deck."
done
ChooseDiscardEnergyCardFromOpponentText: ; 3890e (e:490e)
text "Choose and Discard an Energy card"
line "from the opponent's Active Pokémon."
done
ChooseAttackOpponentWillNotBeAbleToUseText: ; 38955 (e:4955)
text "Choose the Attack the opponent will"
line "not be able to use on the next turn."
done
ChooseBasicFightingPokemonFromDeckText: ; 3899f (e:499f)
text "Choose a Basic Fighting Pokémon"
line "from the Deck."
done
ChooseAnOddishFromDeckText: ; 389cf (e:49cf)
text "Choose an Oddish"
line "from the Deck."
done
ChooseAnOddishText: ; 389f0 (e:49f0)
text "Choose an Oddish"
done
ChooseAKrabbyText: ; 38a02 (e:4a02)
text "Choose a Krabby."
done
ChooseBasicEnergyCardText: ; 38a14 (e:4a14)
text "Choose a Basic"
line "Energy card."
done
ChooseNidoranFromDeckText: ; 38a31 (e:4a31)
text "Choose a Nidoran♀ or a"
line "Nidoran♂ from the Deck."
done
ChooseNidoranText: ; 38a61 (e:4a61)
text "Choose a Nidoran♀"
line "or a Nidoran♂."
done
ChooseBasicFightingPokemonText: ; 38a83 (e:4a83)
text "Choose a Basic"
line "Fighting Pokémon"
done
ProcedureForEnergyTransferText: ; 38aa4 (e:4aa4)
text "Procedure for Energy Transfer:"
line ""
line "1. Choose the Pokémon to move Grass"
line " Energy from. Press the A Button."
line ""
line "2. Choose the Pokémon to move the"
line " energy to and press the A Button."
line ""
line "3. Repeat steps 1 and 2."
line ""
line "4. Press the B Button to end."
done
ChooseABellsproutFromDeckText: ; 38b8f (e:4b8f)
text "Choose a Bellsprout"
line "from the Deck."
done
ChooseABellsproutText: ; 38bb3 (e:4bb3)
text "Choose a Bellsprout."
done
ChoosePkmnToRemoveDamageCounterText: ; 38bc9 (e:4bc9)
text "Choose a Pokémon to remove"
line "the Damage counter from."
done
ProcedureForCurseText: ; 38bfe (e:4bfe)
text "Procedure for Curse:"
line ""
line "1. Choose a Pokémon to move the"
line " Damage counter from and press"
line " the A Button."
line ""
line "2. Choose a Pokémon to move the"
line " Damage counter to and press"
line " the A Button."
line ""
line "3. Press the B Button to cancel."
done
Choose2EnergyCardsFromDiscardPileToAttachText: ; 38cda (e:4cda)
text "Choose 2 Energy cards from the"
line "Discard Pileto attach to a Pokémon."
done
Choose2EnergyCardsFromDiscardPileForHandText: ; 38d1e (e:4d1e)
text "Choose 2 Energy cards from the"
line "Discard Pile for your Hand."
done
ChooseAnEnergyCardText: ; 38d5a (e:4d5a)
text "Choose an Energy"
line "card."
done
ProcedureForProphecyText: ; 38d72 (e:4d72)
text "Procedure for Prophecy:"
line ""
line "1. Choose either your Deck"
line " or your opponent's Deck"
line ""
line "2. Choose the cards you wish to"
line " place on top and press the"
line " A Button."
line ""
line "3. Select Yes after you choose"
line " the 3 cards and their order."
line ""
line "4. Press the B Button to cancel."
done
ChooseTheOrderOfTheCardsText: ; 38e70 (e:4e70)
text "Choose the order"
line "of the cards."
done
ProcedureForDamageSwapText: ; 38e90 (e:4e90)
text "Procedure for Damage Swap:"
line ""
line "1. Choose a Pokémon to move a"
line " Damage counter from and press"
line " the A Button."
line ""
line "2. Choose a Pokémon to move the"
line " Damage counter to and press"
line " the A Button."
line ""
line "3. Repeat steps 1 and 2."
line ""
line "4. Press the B Button to end."
line ""
line "5. You cannot move the counter if"
line " it will Knock Out the Pokémon."
done
ProcedureForDevolutionBeamText: ; 38fcc (e:4fcc)
text "Procedure for Devolution Beam."
line ""
line "1. Choose either a Pokémon in your"
line " Play Area or your opponent's"
line " Play Area and press the A Button."
line ""
line "2. Choose the Pokémon to Devolve"
line " and press the A Button."
line ""
line "3. Press the B Button to cancel."
done
ProcedureForStrangeBehaviorText: ; 390b4 (e:50b4)
text "Procedure for Strange Behavior:"
line ""
line "1. Choose the Pokémon with the"
line " Damage counters to move to"
line " Slowbro and press the A Button."
line ""
line "2. Repeat step 1 as many times as"
line " you wish to move the counters."
line ""
line "3. Press the B Button to end."
line ""
line "4. You cannot move the damage if"
line " Slowbro will be Knocked Out."
done
ChooseOppAttackToBeUsedWithMetronomeText: ; 391dc (e:51dc)
text "Choose the opponent's Attack"
line "to be used with Metronome."
done
ThereIsNoInTheDeckText: ; 39215 (e:5215)
text "There is no <RAMTEXT>"
line "in the Deck."
done
WouldYouLikeToCheckTheDeckText: ; 39231 (e:5231)
text "Would you like to check the Deck?"
done
PleaseSelectTheDeckText: ; 39254 (e:5254)
text "Please select the Deck:"
line " Yours Opponent's"
done
PleaseSelectThePlayAreaText: ; 3928c (e:528c)
text "Please select the Play Area:"
line " Yours Opponent's"
done
NidoranMNidoranFText: ; 392c9 (e:52c9)
text "Nidoran♂ Nidoran♀"
done
OddishText: ; 392dc (e:52dc)
text "Oddish"
done
BellsproutText: ; 392e4 (e:52e4)
text "Bellsprout"
done
KrabbyText: ; 392f0 (e:52f0)
text "Krabby"
done
FightingPokemonDeckText: ; 392f8 (e:52f8)
text "Fighting Pokémon"
done
BasicEnergyText: ; 3930a (e:530a)
text "Basic Energy"
done
PeekWasUsedToLookInYourHandText: ; 39318 (e:5318)
text "Peek was used to look at the"
line "<RAMTEXT> in your Hand."
done
CardPeekWasUsedOnText: ; 39346 (e:5346)
text "Card Peek was used on"
done
PokemonAndAllAttachedCardsReturnedToHandText: ; 3935d (e:535d)
text "<RAMTEXT> and all attached"
line "cards were returned to the Hand."
done
WasChosenForTheEffectOfAmnesiaText: ; 39392 (e:5392)
text "<RAMTEXT> was chosen"
line "for the effect of Amnesia."
done
BasicPokemonWasPlacedOnEachBenchText: ; 393bb (e:53bb)
text "A Basic Pokémon was placed"
line "on each Bench."
done
WasUnsuccessfulText: ; 393e6 (e:53e6)
text "<RAMTEXT>'s"
line "<RAMTEXT> was unsuccessful."
done
ThereWasNoEffectFromTxRam2Text: ; 393ff (e:53ff)
text "There was no effect"
line "from <RAMTEXT>."
done
TheEnergyCardFromPlayAreaWasMovedText: ; 3941c (e:541c)
text "The Energy card from <RAMNAME>'s"
line "Play Area was moved."
done
DrewFireEnergyFromTheHandText: ; 3944b (e:544b)
text "<RAMNAME> drew"
line "<RAMNUM> Fire Energy from the Hand."
done
ThePkmnCardsInHandAndDeckWereShuffledText: ; 39470 (e:5470)
text "The Pokémon cards in <RAMNAME>'s"
line "Hand and Deck were shuffled"
done
Text014f: ; 394a6 (e:54a6)
text "Remove Damage counter each time the"
line "A Button is pressed. B Button quits."
done
ChoosePokemonToRemoveDamageCounterFromText: ; 394f0 (e:54f0)
text "Choose a Pokémon to remove"
line "the Damage counter from."
done
ChooseCardToDiscardFromHandText: ; 39525 (e:5525)
text "Choose the card to Discard"
line "from the Hand."
done
ChoosePokemonToRemoveEnergyFromText: ; 39550 (e:5550)
text "Choose a Pokémon to remove"
line "Energy from and choose the Energy."
done
Choose2BasicEnergyCardsFromDiscardPileText: ; 3958f (e:558f)
text "Choose 2 Basic Energy cards"
line "from the Discard Pile."
done
Text0154: ; 395c3 (e:55c3)
text "Choose a Pokémon and press the A"
line "Button to remove Damage counters."
done
Choose2CardsFromHandToDiscardText: ; 39607 (e:5607)
text "Choose 2 cards from the Hand"
line "to Discard."
done
Choose2HandCardsFromHandToReturnToDeckText: ; 39631 (e:5631)
text "Choose 2 cards from the Hand"
line "to return to the Deck."
done
ChooseCardToPlaceInHandText: ; 39666 (e:5666)
text "Choose a card to"
line "place in the Hand."
done
ChoosePokemonToAttachDefenderToText: ; 3968b (e:568b)
text "Choose a Pokémon to"
line "attach Defender to."
done
Text0159: ; 396b4 (e:56b4)
text "You can draw up to <RAMNUM> cards."
line "A to Draw, B to End."
done
ChoosePokemonToReturnToTheDeckText: ; 396e6 (e:56e6)
text "Choose a Pokémon to"
line "return to the Deck."
done
ChoosePokemonToPlaceInPlayText: ; 3970f (e:570f)
text "Choose a Pokémon to"
line "place in play."
done
ChooseBasicPokemonToEvolveText: ; 39733 (e:5733)
text "Choose a Basic Pokémon"
line "to Evolve."
done
ChoosePokemonToScoopUpText: ; 39756 (e:5756)
text "Choose a Pokémon to"
line "Scoop Up."
done
ChooseCardFromYourHandToSwitchText: ; 39775 (e:5775)
text "Choose a card from your"
line "Hand to Switch."
done
ChooseCardToSwitchText: ; 3979e (e:579e)
text "Choose a card to"
line "Switch."
done
ChooseBasicOrEvolutionPokemonCardFromDeckText: ; 397b8 (e:57b8)
text "Choose a Basic or Evolution"
line "Pokémon card from the Deck."
done
ChoosePokemonCardText: ; 397f1 (e:57f1)
text "Choose"
line "a Pokémon card."
done
RearrangeThe5CardsAtTopOfDeckText: ; 39809 (e:5809)
text "Rearrange the 5 cards at"
line "the top of the Deck."
done
PleaseCheckTheOpponentsHandText: ; 39838 (e:5838)
text "Please check the opponent's"
line "Hand."
done
EvolutionCardText: ; 3985b (e:585b)
text "Evolution card"
done
CardWasChosenText: ; 3986b (e:586b)
text "<RAMTEXT> was chosen."
done
ChooseBasicPokemonToPlaceOnBenchText: ; 3987a (e:587a)
text "Choose a Basic Pokémon"
line "to place on the Bench."
done
ChooseEvolutionCardAndPressAButtonToDevolveText: ; 398a9 (e:58a9)
text "Choose an Evolution card and"
line "press the A Button to Devolve 1."
done
ChoosePokemonInYourAreaThenPokemonInYourOppText: ; 398e8 (e:58e8)
text "Choose a Pokémon in your Area, then"
line "a Pokémon in your opponent's."
done
ChooseUpTo4FromDiscardPileText: ; 3992b (e:592b)
text "Choose up to 4"
line "from the Discard Pile."
done
ChooseAPokemonToSwitchWithActivePokemonText: ; 39952 (e:5952)
text "Choose a Pokémon to switch"
line "with the Active Pokémon."
done
PokemonAndAllAttachedCardsWereReturnedToDeckText: ; 39987 (e:5987)
text "<RAMTEXT> and all attached"
line "cards were returned to the Deck."
done
PokemonWasReturnedFromArenaToHandText: ; 399bc (e:59bc)
text "<RAMTEXT> was returned"
line "from the Arena to the Hand."
done
PokemonWasReturnedFromBenchToHandText: ; 399e8 (e:59e8)
text "<RAMTEXT> was returned"
line "from the Bench to the Hand."
done
PokemonWasReturnedToDeckText: ; 39a14 (e:5a14)
text "<RAMTEXT> was returned"
line "to the Deck."
done
WasPlacedInTheHandText: ; 39a31 (e:5a31)
text "<RAMTEXT> was placed"
line "in the Hand."
done
TheCardYouReceivedText: ; 39a4c (e:5a4c)
text "The card you received"
done
YouReceivedTheseCardsText: ; 39a63 (e:5a63)
text "You received these cards:"
done
ChooseTheCardToPutBackText: ; 39a7e (e:5a7e)
text "Choose the card"
line "to put back."
done
ChooseTheCardToDiscardText: ; 39a9c (e:5a9c)
text "Choose the card"
line "to Discard."
done
DiscardedCardsFromDeckText: ; 39ab9 (e:5ab9)
text "Discarded <RAMNUM> cards"
line "from <RAMNAME>'s Deck."
done
Text0175: ; 39adb (e:5adb)
text "Discarded <RAMTEXT>"
line "from the Hand."
done
NoneCameText: ; 39af7 (e:5af7)
text "None came!"
done
CameToTheBenchText: ; 39b03 (e:5b03)
text "<RAMTEXT>"
line "came to the Bench!"
done
DuelistHasNoCardsInHandText: ; 39b19 (e:5b19)
text "<RAMNAME> has"
line "no cards in Hand!"
done
PokemonHealedDamageText: ; 39b32 (e:5b32)
text "<RAMTEXT> healed"
line "<RAMNUM> damage!"
done
PokemonDevolvedToText: ; 39b46 (e:5b46)
text "<RAMTEXT> devolved"
line "to <RAMTEXT>!"
done
ThereWasNoFireEnergyText: ; 39b58 (e:5b58)
text "There was no Fire Energy."
done
YouCanSelectMoreCardsQuitText: ; 39b73 (e:5b73)
text "You can select <RAMNUM> more cards. Quit?"
done
ThereWasNoEffectText: ; 39b97 (e:5b97)
text "There was no effect!"
done
ThereWasNoEffectFromToxicText: ; 39bad (e:5bad)
text "There was no effect"
line "from Toxic"
done
ThereWasNoEffectFromPoisonText: ; 39bcd (e:5bcd)
text "There was no effect"
line "from Poison."
done
ThereWasNoEffectFromSleepText: ; 39bef (e:5bef)
text "There was no effect"
line "from Sleep."
done
ThereWasNoEffectFromParalysisText: ; 39c10 (e:5c10)
text "There was no effect"
line "from Paralysis."
done
ThereWasNoEffectFromConfusionText: ; 39c35 (e:5c35)
text "There was no effect"
line "from Confusion."
done
ThereWasNoEffectFromPoisonConfusionText: ; 39c5a (e:5c5a)
text "There was no effet"
line "from Poison, Confusion."
done
ExchangedCardsInDuelistsHandText: ; 39c86 (e:5c86)
text "Exchanged the cards"
line "in <RAMNAME>'s Hand."
done
Text0185: ; 39ca8 (e:5ca8)
text "Battle Center"
done
PrizesCardsText: ; 39cb7 (e:5cb7)
text "Prizes"
line " cards"
done
ChooseTheNumberOfPrizesText: ; 39ccc (e:5ccc)
text "Choose the number"
line "of Prizes."
done
PleaseWaitDecidingNumberOfPrizesText: ; 39cea (e:5cea)
text "Please wait..."
line "Deciding the number of Prizes..."
done
BeginAPrizeDuelWithText: ; 39d1b (e:5d1b)
text "Begin a <RAMNUM>-Prize Duel"
line "with <RAMNAME>."
done
AreYouBothReadyToCardPopText: ; 39d39 (e:5d39)
text "Are you both ready"
line "to Card Pop! ?"
done
ThePopWasntSuccessfulText: ; 39d5c (e:5d5c)
text "The Pop! wasn't successful."
line "Please try again."
done
CannotCardPopWithFriendPreviouslyPoppedWithText: ; 39d8b (e:5d8b)
text "You cannot Card Pop! with a"
line "friend you previously Popped! with."
done
PositionGameBoyColorsAndPressAButtonText: ; 39dcc (e:5dcc)
text "Position the Game Boy Colors"
line "and press the A Button."
done
ReceivedThroughCardPopText: ; 39e02 (e:5e02)
text "Received <RAMTEXT>"
line "through Card Pop!"
done
ReceivedCardText: ; 39e20 (e:5e20)
text "<RAMNAME> received"
line "a <RAMTEXT>!"
done
ReceivedPromotionalCardText: ; 39e31 (e:5e31)
text "<RAMNAME> received a Promotional"
line "card <RAMTEXT>!"
done
ReceivedLegendaryCardText: ; 39e53 (e:5e53)
text "<RAMNAME> received the Legendary"
line "card <RAMTEXT>!"
done
ReceivedPromotionalFlyingPikachuText: ; 39e75 (e:5e75)
text "<RAMNAME> received a Promotinal"
line "card Flyin' Pikachu!"
done
ReceivedPromotionalSurfingPikachuText: ; 39ea3 (e:5ea3)
text "<RAMNAME> received a Promotional"
line "card Surfin' Pikachu!"
done
Text0194: ; 39ed3 (e:5ed3)
text "Received a Flareon!!!"
line "Looked at the card list!"
done
NowPrintingPleaseWaitText: ; 39f03 (e:5f03)
text "Now printing."
line "Please wait..."
done
BoosterPackText: ; 39f21 (e:5f21)
text "Booster Pack"
done
WouldYouLikeToTryAgainText: ; 39f2f (e:5f2f)
text "Would you like to try again?"
done
Text0198: ; 39f4d (e:5f4d)
text "Sent to <RAMNAME>."
done
Text0199: ; 39f59 (e:5f59)
text "Received from <RAMNAME>."
done
SendingACardText: ; 39f6b (e:5f6b)
text "Sending a card...Move the Game"
line "Boys close and press the A Button."
done
ReceivingACardText: ; 39fae (e:5fae)
text "Receiving a card...Move"
line "the Game Boys close together."
done
SendingADeckConfigurationText: ; 39fe5 (e:5fe5)
text "Sending a Deck Configuration..."
line "Position the Game Boys and press A."
done
ReceivingDeckConfigurationText: ; 3a02a (e:602a)
text "Receiving Deck configuration..."
line "Position the Game Boys and press A."
done
CardTransferWasntSuccessful1Text: ; 3a06f (e:606f)
text "Card transfer wasn't successful."
done
CardTransferWasntSuccessful2Text: ; 3a091 (e:6091)
text "Card transfer wasn't successful"
done
DeckConfigurationTransferWasntSuccessful1Text: ; 3a0b2 (e:60b2)
text "Deck configuration transfer"
line "wasn't successful"
done
DeckConfigurationTransferWasntSuccessful2Text: ; 3a0e1 (e:60e1)
text "Deck configuration transfer"
line "wasn't successful."
done
NowPrintingText: ; 3a111 (e:6111)
text "Now printing..."
done
DrMasonText: ; 3a122 (e:6122)
text "Dr. Mason"
done
DrawSevenCardsPracticeDuelText: ; 3a12d (e:612d)
text "Draw 7 cards,"
line ""
line "and get ready for the battle!"
line "Choose your Active Pokémon."
line "You can only choose Basic Pokémon"
line "as your Active Pokémon,"
line "so you can choose either Goldeen"
line "or Staryu."
line "For our practice duel,"
line "choose Goldeen."
done
ChooseGoldeenPracticeDuelText: ; 3a204 (e:6204)
text "Choose Goldeen for this"
line "practice duel, OK?"
done
PutPokemonOnBenchPracticeDuelText: ; 3a230 (e:6230)
text "Next, put your Pokémon on your"
line "Bench."
line "You can switch Benched Pokémon"
line "with your Active Pokémon."
line "Again, only Basic Pokémon can be"
line "placed on your Bench."
line "Choose Staryu from your hand and"
line "put it there."
done
ChooseStaryuPracticeDuelText: ; 3a2f6 (e:62f6)
text "Choose Staryu for this"
line "practice duel, OK?"
done
PressBToFinishPracticeDuelText: ; 3a321 (e:6321)
text "When you have no Pokémon to put on"
line "your Bench, press the B Button to"
line "finish."
done
Turn1Instr1PracticeDuelText: ; 3a36f (e:636f)
text "1. Choose Hand from the Menu."
line " Select a Water Energy card."
done
Turn1Instr2PracticeDuelText: ; 3a3ad (e:63ad)
text "2. Attach a Water Energy card to"
line " your Active Pokémon, Goldeen."
done
Turn1Instr3PracticeDuelText: ; 3a3f0 (e:63f0)
text "3. Choose Attack from the Menu"
line " and select Horn Attack."
done
Turn2Instr1PracticeDuelText: ; 3a42b (e:642b)
text "1. Evolve Goldeen by"
line " attaching Seaking to it."
done
Turn2Instr2PracticeDuelText: ; 3a45d (e:645d)
text "2. Attach a Psychic Energy card"
line " to the evolved Seaking."
done
Turn2Instr3PracticeDuelText: ; 3a499 (e:6499)
text "3. Choose Attack and select"
line " Waterfall to attack your"
line " opponent."
done
Turn3Instr1PracticeDuelText: ; 3a4df (e:64df)
text "1. Attach a Water Energy card to"
line " your Benched Staryu."
done
Turn3Instr2PracticeDuelText: ; 3a519 (e:6519)
text "2. Choose Attack and attack your"
line " opponent with Horn Attack."
done
Turn3Instr3PracticeDuelText: ; 3a559 (e:6559)
done
Turn4Instr1PracticeDuelText: ; 3a55a (e:655a)
text "1. Take Drowzee from your hand"
line " and put it on your Bench."
done
Turn4Instr2PracticeDuelText: ; 3a597 (e:6597)
text "2. Attach a Water Energy card to"
line " your Benched Drowzee."
done
Turn4Instr3PracticeDuelText: ; 3a5d2 (e:65d2)
text "3. Choose Seaking and attack your"
line " opponent with Waterfall."
done
Turn5Instr1PracticeDuelText: ; 3a611 (e:6611)
text "1. Choose a Water Energy card from"
line " your hand and attach it to"
line " Staryu."
done
Turn5Instr2PracticeDuelText: ; 3a65e (e:665e)
text "2. Choose Staryu and attack your"
line " opponent with Slap."
done
Turn6Instr1PracticeDuelText: ; 3a697 (e:6697)
text "1. Choose the Potion card in your"
line " hand to recover Staryu's HP."
done
Turn6Instr2PracticeDuelText: ; 3a6da (e:66da)
text "2. Attach a Water Energy card to"
line " Staryu."
done
Turn6Instr3PracticeDuelText: ; 3a707 (e:6707)
text "3. Choose Staryu and attack your"
line " opponent with Slap."
done
Turn7Instr1PracticeDuelText: ; 3a740 (e:6740)
text "1. Evolve Staryu by"
line " attaching Starmie to it."
done
Turn7Instr2PracticeDuelText: ; 3a771 (e:6771)
text "2. Select the evolved Starmie and"
line " attack your opponent with Star "
line " Freeze."
done
Turn8Instr1PracticeDuelText: ; 3a7c2 (e:67c2)
text "1. Select Starmie and attack your"
line " opponent with Star Freeze."
done
Turn8Instr2PracticeDuelText: ; 3a803 (e:6803)
text "2. You Knocked Machop Out."
line " Now you can draw a Prize."
done
SamTurn4Instr1PracticeDuelText: ; 3a83c (e:683c)
text "1. Your Seaking was Knocked Out."
line " Choose your Benched Staryu"
line " and press the A Button to set"
line " it as your Active Pokémon."
done
SamTurn4Instr2PracticeDuelText: ; 3a8bb (e:68bb)
text "2. You can check Pokémon data by"
line " pressing SELECT."
done
Turn1DrMason1PracticeDuelText: ; 3a8f1 (e:68f1)
text "To use the attack command, you need"
line "to attach Energy cards to your"
line "Pokémon."
line ""
line "Choose Cards from the Menu, and"
line "select a Water Energy card."
done
Turn1DrMason2PracticeDuelText: ; 3a97b (e:697b)
text "Next, choose your Active Pokémon,"
line "Goldeen, and press the A Button."
line "Then the Water Energy card will"
line "be attached to Goldeen."
done
Turn1DrMason3PracticeDuelText: ; 3a9f7 (e:69f7)
text "Finally, attack your opponent by"
line "selecting an attack command."
line "Choose Attack from the Menu, and"
line "select Horn Attack."
done
Turn2DrMason1PracticeDuelText: ; 3aa6b (e:6a6b)
text "Your Goldeen's gonna get Knocked"
line "Out. Let's evolve it!"
line "Choose Seaking from your hand and"
line "attach it to Goldeen to"
line "Evolve it."
line "Its HP increases from 40 to 70."
done
Turn2DrMason2PracticeDuelText: ; 3ab08 (e:6b08)
text "Your Seaking doesn't have enough"
line "Energy to use Waterfall."
line "You need to attach a Psychic Energy"
line "card to Seaking."
line "<COLORLESS> means any Energy card."
line "Now you can use Waterfall."
line "Keep the Water Energy card for"
line "other Pokémon."
done
Turn2DrMason3PracticeDuelText: ; 3abdb (e:6bdb)
text "Now let's attack your opponent with"
line "Seaking's Waterfall!"
done
Turn3DrMason1PracticeDuelText: ; 3ac15 (e:6c15)
text "Seaking's got enough Energy, so"
line "you don't need to attach any more."
line "Attach Energy cards to your Benched"
line "Pokémon to get them ready for"
line "battle."
line ""
line "Attach a Water Energy card to your"
line "Benched Staryu."
done
Turn3DrMason2PracticeDuelText: ; 3acd7 (e:6cd7)
text "Next, select the attack command."
line "Machop has 10 HP left."
line "Seaking's Horn Attack will be"
line "enough to Knock out Machop."
line "Now, choose Seaking's"
line "Horn Attack."
done
Turn3DrMason3PracticeDuelText: ; 3ad6d (e:6d6d)
text "Now Machop's HP is 0 and it is"
line "Knocked Out."
line "When you Knock Out the Defending"
line "Pokémon, you can pick up a"
line "Prize."
done
Turn4DrMason1PracticeDuelText: ; 3addd (e:6ddd)
text "When all your Pokémon are Knocked"
line "Out and there are no Pokémon on your"
line "Bench, you lose the game."
line ""
line "Put Drowzee, the Basic Pokémon"
line "you just drew, on your Bench."
done
Turn4DrMason2PracticeDuelText: ; 3ae7d (e:6e7d)
text "Attach a Water Energy card to"
line "Drowzee to get it ready to"
line "attack."
done
Turn4DrMason3PracticeDuelText: ; 3aebf (e:6ebf)
text "Choose your Active Seaking and"
line "attack your opponent with"
line "Waterfall."
done
Turn5DrMason1PracticeDuelText: ; 3af04 (e:6f04)
text "Staryu evolves into Starmie!"
line ""
line "Let's get Staryu ready to use"
line "Starmie's attack command when it"
line "evolves to Starmie."
line ""
line "Choose the Water Energy card from"
line "your hand and attach it to Staryu."
done
Turn5DrMason2PracticeDuelText: ; 3afbc (e:6fbc)
text "Attack your opponent with Staryu's"
line "Slap."
done
Turn6DrMason1PracticeDuelText: ; 3afe6 (e:6fe6)
text "Now, recover Staryu with a Trainer"
line "card."
line "Choose Potion from your hand."
done
Turn6DrMason2PracticeDuelText: ; 3b02e (e:702e)
text "Now let's get ready to evolve"
line "it to Starmie."
line "Also, attach a Water Energy card to"
line "Staryu."
done
Turn6DrMason3PracticeDuelText: ; 3b088 (e:7088)
text "Attack your opponent with Staryu's"
line "Slap to end your turn."
done
Turn7DrMason1PracticeDuelText: ; 3b0c3 (e:70c3)
text "Now you have finally drawn a"
line "Starmie card!"
line "Choose Starmie from your hand and"
line "use it to evolve Staryu."
done
Turn7DrMason2PracticeDuelText: ; 3b12a (e:712a)
text "You've already attached enough"
line "Energy to use Star Freeze."
line "Attack your opponent with"
line "Starmie's Star Freeze."
done
Turn8DrMason1PracticeDuelText: ; 3b196 (e:7196)
text "Now Machop has only 10 HP left."
line "Let's finish the battle!"
line "Attack with Starmie's Star Freeze."
line ""
done
Turn8DrMason2PracticeDuelText: ; 3b1f4 (e:71f4)
text "You've Knocked Out your opponent!"
line ""
line "Pick up the last Prize."
line ""
text "<RAMNAME> is the winner!"
done
SamTurn4DrMason1PracticeDuelText: ; 3b242 (e:7242)
text "Choose a Benched Pokémon to replace"
line "your Knocked Out Pokémon."
line "You now have Drowzee and Staryu"
line "on your Bench."
line "Choose Staryu as the Active Pokémon"
line "for this practice duel."
done
SamTurn4DrMason2PracticeDuelText: ; 3b2ec (e:72ec)
text "Here, press SELECT to"
line "check Pokémon data."
line "It is important to know your cards"
line "and the status of your Pokémon."
done
SelectStaryuPracticeDuelText: ; 3b35a (e:735a)
text "Select Staryu for this practice,"
line "OK?"
done
LetsPlayTheGamePracticeDuelText: ; 3b380 (e:7380)
text "Now, let's play the game!"
done
NeedPracticeAgainPracticeDuelText: ; 3b39b (e:739b)
text "Do you need to practice again?"
done
FollowMyGuidancePracticeDuelText: ; 3b3bb (e:73bb)
text "This is Practice Mode, so"
line "please follow my guidance."
line "Do it again."
done
PlayersTurnPracticeDuelText: ; 3b3fe (e:73fe)
text "<RAMNAME>'s turn <RAMNUM>"
done
ReplaceDueToKnockoutPracticeDuelText: ; 3b40a (e:740a)
text " Replace due to Knockout "
done
Text01dd: ; 3b425 (e:7425)
text "Dummy"
done
PracticePlayerDeckName: ; 3b42c (e:742c)
text "Practice Player"
done
SamsPracticeDeckName: ; 3b43d (e:743d)
text "Sam's Practice"
done
CharmanderAndFriendsDeckName: ; 3b44d (e:744d)
text "Charmander & Friends"
done
CharmanderExtraDeckName: ; 3b463 (e:7463)
text "Charmander extra"
done
SquirtleAndFriendsDeckName: ; 3b475 (e:7475)
text "Squirtle & Friends"
done
SquirtleExtraDeckName: ; 3b489 (e:7489)
text "Squirtle extra"
done
BulbasaurAndFriendsDeckName: ; 3b499 (e:7499)
text "Bulbasaur & Friends"
done
BulbasaurExtraDeckName: ; 3b4ae (e:74ae)
text "Bulbasaur extra"
done
FirstStrikeDeckName: ; 3b4bf (e:74bf)
text "First-Strike"
done
RockCrusherDeckName: ; 3b4cd (e:74cd)
text "Rock Crusher"
done
GoGoRainDanceDeckName: ; 3b4db (e:74db)
text "Go Go Rain Dance"
done
ZappingSelfdestructDeckName: ; 3b4ed (e:74ed)
text "Zapping Selfdestruct"
done
FlowerPowerDeckName: ; 3b503 (e:7503)
text "Flower Power"
done
StrangePsyshockDeckName: ; 3b511 (e:7511)
text "Strange Psyshock"
done
WondersofScienceDeckName: ; 3b523 (e:7523)
text "Wonders of Science"
done
FireChargeDeckName: ; 3b537 (e:7537)
text "Fire Charge"
done
LegendaryMoltresDeckName: ; 3b544 (e:7544)
text "Legendary Moltres"
done
LegendaryZapdosDeckName: ; 3b557 (e:7557)
text "Legendary Zapdos"
done
LegendaryArticunoDeckName: ; 3b569 (e:7569)
text "Legendary Articuno"
done
LegendaryDragoniteDeckName: ; 3b57d (e:757d)
text "Legendary Dragonite"
done
ImRonaldDeckName: ; 3b592 (e:7592)
text "I'm Ronald!"
done
PowerfulRonaldDeckName: ; 3b59f (e:759f)
text "Powerful Ronald"
done
InvincibleRonaldDeckName: ; 3b5b0 (e:75b0)
text "Invincible Ronald"
done
LegendaryRonaldDeckName: ; 3b5c3 (e:75c3)
text "Legendary Ronald"
done
WaterfrontPokemonDeckName: ; 3b5d5 (e:75d5)
text "Waterfront Pokémon"
done
LonelyFriendsDeckName: ; 3b5e9 (e:75e9)
text "Lonely Friends"
done
SoundoftheWavesDeckName: ; 3b5f9 (e:75f9)
text "Sound of the Waves"
done
AngerDeckName: ; 3b60d (e:760d)
text "Anger"
done
FlamethrowerDeckName: ; 3b614 (e:7614)
text "Flamethrower"
done
ReshuffleDeckName: ; 3b622 (e:7622)
text "Reshuffle"
done
ExcavationDeckName: ; 3b62d (e:762d)
text "Excavation"
done
BlisteringPokemonDeckName: ; 3b639 (e:7639)
text "Blistering Pokémon"
done
HardPokemonDeckName: ; 3b64d (e:764d)
text "Hard Pokémon"
done
EtceteraDeckName: ; 3b65b (e:765b)
text "Etcetera"
done
FlowerGardenDeckName: ; 3b665 (e:7665)
text "Flower Garden"
done
KaleidoscopeDeckName: ; 3b674 (e:7674)
text "Kaleidoscope"
done
MusclesforBrainsDeckName: ; 3b682 (e:7682)
text "Muscles for Brains"
done
HeatedBattleDeckName: ; 3b696 (e:7696)
text "Heated Battle"
done
LovetoBattleDeckName: ; 3b6a5 (e:76a5)
text "Love to Battle"
done
PikachuDeckName: ; 3b6b5 (e:76b5)
text "Pikachu"
done
BoomBoomSelfdestructDeckName: ; 3b6be (e:76be)
text "Boom Boom Selfdestruct"
done
PowerGeneratorDeckName: ; 3b6d6 (e:76d6)
text "Power Generator"
done
GhostDeckName: ; 3b6e7 (e:76e7)
text "Ghost"
done
NapTimeDeckName: ; 3b6ee (e:76ee)
text "Nap Time"
done
StrangePowerDeckName: ; 3b6f8 (e:76f8)
text "Strange Power"
done
FlyinPokemonDeckName: ; 3b707 (e:7707)
text "Flyin' Pokémon"
done
LovelyNidoranDeckName: ; 3b717 (e:7717)
text "Lovely Nidoran"
done
PoisonDeckName: ; 3b727 (e:7727)
text "Poison"
done
ImakuniDeckName: ; 3b72f (e:772f)
text "Imakuni?"
done
LightningAndFireDeckName: ; 3b739 (e:7739)
text "Lightning & Fire"
done
WaterAndFightingDeckName: ; 3b74b (e:774b)
text "Water & Fighting"
done
GrassAndPsychicDeckName: ; 3b75d (e:775d)
text "Grass & Psychic"
done
RetreatCostText: ; 3b76e (e:776e)
text "Retreat Cost"
done
Text0213: ; 3b77c (e:777c)
textfw3 "SWITCH TO UPPER"
done
Text0214: ; 3b799 (e:7799)
textfw3 "SWITCH TO LOWER"
done
FeetText: ; 3b7b6 (e:77b6)
textfw3 "'"
done
InchesText: ; 3b7b9 (e:77b9)
textfw3 "”"
done
YourDiscardPileText: ; 3b7bc (e:77bc)
text "Your Discard Pile"
done
OpponentsDiscardPileText: ; 3b7cf (e:77cf)
text "Opponent's Discard Pile"
done
DeckText: ; 3b7e8 (e:77e8)
text "Deck"
done
Text021a: ; 3b7ee (e:77ee)
hiragana "ひらがナ"
done
Text021b: ; 3b7f4 (e:77f4)
textfw0 "カタカナ"
done
Text021c: ; 3b7f9 (e:77f9)
textfw3 "ABC"
done
EndText: ; 3b800 (e:7800)
text "End"
done
WhatIsYourNameText: ; 3b805 (e:7805)
text "What is your name?"
done
Text021f: ; 3b819 (e:7819)
hiragana "あ か さ た な は ま や ら"
line ""
textfw0 "い き し ち に ひ み ゆ り"
line ""
textfw0 "う く す つ ぬ ふ む よ る"
line ""
textfw0 "え け せ て ね へ め わ れ"
line ""
textfw0 "お こ そ と の ほ も ん ろ"
line ""
textfw0 "ゃ ゅ ょ っ を "
textfw3 "゛ ゜ "
textfw0 "—"
done
Text0220: ; 3b886 (e:7886)
textfw0 "ア カ サ タ ナ ハ マ ヤ ラ"
line ""
textfw0 "イ キ シ チ ニ ヒ ミ ユ リ"
line ""
textfw0 "ウ ク ス ツ ヌ フ ム ヨ ル"
line ""
textfw0 "エ ケ セ テ ネ ヘ メ ワ レ"
line ""
textfw0 "オ コ ソ ト ノ ホ モ ン ロ"
line ""
textfw0 "ャ ュ ョ ッ ヲ "
textfw3 "゛ ゜ "
textfw0 "—"
done
PlayerNameKeyboardText: ; 3b8f2 (e:78f2)
textfw3 "A B C D E F G H I"
line ""
textfw3 "J K L M N O P Q R"
line ""
textfw3 "S T U V W X Y Z "
textfw0 "!"
line ""
textfw0 "? "
textfw3 "& "
textfw0 "+ - ・ 0 1 2 3"
line ""
textfw0 "4 5 6 7 8 9 ", "<No>", " ", "<Lv>", " "
line ""
textfw0 " "
done
DeckNameKeyboardText: ; 3b97b (e:797b)
textfw3 "A B C D E F G H I"
line ""
textfw3 "J K L M N O P Q R"
line ""
textfw3 "S T U V W X Y Z "
textfw0 "!"
line ""
textfw0 "? "
textfw3 "& "
textfw0 "+ - "
textfw3 "'"
textfw0 " 0 1 2 3"
line ""
textfw0 "4 5 6 7 8 9 "
line ""
textfw0 " "
done
NewDeckText: ; 3ba03 (e:7a03)
text "New deck"
done
PleaseSelectDeckText: ; 3ba0d (e:7a0d)
text "Please select deck."
done
ModifyDeckText: ; 3ba22 (e:7a22)
text "Modify deck"
done
ChangeNameText: ; 3ba2f (e:7a2f)
text "Change name"
done
SelectDeckText: ; 3ba3c (e:7a3c)
text "Select deck"
done
CancelText: ; 3ba49 (e:7a49)
text "Cancel"
done
Text0229: ; 3ba51 (e:7a51)
text "as"
done
ChosenAsDuelingDeckText: ; 3ba55 (e:7a55)
text "<RAMTEXT> was"
line "chosen as the dueling deck!"
done
Deck1Text: ; 3ba78 (e:7a78)
textfw0 "1・"
done
Deck2Text: ; 3ba7b (e:7a7b)
textfw0 "2・"
done
Deck3Text: ; 3ba7e (e:7a7e)
textfw0 "3・"
done
Deck4Text: ; 3ba81 (e:7a81)
textfw0 "4・"
done
ThereIsNoDeckHereText: ; 3ba84 (e:7a84)
text "There is no Deck here!"
done
ConfirmText: ; 3ba9c (e:7a9c)
text "Confirm"
done
DismantleText: ; 3baa5 (e:7aa5)
text "Dismantle"
done
ModifyText: ; 3bab0 (e:7ab0)
text "Modify"
done
SaveText: ; 3bab8 (e:7ab8)
text "Save"
done
NameText: ; 3babe (e:7abe)
text "Name"
done
ThereIsOnly1DeckSoCannotBeDismantledText: ; 3bac4 (e:7ac4)
text "There is only 1 Deck, so this"
line "Deck cannot be dismantled."
done
ThereAreNoBasicPokemonInThisDeckText: ; 3bafe (e:7afe)
text "There are no Basic Pokémon"
line "in this Deck!"
done
YouMustIncludeABasicPokemonInTheDeckText: ; 3bb28 (e:7b28)
text "You must include a Basic Pokémon"
line "in the Deck!"
done
ThisIsntA60CardDeckText: ; 3bb57 (e:7b57)
text "This isn't a 60-card deck!"
done
TheDeckMustInclude60CardsText: ; 3bb73 (e:7b73)
text "The Deck must include 60 cards!"
done
ReturnToOriginalConfigurationText: ; 3bb94 (e:7b94)
text "Return to original configuration?"
done
SaveThisDeckText: ; 3bbb7 (e:7bb7)
text "Save this Deck?"
done
QuitModifyingTheDeckText: ; 3bbc8 (e:7bc8)
text "Quit modifying the Deck?"
done
DismantleThisDeckText: ; 3bbe2 (e:7be2)
text "Dismantle this Deck?"
done
NoCardsChosenText: ; 3bbf8 (e:7bf8)
text "No cards chosen."
done
YourPokemonText: ; 3bc0a (e:7c0a)
text "Your Pokémon"
done
YourDiscardPileText2: ; 3bc18 (e:7c18)
text "Your Discard Pile"
done
YourHandText: ; 3bc2b (e:7c2b)
text "Your Hand"
done
Text0242: ; 3bc36 (e:7c36)
text "To Your Play Area"
done
OpponentsPokemonText: ; 3bc49 (e:7c49)
text "Opponent's Pokémon"
done
OpponentsDiscardPileText2: ; 3bc5d (e:7c5d)
text "Opponent's Discard Pile"
done
OpponentsHandText: ; 3bc76 (e:7c76)
text "Opponent Hand"
done
Text0246: ; 3bc85 (e:7c85)
text "To Opponent's Play Area"
done
DuelistsPlayAreaText: ; 3bc9e (e:7c9e)
text "<RAMNAME>'s Play Area"
done
YourPlayAreaText: ; 3bcad (e:7cad)
text "Your Play Area"
done
OppPlayAreaText: ; 3bcbd (e:7cbd)
text "Opp. Play Area"
done
InPlayAreaText: ; 3bccd (e:7ccd)
text "In Play Area"
done
GlossaryText: ; 3bcdb (e:7cdb)
text "Glossary"
done
WhichCardWouldYouLikeToSeeText: ; 3bce5 (e:7ce5)
text "Which card would you like to see?"
done
PleaseChooseAPrizeText: ; 3bd08 (e:7d08)
text "Please choose a Prize."
done
HandText_2: ; 3bd20 (e:7d20)
text "Hand"
done
DuelistHandText_2: ; 3bd26 (e:7d26)
text "<RAMNAME>'s Hand"
done
DuelistDiscardPileText: ; 3bd30 (e:7d30)
text "<RAMNAME>'s Discard Pile"
done
EmptyLineText: ; 3bd42 (e:7d42)
textfw0 " "
textfw0 " "
done
BoosterPackTitleText: ; 3bd55 (e:7d55)
text "Booster Pack"
done
Item1ColosseumText: ; 3bd63 (e:7d63)
text "1. Colosseum"
done
Item2EvolutionText: ; 3bd71 (e:7d71)
text "2. Evolution"
done
Item3MysteryText: ; 3bd7f (e:7d7f)
text "3. Mystery"
done
Item4LaboratoryText: ; 3bd8b (e:7d8b)
text "4. Laboratory"
done
Item5PromotionalCardText: ; 3bd9a (e:7d9a)
text "5. Promotional Card"
done
ViewWhichCardFileText: ; 3bdaf (e:7daf)
text "View which Card File?"
done
EmptyPromotionalCardText: ; 3bdc6 (e:7dc6)
textfw0 "----------"
done
SCardsText: ; 3bdd1 (e:7dd1)
text "'s Cards"
done
EmptyDeckNameText: ; 3bddb (e:7ddb)
textfw0 "--------------"
done
DeckSaveMachineText: ; 3bdea (e:7dea)
text " Deck Save Machine "
done
SaveADeckText: ; 3be02 (e:7e02)
text "Save a Deck"
done
DeleteADeckText: ; 3be0f (e:7e0f)
text "Delete a Deck"
done
BuildADeckText: ; 3be1e (e:7e1e)
text "Build a Deck"
done
ChooseADeckToSaveText: ; 3be2c (e:7e2c)
text "Choose a Deck to Save."
done
Text0261: ; 3be44 (e:7e44)
text "You may only Save 60 Decks."
line "Please Delete a Deck first."
done
Text0262: ; 3be7d (e:7e7d)
text "for"
done
SavedTheConfigurationForText: ; 3be82 (e:7e82)
text "Saved the configuration for"
line ""
text "<RAMTEXT>! "
done
Text0264: ; 3bea4 (e:7ea4)
text "No Deck is saved."
done
Text0265: ; 3beb7 (e:7eb7)
text "Please choose a Deck "
line "configuration to delete."
done
DoYouReallyWishToDeleteText: ; 3bee7 (e:7ee7)
text "Do you really wish to delete?"
done
DeletedTheConfigurationForText: ; 3bf06 (e:7f06)
text "Deleted the configuration for"
line ""
text "<RAMTEXT>."
done
YouMayOnlyCarry4DecksText: ; 3bf29 (e:7f29)
text "You may only carry 4 Decks!"
done
ChooseADeckToDismantleText: ; 3bf46 (e:7f46)
text "Choose a deck to dismantle."
done
DismantledDeckText: ; 3bf63 (e:7f63)
text "Dismantled"
line ""
text "<RAMTEXT>."
done
Text026b: ; 3bf73 (e:7f73)
text "Please choose the Deck"
line "you wish to Build."
done
ThisDeckCanOnlyBeBuiltIfYouDismantleText: ; 3bf9e (e:7f9e)
text "This Deck can only be built if"
line "you dismantle another Deck."
done
ds $26
|