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
|
HorseaDescription: ; 5c000 (17:4000)
text "Known to shoot down flying bugs with"
line "precision blasts of ink from the"
line "surface of the water."
done
SeadraName: ; 5c05d (17:405d)
text "Seadra"
done
SeadrasWaterGunDescription: ; 5c065 (17:4065)
text "Does 20 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Seadra but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
SeadrasAgilityDescription: ; 5c111 (17:4111)
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all "
line "effects of attacks, including"
line "damage, done to Seadra."
done
SeadraDescription: ; 5c18e (17:418e)
text "Capable of swimming backward by"
line "rapidly flapping its wing-like"
line "pectoral fins and stout tail."
done
GoldeenName: ; 5c1ec (17:41ec)
text "Goldeen"
done
HornAttackName: ; 5c1f5 (17:41f5)
text "Horn Attack"
done
GoldfishName: ; 5c202 (17:4202)
text "Goldfish"
done
GoldeenDescription: ; 5c20c (17:420c)
text "Its tail fin billows like an elegant"
line "ballroom dress, giving it the"
line "nickname ”Water Queen.”"
done
SeakingName: ; 5c268 (17:4268)
text "Seaking"
done
WaterfallName: ; 5c271 (17:4271)
text "Waterfall"
done
SeakingDescription: ; 5c27c (17:427c)
text "In the autumn spawning season, they"
line "can be seen swimming powerfully up"
line "rivers and creeks."
done
StaryuName: ; 5c2d7 (17:42d7)
text "Staryu"
done
SlapName: ; 5c2df (17:42df)
text "Slap"
done
StarshapeName: ; 5c2e5 (17:42e5)
text "Starshape"
done
StaryuDescription: ; 5c2f0 (17:42f0)
text "An enigmatic Pokémon that can"
line "effortlessly regenerate any"
line "appendage it loses in battle."
done
StarmieName: ; 5c349 (17:4349)
text "Starmie"
done
RecoverName: ; 5c352 (17:4352)
text "Recover"
done
StarmiesRecoverDescription: ; 5c35b (17:435b)
text "Discard 1 <WATER> Energy card attached to"
line "Starmie in order to use this attack."
line "Remove all damage counters from"
line "Starmie."
done
StarFreezeName: ; 5c3cf (17:43cf)
text "Star Freeze"
done
MysteriousName: ; 5c3dc (17:43dc)
text "Mysterious"
done
StarmieDescription: ; 5c3e8 (17:43e8)
text "Its central core glows with the"
line "seven colors of the rainbow. Some"
line "people value this core as a gem."
done
MagikarpName: ; 5c44c (17:444c)
text "Magikarp"
done
TackleName: ; 5c456 (17:4456)
text "Tackle"
done
MagikarpsFlailDescription: ; 5c45e (17:445e)
text "Does 10 damage times the number of"
line "damage counters on Magikarp."
done
FishName: ; 5c49f (17:449f)
text "Fish"
done
MagikarpDescription: ; 5c4a5 (17:44a5)
text "In the distant past, it was stronger"
line "than its horribly weak descendants"
line "that exist today."
done
GyaradosName: ; 5c500 (17:4500)
text "Gyarados"
done
DragonRageName: ; 5c50a (17:450a)
text "Dragon Rage"
done
BubblebeamName: ; 5c517 (17:4517)
text "Bubblebeam"
done
AtrociousName: ; 5c523 (17:4523)
text "Atrocious"
done
GyaradosDescription: ; 5c52e (17:452e)
text "Rarely seen in the wild. Huge and"
line "vicious, it is capable of destroying"
line "entire cities in a rage."
done
LaprasName: ; 5c58f (17:458f)
text "Lapras"
done
LaprasWaterGunDescription: ; 5c597 (17:4597)
text "Does 10 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Lapras but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
TransportName: ; 5c643 (17:4643)
text "Transport"
done
LaprasDescription: ; 5c64e (17:464e)
text "A Pokémon that has been overhunted"
line "almost to extinction. It can ferry"
line "people across water."
done
VaporeonName: ; 5c6aa (17:46aa)
text "Vaporeon"
done
FocusEnergyName: ; 5c6b4 (17:46b4)
text "Focus Energy"
done
FocusEnergyDescription: ; 5c6c2 (17:46c2)
text "During your next turn, Vaporeon's"
line "Bite attack's base damage is"
line "doubled."
done
BubbleJetName: ; 5c70b (17:470b)
text "Bubble Jet"
done
Vaporeon1Description: ; 5c717 (17:4717)
text "Its cell structure is similar to"
line "water molecules. It will melt away"
line "and become invisible in water."
done
VaporeonsWaterGunDescription: ; 5c77b (17:477b)
text "Does 30 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Vaporeon but not used to pay for"
line "this attack's Energy cost. You can't"
line "add more than 20 damage in this way."
done
Vaporeon2Description: ; 5c829 (17:4829)
text "Lives close to water. Its long tail"
line "is ridged with a fin that is often"
line "mistaken for a mermaid's."
done
OmanyteName: ; 5c88b (17:488b)
text "Omanyte"
done
MysteriousFossilName: ; 5c894 (17:4894)
text "Mysterious Fossil"
done
ClairvoyanceName: ; 5c8a7 (17:48a7)
text "Clairvoyance"
done
ClairvoyanceDescription: ; 5c8b5 (17:48b5)
text "Your opponent plays with his or her"
line "hand face up. This power stops"
line "working while Omanyte is Asleep,"
line "Confused, or Paralyzed."
done
OmanytesWaterGunDescription: ; 5c932 (17:4932)
text "Does 10 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Omanyte but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
SpiralName: ; 5c9df (17:49df)
text "Spiral"
done
OmanyteDescription: ; 5c9e7 (17:49e7)
text "Although long extinct, in rare"
line "cases, it can be genetically"
line "resurrected from fossils."
done
OmastarName: ; 5ca3e (17:4a3e)
text "Omastar"
done
OmastarsWaterGunDescription: ; 5ca47 (17:4a47)
text "Does 20 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Omastar but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
OmastarDescription: ; 5caf4 (17:4af4)
text "A prehistoric Pokémon that died out"
line "when its heavy shell made it"
line "impossible for it to catch prey."
done
ArticunoName: ; 5cb57 (17:4b57)
text "Articuno"
done
FreezeDryName: ; 5cb61 (17:4b61)
text "Freeze Dry"
done
BlizzardName: ; 5cb6d (17:4b6d)
text "Blizzard"
done
BlizzardDescription: ; 5cb77 (17:4b77)
text "Flip a coin. If heads, this attack"
line "does 10 damage to each of your"
line "opponent's Benched Pokémon."
line "If tails, this attack does 10 damage"
line "to each of your own Benched Pokémon."
line "(Don't apply Weakness and Resistance"
line "for Benched Pokémon.)"
done
FreezeName: ; 5cc5b (17:4c5b)
text "Freeze"
done
Articuno1Description: ; 5cc63 (17:4c63)
text "A legendary bird Pokémon that is"
line "said to appear to doomed people who"
line "are lost in icy mountains."
done
QuickfreezeName: ; 5ccc4 (17:4cc4)
text "Quickfreeze"
done
QuickfreezeDescription: ; 5ccd1 (17:4cd1)
text "When you put Articuno into play"
line "during your turn (not during"
line "set-up), flip a coin. If heads, the"
line "Defending Pokémon is now Paralyzed."
done
IceBreathName: ; 5cd57 (17:4d57)
text "Ice Breath"
done
IceBreathDescription: ; 5cd63 (17:4d63)
text "Does 40 damage to 1 of your"
line "opponent's Pokémon chosen at random."
line "Don't apply Weakness and Resistance"
line "for this attack. (Any other effects"
line "that would happen after applying"
line "Weakness and Resistance still"
line "happen.)"
done
Articuno2Description: ; 5ce35 (17:4e35)
text "A legendary bird Pokémon. It freezes"
line "water that is contained in winter"
line "air and makes it snow."
done
PikachuName: ; 5ce94 (17:4e94)
text "Pikachu"
done
GnawName: ; 5ce9d (17:4e9d)
text "Gnaw"
done
ThunderJoltName: ; 5cea3 (17:4ea3)
text "Thunder Jolt"
done
ThunderJoltDescription: ; 5ceb1 (17:4eb1)
text "Flip a coin. If tails, Pikachu does"
line "10 damage to itself."
done
MouseName: ; 5ceeb (17:4eeb)
text "Mouse"
done
Pikachu1Description: ; 5cef2 (17:4ef2)
text "When several of these Pokémon"
line "gather, their electricity can cause"
line "lightning storms."
done
SparkName: ; 5cf47 (17:4f47)
text "Spark"
done
SparkDescription: ; 5cf4e (17:4f4e)
text "If your opponent has any Benched"
line "Pokémon, choose 1 of them and this"
line "attack does 10 damage to it. (Don't"
line "apply Weakness and Resistance for"
line "Benched Pokémon.)"
done
Pikachu2Description: ; 5cfeb (17:4feb)
text "When several of these Pokémon"
line "gather, their electricity can build"
line "and cause lightning storms."
done
GrowlName: ; 5d04a (17:504a)
text "Growl"
done
GrowlDescription: ; 5d051 (17:5051)
text "If the Defending Pokémon attacks"
line "Pikachu during your opponent's next"
line "turn, any damage done by the attack"
line "is reduced by 10 (after applying"
line "Weakness and Resistance). "
line "(Benching or evolving either Pokémon"
line "ends this effect.)"
done
ThundershockName: ; 5d12f (17:512f)
text "Thundershock"
done
Pikachu3Description: ; 5d13d (17:513d)
text "When several of these Pokémon"
line "gather, their electricity could"
line "build and cause lightning storms."
done
FlyingPikachuName: ; 5d19e (17:519e)
text "Flying Pikachu"
done
FlyName: ; 5d1ae (17:51ae)
text "Fly"
done
FlyDescription: ; 5d1b3 (17:51b3)
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all"
line "effects of attacks, including"
line "damage, done to Flying Pikachu. "
line "If tails, this attack does nothing "
line "(not even damage)."
done
FlyingPikachuDescription: ; 5d26f (17:526f)
text "By learning how to fly, Pikachu"
line "overcame its weakness to Fighting"
line "Pokémon."
done
SurfingPikachuName: ; 5d2bb (17:52bb)
text "Surfing Pikachu"
done
SurfName: ; 5d2cc (17:52cc)
text "Surf"
done
SurfingPikachuDescription: ; 5d2d2 (17:52d2)
text "One summer, a group of Pikachu"
line "was found riding the waves at the"
line "local beach."
done
RaichuName: ; 5d321 (17:5321)
text "Raichu"
done
RaichusAgilityDescription: ; 5d329 (17:5329)
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all"
line "effects of attacks, including"
line "damage, done to Raichu."
done
ThunderName: ; 5d3a5 (17:53a5)
text "Thunder"
done
RaichusThunderDescription: ; 5d3ae (17:53ae)
text "Flip a coin. If tails, Raichu does"
line "30 damage to itself."
done
Raichu1Description: ; 5d3e7 (17:53e7)
text "Its long tail serves as a ground to"
line "protect itself from its own"
line "high-voltage power."
done
GigashockName: ; 5d43c (17:543c)
text "Gigashock"
done
GigashockDescription: ; 5d447 (17:5447)
text "Choose 3 of your opponent's Benched"
line "Pokémon and this attack does 10"
line "damage to each of them. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) If your opponent has fewer"
line "than 3 Benched Pokémon, do the"
line "damage to each of them."
done
Raichu2Description: ; 5d531 (17:5531)
text "Its long tail serves as a ground to"
line "protect itself from its own high"
line "voltage power."
done
MagnemiteName: ; 5d586 (17:5586)
text "Magnemite"
done
ThunderWaveName: ; 5d591 (17:5591)
text "Thunder Wave"
done
MagnemitesSelfdestructDescription: ; 5d59f (17:559f)
text "Does 10 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) Magnemite does 40 damage"
line "to itself."
done
MagnetName: ; 5d636 (17:5636)
text "Magnet"
done
Magnemite1Description: ; 5d63e (17:563e)
text "Uses anti-gravity to stay suspended."
line "Appears without warning and uses"
line "attacks like Thunder Wave."
done
MagneticStormName: ; 5d6a0 (17:56a0)
text "Magnetic Storm"
done
MagneticStormDescription: ; 5d6b0 (17:56b0)
text "Remove all Energy cards attached to"
line "all of your Pokémon, then randomly"
line "reattach each of them."
done
Magnemite2Description: ; 5d70f (17:570f)
text "It is born with the ability to defy"
line "gravity. Floats in air on powerful"
line "electromagnetic waves."
done
MagnetonName: ; 5d76e (17:576e)
text "Magneton"
done
Magneton1sSelfdestructDescription: ; 5d778 (17:5778)
text "Does 20 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.)"
line "Magneton does 80 damage to itself."
done
Magneton1Description: ; 5d80e (17:580e)
text "Formed by several Magnemites linked"
line "together. It frequently appears when"
line "sunspots flare up."
done
SonicboomName: ; 5d86b (17:586b)
text "Sonicboom"
done
SonicboomDescription: ; 5d876 (17:5876)
text "Don't apply Weakness and Resistance"
line "for this attack. (Any other effects"
line "that would happen after applying"
line "Weakness and Resistance still"
line "happen.)"
done
Magneton2sSelfdestructDescription: ; 5d907 (17:5907)
text "Does 20 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) Magneton does 100 damage"
line "to itself."
done
Magneton2Description: ; 5d99e (17:599e)
text "Formed by several Magnemites linked"
line "together. They frequently appear"
line "when sunspots flare up."
done
VoltorbName: ; 5d9fc (17:59fc)
text "Voltorb"
done
BallName: ; 5da05 (17:5a05)
text "Ball"
done
VoltorbDescription: ; 5da0b (17:5a0b)
text "Usually found in power plants."
line "Easily mistaken for a Poke Ball, it"
line "has zapped many people."
done
ElectrodeName: ; 5da67 (17:5a67)
text "Electrode"
done
EnergySpikeName: ; 5da72 (17:5a72)
text "Energy Spike"
done
EnergySpikeDescription: ; 5da80 (17:5a80)
text "Search your deck for a basic Energy"
line "card and attach it to 1 of your"
line "Pokémon. Shuffle your deck"
line "afterward."
done
Electrode1Description: ; 5daeb (17:5aeb)
text "Stores electrical energy inside its"
line "body. Even the slightest shock could"
line "trigger a huge explosion."
done
ChainLightningName: ; 5db4f (17:5b4f)
text "Chain Lightning"
done
ChainLightningDescription: ; 5db60 (17:5b60)
text "If the Defending Pokémon isn't"
line "Colorless, this attack does 10"
line "damage to each Benched Pokémon of"
line "the same type as the Defending"
line "Pokémon (including your own)."
done
Electrode2Description: ; 5dbfe (17:5bfe)
text "It stores electrical energy under"
line "very high pressure. It often"
line "explodes with little or no"
line "provocation."
done
ElectabuzzName: ; 5dc66 (17:5c66)
text "Electabuzz"
done
LightScreenName: ; 5dc72 (17:5c72)
text "Light Screen"
done
LightScreenDescription: ; 5dc80 (17:5c80)
text "Whenever an attack does damage to"
line "Electabuzz (after applying Weakness"
line "and Resistance) during your"
line "opponent's next turn, that attack"
line "only does half the damage to"
line "Electabuzz (rounded down to the"
line "nearest 10)."
done
LightScreenDescriptionCont: ; 5dd4f (17:5d4f)
text "(Any other effects of attacks still"
line "happen.)"
done
ElectabuzzsQuickAttackDescription: ; 5dd7d (17:5d7d)
text "Flip a coin. If heads, this attack"
line "does 10 damage plus 20 more damage; "
line "if tails, this attack does"
line "10 damage."
done
ElectricName: ; 5ddec (17:5dec)
text "Electric"
done
Electabuzz1Description: ; 5ddf6 (17:5df6)
text "A wild Pokémon with a short temper."
line "It is able to distinguish colors"
line "and likes the color red."
done
ThunderpunchName: ; 5de55 (17:5e55)
text "Thunderpunch"
done
ThunderpunchDescription: ; 5de63 (17:5e63)
text "Flip a coin. If heads, this attack"
line "does 30 damage plus 10 more damage;"
line "if tails, this attack does 30 damage"
line "and Electabuzz does 10 damage to"
line "itself."
done
Electabuzz2Description: ; 5def9 (17:5ef9)
text "Normally found near power plants,"
line "it can wander away and cause major"
line "blackouts in cities."
done
JolteonName: ; 5df54 (17:5f54)
text "Jolteon"
done
DoubleAttackX20Description: ; 5df5d (17:5f5d)
text "Flip 2 coins. This attack does 20"
line "damage times the number of heads."
done
StunNeedleName: ; 5dfa2 (17:5fa2)
text "Stun Needle"
done
LightningName: ; 5dfaf (17:5faf)
text "Lightning"
done
Jolteon1Description: ; 5dfba (17:5fba)
text "A sensitive Pokémon that easily"
line "becomes sad or angry. Every time"
line "its mood changes, it charges power."
done
PinMissileName: ; 5e020 (17:6020)
text "Pin Missile"
done
QuadrupleAttackX20Description: ; 5e02d (17:602d)
text "Flip 4 coins. This attack does 20"
line "damage times the number of heads."
done
Jolteon2Description: ; 5e072 (17:6072)
text "It accumulates negative ions from"
line "the atmosphere to blast out 10,000-"
line "volt lightning bolts."
done
ZapdosName: ; 5e0cf (17:60cf)
text "Zapdos"
done
ThunderstormName: ; 5e0d7 (17:60d7)
text "Thunderstorm"
done
ThunderstormDescription: ; 5e0e5 (17:60e5)
text "For each of your opponent's Benched"
line "Pokémon, flip a coin. If heads,"
line "this attack does 20 damage to that"
line "Pokémon. (Don't apply Weakness and"
line "Resistance for Benched Pokémon.)"
line "Then, Zapdos does 10 damage times"
line "the number of tails to itself."
done
Zapdos1Description: ; 5e1d2 (17:61d2)
text "A legendary thunderbird Pokémon"
line "whose anger is said to cause storms."
line "Some say it has lived above the"
line "clouds for thousands of years."
done
ZapdosThunderDescription: ; 5e257 (17:6257)
text "Flip a coin. If tails, Zapdos does"
line "30 damage to itself."
done
ThunderboltName: ; 5e290 (17:6290)
text "Thunderbolt"
done
ThunderboltDescription: ; 5e29d (17:629d)
text "Discard all Energy cards attached to"
line "Zapdos in order to use this attack."
done
Zapdos2Description: ; 5e2e7 (17:62e7)
text "A legendary bird Pokémon said to"
line "appear from clouds while wielding"
line "enormous lightning bolts."
done
PealOfThunderName: ; 5e345 (17:6345)
text "Peal of Thunder"
done
PealOfThunderDescription: ; 5e356 (17:6356)
text "When you put Zapdos into play during"
line "your turn (not during set-up), do"
line "30 damage to a Pokémon other than"
line "Zapdos chosen at random. (Don't"
line "apply Weakness and Resistance.)"
done
BigThunderName: ; 5e400 (17:6400)
text "Big Thunder"
done
BigThunderDescription: ; 5e40d (17:640d)
text "Choose a Pokémon other than Zapdos"
line "at random. This attack does 70"
line "damage to that Pokémon. Don't apply"
line "Weakness and Resistance for this"
line "attack. (Any other effects that"
line "would happen after applying Weakness"
line "and Resistance still happen.)"
done
Zapdos3Description: ; 5e4f8 (17:64f8)
text "This legendary bird Pokémon is said"
line "to appear when the sky turns dark"
line "and lightning showers down."
done
SandshrewName: ; 5e55b (17:655b)
text "Sandshrew"
done
SandAttackName: ; 5e566 (17:6566)
text "Sand-attack"
done
SandshrewDescription: ; 5e573 (17:6573)
text "Burrows deep underground in arid"
line "locations far from water. It only"
line "emerges to hunt for food."
done
SandslashName: ; 5e5d1 (17:65d1)
text "Sandslash"
done
TripleAttackX20Description: ; 5e5dc (17:65dc)
text "Flip 3 coins. This attack does 20"
line "damage times the number of heads."
done
SandslashDescription: ; 5e621 (17:6621)
text "Curls up into a spiny ball when"
line "threatened. It can roll while curled"
line "up to attack or escape."
done
DiglettName: ; 5e67f (17:667f)
text "Diglett"
done
DigName: ; 5e688 (17:6688)
text "Dig"
done
MudSlapName: ; 5e68d (17:668d)
text "Mud Slap"
done
MoleName: ; 5e697 (17:6697)
text "Mole"
done
DiglettDescription: ; 5e69d (17:669d)
text "Lives about three feet underground,"
line "where it feeds on plant roots. It"
line "sometimes appears above ground."
done
DugtrioName: ; 5e704 (17:6704)
text "Dugtrio"
done
EarthquakeName: ; 5e70d (17:670d)
text "Earthquake"
done
EarthquakeDescription: ; 5e719 (17:6719)
text "Does 10 damage to each of your own"
line "Benched Pokémon. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.)"
done
DugtrioDescription: ; 5e789 (17:6789)
text "A team of Diglett triplets."
line "It triggers huge earthquakes by"
line "burrowing 60 miles underground."
done
MankeyName: ; 5e7e6 (17:67e6)
text "Mankey"
done
PeekName: ; 5e7ee (17:67ee)
text "Peek"
done
PeekDescription: ; 5e7f4 (17:67f4)
text "Once during your turn (before your"
line "attack), you may look at one of the"
line "following: the top card of either"
line "player's deck, a random card from"
line "your opponent's hand, or one of"
line "either player's Prizes."
done
PeekDescriptionCont: ; 5e8b8 (17:68b8)
text "This power can't be used if Mankey"
line "is Asleep, Confused, or Paralyzed."
done
PigMonkeyName: ; 5e8ff (17:68ff)
text "Pig Monkey"
done
MankeyDescription: ; 5e90b (17:690b)
text "Extremely quick to anger. It could"
line "be docile one moment, then thrashing"
line "away the next."
done
PrimeapeName: ; 5e963 (17:6963)
text "Primeape"
done
TantrumName: ; 5e96d (17:696d)
text "Tantrum"
done
TantrumDescription: ; 5e976 (17:6976)
text "Flip a coin. If tails, Primeape is"
line "now Confused (after doing damage)."
done
PrimeapeDescription: ; 5e9bd (17:69bd)
text "Always furious and tenacious to"
line "boot. It will not abandon chasing"
line "its quarry until its quarry is"
line "caught."
done
MachopName: ; 5ea27 (17:6a27)
text "Machop"
done
LowKickName: ; 5ea2f (17:6a2f)
text "Low Kick"
done
SuperpowerName: ; 5ea39 (17:6a39)
text "Superpower"
done
MachopDescription: ; 5ea45 (17:6a45)
text "Loves to build its muscles. It"
line "trains in all styles of martial arts"
line "to become even stronger."
done
MachokeName: ; 5eaa3 (17:6aa3)
text "Machoke"
done
KarateChopName: ; 5eaac (17:6aac)
text "Karate Chop"
done
KarateChopDescription: ; 5eab9 (17:6ab9)
text "Does 50 damage minus 10 damage for"
line "each damage counter on Machoke."
done
SubmissionName: ; 5eafd (17:6afd)
text "Submission"
done
SubmissionDescription: ; 5eb09 (17:6b09)
text "Machoke does 20 damage to itself."
done
MachokeDescription: ; 5eb2c (17:6b2c)
text "Its muscular body is so powerful"
line "that it must wear a power-save belt"
line "to help regulate its motions."
done
MachampName: ; 5eb90 (17:6b90)
text "Machamp"
done
StrikesBackName: ; 5eb99 (17:6b99)
text "Strikes Back"
done
StrikesBackDescription: ; 5eba7 (17:6ba7)
text "Whenever your opponent's attack"
line "damages Machamp (even if Machamp is"
line "Knocked Out), this power does 10"
line "damage to the attacking Pokémon."
line "(Don't apply Weakness and"
line "Resistance.) "
done
StrikesBackDescriptionCont: ; 5ec56 (17:6c56)
text "This power can't be used if Machamp"
line "is already Asleep, Confused, or"
line "Paralyzed when your opponent"
line "attacks."
done
SeismicTossName: ; 5ecc1 (17:6cc1)
text "Seismic Toss"
done
MachampDescription: ; 5eccf (17:6ccf)
text "Using its amazing muscles, it throws"
line "powerful punches that can knock its"
line "victim clear over the horizon."
done
GeodudeName: ; 5ed38 (17:6d38)
text "Geodude"
done
StoneBarrageName: ; 5ed41 (17:6d41)
text "Stone Barrage"
done
StoneBarrageDescription: ; 5ed50 (17:6d50)
text "Flip a coin until you get tails."
line "This attack does 10 damage times"
line "the number of heads."
done
RockName: ; 5eda8 (17:6da8)
text "Rock"
done
GeodudeDescription: ; 5edae (17:6dae)
text "Found in fields and mountains."
line "Mistaking them for boulders, people"
line "often step or trip on them."
done
GravelerName: ; 5ee0e (17:6e0e)
text "Graveler"
done
HardenName: ; 5ee18 (17:6e18)
text "Harden"
done
GravelersHardenDescription: ; 5ee20 (17:6e20)
text "During your opponent's next turn,"
line "whenever 30 or less damage is done"
line "to Graveler (after applying"
line "Weakness and Resistance), prevent"
line "that damage. (Any other effects of"
line "attacks still happen.)"
done
RockThrowName: ; 5eede (17:6ede)
text "Rock Throw"
done
GravelerDescription: ; 5eeea (17:6eea)
text "Rolls down slopes to move. It rolls"
line "over any obstacle without slowing"
line "or changing its direction."
done
GolemName: ; 5ef4c (17:6f4c)
text "Golem"
done
AvalancheName: ; 5ef53 (17:6f53)
text "Avalanche"
done
GolemsSelfdestructDescription: ; 5ef5e (17:6f5e)
text "Does 20 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) Golem does 100 damage to"
line "itself."
done
MegatonName: ; 5eff2 (17:6ff2)
text "Megaton"
done
GolemDescription: ; 5effb (17:6ffb)
text "Its boulder-like body is extremely"
line "hard. It can easily withstand"
line "dynamite blasts without damage."
done
OnixName: ; 5f05d (17:705d)
text "Onix"
done
OnixsHardenDescription: ; 5f063 (17:7063)
text "During your opponent's next turn,"
line "whenever 30 or less damage is done"
line "to Onix (after applying Weakness and"
line "Resistance), prevent that damage."
line "(Any other effects of attacks still"
line "happen.)"
done
RockSnakeName: ; 5f11d (17:711d)
text "Rock Snake"
done
OnixDescription: ; 5f129 (17:7129)
text "As it grows, the stone portions of"
line "its body harden to become similar"
line "to a diamond, though colored black."
done
CuboneName: ; 5f193 (17:7193)
text "Cubone"
done
SnivelName: ; 5f19b (17:719b)
text "Snivel"
done
SnivelDescription: ; 5f1a3 (17:71a3)
text "If the Defending Pokémon attacks"
line "Cubone during your opponent's next"
line "turn, any damage done by the attack"
line "is reduced by 20 (after applying"
line "Weakness and Resistance). (Benching"
line "or evolving either Pokémon ends this"
line "effect.)"
done
CubonesRageDescription: ; 5f27f (17:727f)
text "Does 10 damage plus 10 more damage"
line "for each damage counter on Cubone."
done
LonelyName: ; 5f2c6 (17:72c6)
text "Lonely"
done
CuboneDescription: ; 5f2ce (17:72ce)
text "Because it never removes its skull"
line "helmet, no one has ever seen this"
line "Pokémon's real face."
done
MarowakName: ; 5f329 (17:7329)
text "Marowak"
done
BonemerangName: ; 5f332 (17:7332)
text "Bonemerang"
done
CallforFriendName: ; 5f33e (17:733e)
text "Call for Friend"
done
CallforFriendDescription: ; 5f34f (17:734f)
text "Search your deck for a <FIGHTING> Basic"
line "Pokémon card and put it onto your"
line "Bench. Shuffle your deck afterward."
line "(You can't use this attack if your"
line "Bench is full.)"
done
BonekeeperName: ; 5f3e9 (17:73e9)
text "Bonekeeper"
done
Marowak1Description: ; 5f3f5 (17:73f5)
text "The bone it holds is its key weapon."
line "It throws the bone skillfully like"
line "a boomerang to K.O. targets."
done
BoneAttackName: ; 5f45b (17:745b)
text "Bone Attack"
done
BoneAttackDescription: ; 5f468 (17:7468)
text "Flip a coin. If heads, the Defending"
line "Pokémon can't attack during your"
line "opponent's next turn."
done
WailName: ; 5f4c5 (17:74c5)
text "Wail"
done
WailDescription: ; 5f4cb (17:74cb)
text "Each player fills his or her Bench"
line "with Basic Pokémon chosen at random"
line "from his or her deck. If a player"
line "has fewer Basic Pokémon than that in"
line "his or deck, he or she chooses all"
line "of them. Each player shuffles his"
line "or her deck afterward."
done
Marowak2Description: ; 5f5b6 (17:75b6)
text "Small and weak, this Pokémon is"
line "adept with its bone club. It has"
line "grown more vicious over the ages."
done
HitmonleeName: ; 5f61a (17:761a)
text "Hitmonlee"
done
StretchKickName: ; 5f625 (17:7625)
text "Stretch Kick"
done
StretchKickDescription: ; 5f633 (17:7633)
text "If your opponent has any Benched"
line "Pokémon, choose 1 of them and this"
line "attack does 20 damage to it."
line "(Don't apply Weakness and"
line "Resistance for Benched Pokémon.)"
done
HighJumpKickName: ; 5f6d0 (17:76d0)
text "High Jump Kick"
done
KickingName: ; 5f6e0 (17:76e0)
text "Kicking"
done
HitmonleeDescription: ; 5f6e9 (17:76e9)
text "When in a hurry, its legs lengthen"
line "progressively. It runs smoothly with"
line "extra long, loping strides."
done
HitmonchanName: ; 5f74e (17:774e)
text "Hitmonchan"
done
JabName: ; 5f75a (17:775a)
text "Jab"
done
SpecialPunch: ; 5f75f (17:775f)
text "Special Punch"
done
PunchingName: ; 5f76e (17:776e)
text "Punching"
done
HitmonchanDescription: ; 5f778 (17:7778)
text "While seeming to do nothing, it"
line "fires punches in lightning-fast"
line "volleys that are impossible to see."
done
RhyhornName: ; 5f7dd (17:77dd)
text "Rhyhorn"
done
LeerName: ; 5f7e6 (17:77e6)
text "Leer"
done
LeerDescription: ; 5f7ec (17:77ec)
text "Flip a coin. If heads, the Defending"
line "Pokémon can't attack Rhyhorn during"
line "your opponent's next turn."
line "(Benching or evolving either Pokémon"
line "ends this effect.)"
done
SpikeName: ; 5f889 (17:7889)
text "Spike"
done
RhyhornDescription: ; 5f890 (17:7890)
text "Its massive bones are 1,000 times"
line "harder than human bones. It can"
line "easily knock a trailer flying."
done
RhydonName: ; 5f8f2 (17:78f2)
text "Rhydon"
done
RamName: ; 5f8fa (17:78fa)
text "Ram"
done
RamDescription: ; 5f8ff (17:78ff)
text "Rhydon does 20 damage to itself."
line "If your opponent has any Benched"
line "Pokémon, he or she chooses 1 of them"
line "and switches it with the Defending"
line "Pokémon.(Do the damage before"
line "switching the Pokémon."
done
RamDescriptionCont: ; 5f9bf (17:79bf)
text "Switch the Pokémon even if Rhydon"
line "is Knocked Out.)"
done
RhydonDescription: ; 5f9f3 (17:79f3)
text "Protected by an armor-like hide, it"
line "is capable of living in molten lava"
line "of 3600 degrees."
done
KabutoName: ; 5fa4d (17:7a4d)
text "Kabuto"
done
KabutoArmorName: ; 5fa55 (17:7a55)
text "Kabuto Armor"
done
KabutoArmorDescription: ; 5fa63 (17:7a63)
text "Whenever an attack (even your own)"
line "does damage to Kabuto (after"
line "applying Weakness and Resistance),"
line "that attack only does half the"
line "damage to Kabuto (rounded down to"
line "the nearest 10)."
done
KabutoArmorDescriptionCont: ; 5fb19 (17:7b19)
text "(Any other effects of attacks still"
line "happen.) This power stops working"
line "while Kabuto is Asleep, Confused,"
line "or Paralyzed."
done
KabutoDescription: ; 5fb90 (17:7b90)
text "A Pokémon that was resurrected from"
line "a fossil found in what was once the"
line "ocean floor eons ago."
done
KabutopsName: ; 5fbef (17:7bef)
text "Kabutops"
done
SharpSickleName: ; 5fbf9 (17:7bf9)
text "Sharp Sickle"
done
AbsorbName: ; 5fc07 (17:7c07)
text "Absorb"
done
AbsorbDescription: ; 5fc0f (17:7c0f)
text "Remove a number of damage counters"
line "from Kabutops equal to half the"
line "damage done to the Defending"
line "Pokémon (after applying Weakness"
line "and Resistance)"
line "(rounded up to the nearest 10)."
done
AbsorbDescriptionCont: ; 5fcc1 (17:7cc1)
text "If Kabutops has fewer damage"
line "counters than that, remove all of"
line "them."
done
KabutopsDescription: ; 5fd07 (17:7d07)
text "Its sleek shape is perfect for"
line "swimming. It slashes prey with its"
line "claws and drains the body fluids."
done
AerodactylName: ; 5fd6c (17:7d6c)
text "Aerodactyl"
done
PrehistoricPowerName: ; 5fd78 (17:7d78)
text "Prehistoric Power"
done
PrehistoricPowerDescription: ; 5fd8b (17:7d8b)
text "No more Evolution cards can be"
line "played. This power stops working"
line "while Aerodactyl is Asleep,"
line "Confused, or Paralyzed."
done
FossilName: ; 5fe00 (17:7e00)
text "Fossil"
done
AerodactylDescription: ; 5fe08 (17:7e08)
text "A ferocious prehistoric Pokémon that"
line "goes for the enemy's throat with its"
line "serrated saw-like fangs."
done
AbraName: ; 5fe6c (17:7e6c)
text "Abra"
done
PsiName: ; 5fe72 (17:7e72)
text "Psi"
done
AbraDescription: ; 5fe77 (17:7e77)
text "Using its ability to read minds, it"
line "will identify impending danger and"
line "teleport to safety."
done
KadabraName: ; 5fed3 (17:7ed3)
text "Kadabra"
done
KadabrasRecoverDescription: ; 5fedc (17:7edc)
text "Discard 1 <PSYCHIC> Energy card attached to"
line "Kadabra in order to use this attack."
line "Remove all damage counters from"
line "Kadabra."
done
SuperPsiName: ; 5ff50 (17:7f50)
text "Super Psy"
done
KadabraDescription: ; 5ff5b (17:7f5b)
text "It emits special alpha waves from"
line "its body that induce headaches even"
line "to those just nearby."
done
AlakazamName: ; 5ffb8 (17:7fb8)
text "Alakazam"
done
DamageSwapName: ; 5ffc2 (17:7fc2)
text "Damage Swap"
done
ds $31
|