summaryrefslogtreecommitdiff
path: root/src/text/text10.asm
blob: e000a3b2d04b937ee994095b905ab8798d5b4dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
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
KakunaDescription: ; 58000 (16:4000)
	text "Almost incapable of moving, this"
	line "Pokémon can only harden its shell to"
	line "protect itself from predators."
	done

BeedrillName: ; 58066 (16:4066)
	text "Beedrill"
	done

TwineedleName: ; 58070 (16:4070)
	text "Twineedle"
	done

DoubleAttackX30Description: ; 5807b (16:407b)
	text "Flip 2 coins. This attack does 30"
	line "damage times the number of heads."
	done

PoisonBeeName: ; 580c0 (16:40c0)
	text "Poison Bee"
	done

BeedrillDescription: ; 580cc (16:40cc)
	text "Flies at high speed and attacks"
	line "using the large, venomous stingers"
	line "on its forelegs and tail."
	done

EkansName: ; 5812a (16:412a)
	text "Ekans"
	done

SpitPoisonName: ; 58131 (16:4131)
	text "Spit Poison"
	done

WrapName: ; 5813e (16:413e)
	text "Wrap"
	done

SnakeName: ; 58144 (16:4144)
	text "Snake"
	done

EkansDescription: ; 5814b (16:414b)
	text "Moves silently and stealthily. Eats"
	line "the eggs of birds, such as Pidgey"
	line "and Spearow, whole."
	done

ArbokName: ; 581a6 (16:41a6)
	text "Arbok"
	done

TerrorStrikeName: ; 581ad (16:41ad)
	text "Terror Strike"
	done

TerrorStrikeDescription: ; 581bc (16:41bc)
	text "Flip a coin. If heads and if your"
	line "opponent has any Benched Pokémon,"
	line "he or she chooses 1 of them and"
	line "switches it with the Defending"
	line "Pokémon."
	line "(Do the damage before switching"
	line "the Pokémon.)"
	done

PoisonFangName: ; 58277 (16:4277)
	text "Poison Fang"
	done

CobraName: ; 58284 (16:4284)
	text "Cobra"
	done

ArbokDescription: ; 5828b (16:428b)
	text "It is rumored that the ferocious"
	line "warning markings on its belly differ"
	line "from area to area."
	done

NidoranFName: ; 582e5 (16:42e5)
	text "Nidoran♀"
	done

FurySwipesName: ; 582ef (16:42ef)
	text "Fury Swipes"
	done

TripleAttackX10Description: ; 582fc (16:42fc)
	text "Flip 3 coins. This attack does 10"
	line "damage times the number of heads."
	done

CallForFamilyName: ; 58341 (16:4341)
	text "Call for Family"
	done

NidoranFsCallForFamilyDescription: ; 58352 (16:4352)
	text "Search your deck for a Basic Pokémon"
	line "named Nidoran♀ or Nidoran♂ and put"
	line "it onto your Bench. Shuffle your"
	line "deck afterward. (You can't use this"
	line "attack if your Bench is full.)"
	done

PoisonPinName: ; 583ff (16:43ff)
	text "Poison Pin"
	done

NidoranFDescription: ; 5840b (16:440b)
	text "Although small, its venomous barbs"
	line "make this Pokémon dangerous."
	line "The female has smaller horns."
	done

NidorinaName: ; 5846a (16:446a)
	text "Nidorina"
	done

SupersonicName: ; 58474 (16:4474)
	text "Supersonic"
	done

MayInflictConfusionDescription: ; 58480 (16:4480)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon is now Confused."
	done

DoubleKickName: ; 584bf (16:44bf)
	text "Double Kick"
	done

NidorinaDescription: ; 584cc (16:44cc)
	text "The female's horn develops slowly."
	line "Prefers physical attacks such as"
	line "clawing and biting."
	done

NidoqueenName: ; 58525 (16:4525)
	text "Nidoqueen"
	done

BoyfriendsName: ; 58530 (16:4530)
	text "Boyfriends"
	done

BoyfriendsDescription: ; 5853c (16:453c)
	text "Does 20 damage plus 20 more damage"
	line "for each Nidoking you have in play."
	done

MegaPunchName: ; 58584 (16:4584)
	text "Mega Punch"
	done

DrillName: ; 58590 (16:4590)
	text "Drill"
	done

NidoqueenDescription: ; 58597 (16:4597)
	text "Its hard scales provide strong"
	line "protection. It uses its hefty bulk"
	line "to execute powerful moves."
	done

NidoranMName: ; 585f5 (16:45f5)
	text "Nidoran♂"
	done

HornHazardName: ; 585ff (16:45ff)
	text "Horn Hazard"
	done

MayDoNothingDescription: ; 5860c (16:460c)
	text "Flip a coin. If tails, this attack"
	line "does nothing."
	done

NidoranMDescription: ; 5863e (16:463e)
	text "Stiffens its ears to sense danger."
	line "The larger, more powerful of its"
	line "horns secretes venom."
	done

NidorinoName: ; 58699 (16:4699)
	text "Nidorino"
	done

HornDrillName: ; 586a3 (16:46a3)
	text "Horn Drill"
	done

NidorinoDescription: ; 586af (16:46af)
	text "An aggressive Pokémon that is quick"
	line "to attack. The horn on its head"
	line "secretes a powerful venom."
	done

NidokingName: ; 5870f (16:470f)
	text "Nidoking"
	done

ThrashName: ; 58719 (16:4719)
	text "Thrash"
	done

ThrashDescription: ; 58721 (16:4721)
	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 Nidoking does 10 damage to"
	line "itself."
	done

ToxicName: ; 587b5 (16:47b5)
	text "Toxic"
	done

ToxicDescription: ; 587bc (16:47bc)
	text "The Defending Pokémon is now"
	line "Poisoned. It now takes 20 Poison"
	line "damage instead of 10 after each"
	line "player's turn (even if it was"
	line "already Poisoned)."
	done

NidokingDescription: ; 5884c (16:484c)
	text "Uses its powerful tail in battle to"
	line "smash, constrict, then break its"
	line "prey's bones."
	done

ZubatName: ; 588a0 (16:48a0)
	text "Zubat"
	done

LeechLifeName: ; 588a7 (16:48a7)
	text "Leech Life"
	done

ZubatsLeechLifeDescription: ; 588b3 (16:48b3)
	text "Remove a number of damage counters"
	line "from Zubat equal to the damage done"
	line "to the Defending Pokémon (after"
	line "applying Weakness and Resistance)."
	line "If Zubat has fewer damage counters"
	line "than that, remove all of them."
	done

BatName: ; 58980 (16:4980)
	text "Bat"
	done

ZubatDescription: ; 58985 (16:4985)
	text "Forms colonies in perpetually dark"
	line "places. Uses ultrasonic waves to"
	line "identify and approach targets."
	done

GolbatName: ; 589e9 (16:49e9)
	text "Golbat"
	done

WingAttackName: ; 589f1 (16:49f1)
	text "Wing Attack"
	done

GolbatsLeechLifeDescription: ; 589fe (16:49fe)
	text "Remove a number of damage counters"
	line "from Golbat equal to the damage done"
	line "to the Defending Pokémon (after"
	line "applying Weakness and Resistance)."
	line "If Golbat has fewer damage counters"
	line "than that, remove all of them."
	done

GolbatDescription: ; 58acd (16:4acd)
	text "Once it strikes, it will not stop"
	line "draining energy from the victim even"
	line "if it gets too heavy to fly."
	done

OddishName: ; 58b32 (16:4b32)
	text "Oddish"
	done

SproutName: ; 58b3a (16:4b3a)
	text "Sprout"
	done

SproutDescription: ; 58b42 (16:4b42)
	text "Search your deck for a Basic Pokémon"
	line "named Oddish 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

WeedName: ; 58be1 (16:4be1)
	text "Weed"
	done

OddishDescription: ; 58be7 (16:4be7)
	text "During the day, it keeps its face"
	line "buried in the ground. At night, it"
	line "wanders around sowing its seeds."
	done

GloomName: ; 58c4e (16:4c4e)
	text "Gloom"
	done

FoulOdorName: ; 58c55 (16:4c55)
	text "Foul Odor"
	done

FoulOdorDescription: ; 58c60 (16:4c60)
	text "Both the Defending Pokémon and"
	line "Gloom are now Confused (after doing"
	line "damage)."
	done

GloomDescription: ; 58cad (16:4cad)
	text "The fluid that oozes from its mouth"
	line "isn't drool; it is a nectar that is"
	line "used to attract prey."
	done

VileplumeName: ; 58d0c (16:4d0c)
	text "Vileplume"
	done

HealName: ; 58d17 (16:4d17)
	text "Heal"
	done

HealDescription: ; 58d1d (16:4d1d)
	text "Once during your turn (before your"
	line "attack), you may flip a coin. If"
	line "heads, remove 1 damage counter from"
	line "1 of your Pokémon. This power can't"
	line "be used if Vileplume is Asleep,"
	line "Confused, or Paralyzed."
	done

PetalDanceName: ; 58de2 (16:4de2)
	text "Petal Dance"
	done

PetalDanceDescription: ; 58def (16:4def)
	text "Flip 3 coins. This attack does 40"
	line "damage times the number of heads."
	line "Vileplume is now Confused (after"
	line "doing damage)."
	done

FlowerName: ; 58e64 (16:4e64)
	text "Flower"
	done

VileplumeDescription: ; 58e6c (16:4e6c)
	text "The larger its petals, the more"
	line "toxic pollen it contains. Its big"
	line "head is heavy and hard to hold up."
	done

ParasName: ; 58ed2 (16:4ed2)
	text "Paras"
	done

ScratchName: ; 58ed9 (16:4ed9)
	text "Scratch"
	done

SporeName: ; 58ee2 (16:4ee2)
	text "Spore"
	done

InflictSleepDescription: ; 58ee9 (16:4ee9)
	text "The Defending Pokémon is now Asleep."
	done

MushroomName: ; 58f0f (16:4f0f)
	text "Mushroom"
	done

ParasDescription: ; 58f19 (16:4f19)
	text "Burrows to suck tree roots."
	line "The mushrooms on its back grow by"
	line "drawing nutrients from the bug host."
	done

ParasectName: ; 58f7d (16:4f7d)
	text "Parasect"
	done

SlashName: ; 58f87 (16:4f87)
	text "Slash"
	done

ParasectDescription: ; 58f8e (16:4f8e)
	text "A host-parasite pair in which the"
	line "parasite mushroom has taken over"
	line "the host bug. Prefers damp places."
	done

VenonatName: ; 58ff5 (16:4ff5)
	text "Venonat"
	done

VenonatLeechLifeDescription: ; 58ffe (16:4ffe)
	text "Remove a number of damage counters"
	line "from Venonat equal to the damage"
	line "done to the Defending Pokémon (after"
	line "applying Weakness and Resistance)."
	line "If Venonat has fewer damage counters"
	line "than that, remove all of them."
	done

InsectName: ; 590cf (16:50cf)
	text "Insect"
	done

VenonatDescription: ; 590d7 (16:50d7)
	text "Lives in the shadows of tall trees"
	line "where it eats insects."
	line "It is attracted by light at night."
	done

VenomothName: ; 59135 (16:5135)
	text "Venomoth"
	done

ShiftName: ; 5913f (16:513f)
	text "Shift"
	done

ShiftDescription: ; 59146 (16:5146)
	text "Once during your turn (before your"
	line "attack), you may change the type of"
	line "Venomoth to the type of any other"
	line "Pokémon in play other than"
	line "Colorless."
	line "This power can't be used if Venomoth"
	line "is Asleep, Confused, or Paralyzed."
	done

VenomPowderName: ; 5921e (16:521e)
	text "Venom Powder"
	done

VenomPowderDescription: ; 5922c (16:522c)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon is now Confused and"
	line "Poisoned."
	done

PoisonmothName: ; 59278 (16:5278)
	text "Poisonmoth"
	done

VenomothDescription: ; 59284 (16:5284)
	text "The dust-like scales covering its"
	line "wings are color coded to indicate"
	line "the kinds of poison it has."
	done

BellsproutName: ; 592e5 (16:52e5)
	text "Bellsprout"
	done

BellsproutsCallForFamilyDescription: ; 592f1 (16:52f1)
	text "Search your deck for a Basic Pokémon"
	line "named Bellsprout and put it onto"
	line "your Bench. Shuffle your deck"
	line "afterward. (You can't use this"
	line "attack if your Bench is full.)"
	done

BellsproutDescription: ; 59394 (16:5394)
	text "A carnivorous Pokémon that traps and"
	line "eats bugs. It uses its root feet to"
	line "soak up needed moisture."
	done

WeepinbellName: ; 593f7 (16:53f7)
	text "Weepinbell"
	done

RazorLeafName: ; 59403 (16:5403)
	text "Razor Leaf"
	done

FlycatcherName: ; 5940f (16:540f)
	text "Flycatcher"
	done

WeepinbellDescription: ; 5941b (16:541b)
	text "It spits out poisonpowder to"
	line "immobilize the enemy, and then"
	line "finishes the enemy with a spray of"
	line "acid."
	done

VictreebelName: ; 59481 (16:5481)
	text "Victreebel"
	done

LureName: ; 5948d (16:548d)
	text "Lure"
	done

VictreebelsLureDescription: ; 59493 (16:5493)
	text "If your opponent has any Benched"
	line "Pokémon, choose 1 of them and switch"
	line "it with his or her Active Pokémon."
	done

AcidName: ; 594fd (16:54fd)
	text "Acid"
	done

VictreebelsAcidDescription: ; 59503 (16:5503)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon can't retreat during your"
	line "opponent's next turn."
	done

VictreebelDescription: ; 59561 (16:5561)
	text "Said to live in huge colonies deep"
	line "in jungles, although no one has ever"
	line "returned from there."
	done

GrimerName: ; 595bf (16:55bf)
	text "Grimer"
	done

NastyGooName: ; 595c7 (16:55c7)
	text "Nasty Goo"
	done

MinimizeName: ; 595d2 (16:55d2)
	text "Minimize"
	done

GrimersMinimizeDescription: ; 595dc (16:55dc)
	text "All damage done by attacks to Grimer"
	line "during your opponent's next turn is"
	line "reduced by 20 (after applying"
	line "Weakness and Resistance)."
	done

SludgeName: ; 5965e (16:565e)
	text "Sludge"
	done

GrimerDescription: ; 59666 (16:5666)
	text "Appears in filthy areas. Thrives by"
	line "sucking up polluted sludge that is"
	line "pumped out of factories."
	done

MukName: ; 596c7 (16:56c7)
	text "Muk"
	done

ToxicGasName: ; 596cc (16:56cc)
	text "Toxic Gas"
	done

ToxicGasDescription: ; 596d7 (16:56d7)
	text "Ignore all Pokémon Powers other"
	line "than Toxic Gases. This power stops"
	line "working while Muk is Asleep,"
	line "Confused, or Paralyzed."
	done

MukDescription: ; 59750 (16:5750)
	text "Thickly covered with a filthy, vile"
	line "sludge. It is so toxic, even its"
	line "footprints contain poison."
	done

ExeggcuteName: ; 597b1 (16:57b1)
	text "Exeggcute"
	done

HypnosisName: ; 597bc (16:57bc)
	text "Hypnosis"
	done

ExeggcutesLeechSeedDescription: ; 597c6 (16:57c6)
	text "Unless all damage from this attack"
	line "is prevented, you may remove 1"
	line "damage counter from Exeggcute."
	done

EggName: ; 59828 (16:5828)
	text "Egg"
	done

ExeggcuteDescription: ; 5982d (16:582d)
	text "Often mistaken for eggs."
	line "When disturbed, they quickly gather"
	line "and attack in swarms."
	done

ExeggutorName: ; 59881 (16:5881)
	text "Exeggutor"
	done

TeleportName: ; 5988c (16:588c)
	text "Teleport"
	done

TeleportDescription: ; 59896 (16:5896)
	text "Switch Exeggutor with 1 of your"
	line "Benched Pokémon."
	done

BigEggsplosionName: ; 598c8 (16:58c8)
	text "Big Eggsplosion"
	done

BigEggsplosionDescription: ; 598d9 (16:58d9)
	text "Flip a number of coins equal to the"
	line "number of Energy attached to"
	line "Exeggutor. This attack does 20"
	line "damage times the number of heads."
	done

CoconutName: ; 5995c (16:595c)
	text "Coconut"
	done

ExeggutorDescription: ; 59965 (16:5965)
	text "Legend has it that on rare"
	line "occasions, one of its heads will"
	line "drop off and continue on as an"
	line "Exeggcute."
	done

KoffingName: ; 599cc (16:59cc)
	text "Koffing"
	done

FoulGasName: ; 599d5 (16:59d5)
	text "Foul Gas"
	done

FoulGasDescription: ; 599df (16:59df)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon is now Poisoned; if tails,"
	line "it is now Confused."
	done

PoisonGasName: ; 59a3c (16:5a3c)
	text "Poison Gas"
	done

KoffingDescription: ; 59a48 (16:5a48)
	text "Because it stores several kinds of"
	line "toxic gases in its body, it is prone"
	line "to exploding without warning."
	done

WeezingName: ; 59aaf (16:5aaf)
	text "Weezing"
	done

SmogName: ; 59ab8 (16:5ab8)
	text "Smog"
	done

SelfdestructName: ; 59abe (16:5abe)
	text "Selfdestruct"
	done

WeezingsSelfdestructDescription: ; 59acc (16:5acc)
	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.) Weezing does 60 damage to"
	line "itself."
	done

WeezingDescription: ; 59b61 (16:5b61)
	text "Where two kinds of poison gases"
	line "meet, two Koffings can fuse into a"
	line "Weezing over many years."
	done

TangelaName: ; 59bbe (16:5bbe)
	text "Tangela"
	done

BindName: ; 59bc7 (16:5bc7)
	text "Bind"
	done

VineName: ; 59bcd (16:5bcd)
	text "Vine"
	done

Tangela1Description: ; 59bd3 (16:5bd3)
	text "Its whole body is swathed with wide"
	line "vines that are similar to seaweed."
	line "These vines shake as it walks."
	done

PoisonWhipName: ; 59c3a (16:5c3a)
	text "Poison Whip"
	done

Tangela2Description: ; 59c47 (16:5c47)
	text "Its identity is obscured by masses"
	line "of thick, blue vines. The vines are"
	line "said to never stop growing."
	done

ScytherName: ; 59cab (16:5cab)
	text "Scyther"
	done

SwordsDanceName: ; 59cb4 (16:5cb4)
	text "Swords Dance"
	done

SwordsDanceDescription: ; 59cc2 (16:5cc2)
	text "During your next turn, Scyther's"
	line "Slash attack's base damage is"
	line "doubled."
	done

MantisName: ; 59d0b (16:5d0b)
	text "Mantis"
	done

ScytherDescription: ; 59d13 (16:5d13)
	text "With ninja-like agility and speed,"
	line "it can create the illusion that"
	line "there is more than one of it."
	done

PinsirName: ; 59d75 (16:5d75)
	text "Pinsir"
	done

IronGripName: ; 59d7d (16:5d7d)
	text "Irongrip"
	done

GuillotineName: ; 59d87 (16:5d87)
	text "Guillotine"
	done

StagbeetleName: ; 59d93 (16:5d93)
	text "Stagbeetle"
	done

PinsirDescription: ; 59d9f (16:5d9f)
	text "If it fails to crush the victim in"
	line "its pincers, it will swing its"
	line "victim around and toss it hard."
	done

CharmanderName: ; 59e02 (16:5e02)
	text "Charmander"
	done

EmberName: ; 59e0e (16:5e0e)
	text "Ember"
	done

EmberDescription: ; 59e15 (16:5e15)
	text "Discard 1 <FIRE> Energy card attached to"
	line "Charmander in order to use this"
	line "attack."
	done

LizardName: ; 59e63 (16:5e63)
	text "Lizard"
	done

CharmanderDescription: ; 59e6b (16:5e6b)
	text "Obviously prefers hot places. If it"
	line "gets caught in the rain, steam is"
	line "said to spout from the tip of its"
	line "tail."
	done

CharmeleonName: ; 59eda (16:5eda)
	text "Charmeleon"
	done

FlamethrowerName: ; 59ee6 (16:5ee6)
	text "Flamethrower"
	done

CharmeleonsFlamethrowerDescription: ; 59ef4 (16:5ef4)
	text "Discard 1 <FIRE> Energy card attached to"
	line "Charmeleon in order to use this"
	line "attack."
	done

FlameName: ; 59f42 (16:5f42)
	text "Flame"
	done

CharmeleonDescription: ; 59f49 (16:5f49)
	text "When it swings its burning tail, it"
	line "raises the temperature to unbearably"
	line "high levels."
	done

CharizardName: ; 59fa0 (16:5fa0)
	text "Charizard"
	done

EnergyBurnName: ; 59fab (16:5fab)
	text "Energy Burn"
	done

EnergyBurnDescription: ; 59fb8 (16:5fb8)
	text "As often as you like during your"
	line "turn (before your attack), you may"
	line "turn all Energy attached to"
	line "Charizard into <FIRE> Energy for the"
	line "rest of the turn. This power can't"
	line "be used if Charizard is Asleep,"
	line "Confused, or Paralyzed."
	done

FireSpinName: ; 5a095 (16:6095)
	text "Fire Spin"
	done

FireSpinDescription: ; 5a0a0 (16:60a0)
	text "Discard 2 Energy cards attached to"
	line "Charizard in order to use this"
	line "attack."
	done

CharizardDescription: ; 5a0eb (16:60eb)
	text "Spits fire that is hot enough to"
	line "melt boulders. Known to"
	line "unintentionally cause forest fires."
	done

VulpixName: ; 5a149 (16:6149)
	text "Vulpix"
	done

ConfuseRayName: ; 5a151 (16:6151)
	text "Confuse Ray"
	done

FoxName: ; 5a15e (16:615e)
	text "Fox"
	done

VulpixDescription: ; 5a163 (16:6163)
	text "At the time of birth, it has just"
	line "one tail. Its tail splits from the"
	line "tip as it grows older."
	done

NinetalesName: ; 5a1c0 (16:61c0)
	text "Ninetails"
	done

NinetalesLureDescription: ; 5a1cb (16:61cb)
	text "If your opponent has any Benched"
	line "Pokémon, choose 1 of them and switch"
	line "it with the Defending Pokémon."
	done

FireBlastName: ; 5a231 (16:6231)
	text "Fire Blast"
	done

FireBlastDescription: ; 5a23d (16:623d)
	text "Discard 1 <FIRE> Energy card attached"
	line "to Ninetales in order to use this"
	line "attack."
	done

Ninetales1Description: ; 5a28a (16:628a)
	text "Very smart and very vengeful."
	line "Grabbing one of its many tails could"
	line "result in a 1,000-year curse."
	done

MixUpName: ; 5a2ec (16:62ec)
	text "Mix-Up"
	done

MixUpDescription: ; 5a2f4 (16:62f4)
	text "If your opponent has any Basic"
	line "Pokémon or Evolution cards in his"
	line "or her hand, your opponent shuffles"
	line "them into his or her deck. Then,"
	line "your opponent puts an equal number"
	line "of Basic Pokémon or Evolution cards"
	line "chosen at random from his or"
	done

MixUpDescriptionCont: ; 5a3df (16:63df)
	text "her deck into his or her hand. Your"
	line "opponent shuffles his or her deck"
	line "afterward."
	done

DancingEmbersName: ; 5a431 (16:6431)
	text "Dancing Embers"
	done

DancingEmbersDescription: ; 5a441 (16:6441)
	text "Flip 8 coins. This attack does 10"
	line "damage times the number of heads."
	done

Ninetales2Description: ; 5a486 (16:6486)
	text "According to an enduring legend,"
	line "9 noble heroes were united and"
	line "reincarnated as this."
	done

GrowlitheName: ; 5a4dd (16:64dd)
	text "Growlithe"
	done

FlareName: ; 5a4e8 (16:64e8)
	text "Flare"
	done

PuppyName: ; 5a4ef (16:64ef)
	text "Puppy"
	done

GrowlitheDescription: ; 5a4f6 (16:64f6)
	text "Very protective of its territory."
	line "It will bark and bite to repel"
	line "intruders from its space."
	done

ArcanineName: ; 5a552 (16:6552)
	text "Arcanine"
	done

QuickAttackName: ; 5a55c (16:655c)
	text "Quick Attack"
	done

QuickAttackDescription: ; 5a56a (16:656a)
	text "Flip a coin. If heads, this attack"
	line "does 10 damage plus 20 more damage;"
	line "if tails, this attack does 10"
	line "damage."
	done

FlamesOfRageName: ; 5a5d8 (16:65d8)
	text "Flames of Rage"
	done

FlamesOfRageDescription: ; 5a5e8 (16:65e8)
	text "Discard 2 <FIRE> Energy cards attached"
	line "to Arcanine in order to use this"
	line "attack. This attack does 40 damage"
	line "plus 10 more damage for each damage"
	line "counter on Arcanine."
	done

LegendaryName: ; 5a689 (16:6689)
	text "Legendary"
	done

Arcanine1Description: ; 5a694 (16:6694)
	text "A legendary Pokémon famous for its"
	line "beauty. It looks almost as if it"
	line "flies when it runs."
	done

ArcaninesFlamethrowerDescription: ; 5a6ed (16:66ed)
	text "Discard 1 <FIRE> Energy card attached to"
	line "Arcanine in order to use this"
	line "attack."
	done

TakeDownName: ; 5a739 (16:6739)
	text "Take Down"
	done

TakeDownDescription: ; 5a744 (16:6744)
	text "Arcanine does 30 damage to itself."
	done

Arcanine2Description: ; 5a768 (16:6768)
	text "A Pokémon that has been long admired"
	line "for its beauty. It runs gracefully,"
	line "as if on wings."
	done

PonytaName: ; 5a7c2 (16:67c2)
	text "Ponyta"
	done

SmashKickName: ; 5a7ca (16:67ca)
	text "Smash Kick"
	done

FlameTailName: ; 5a7d6 (16:67d6)
	text "Flame Tail"
	done

FireHorseName: ; 5a7e2 (16:67e2)
	text "Fire Horse"
	done

PonytaDescription: ; 5a7ee (16:67ee)
	text "Its hooves are 10 times harder than"
	line "diamonds. It can trample anything"
	line "flat in moments."
	done

RapidashName: ; 5a846 (16:6846)
	text "Rapidash"
	done

StompName: ; 5a850 (16:6850)
	text "Stomp"
	done

StompDescription: ; 5a857 (16:6857)
	text "Flip a coin. If heads, this attack"
	line "does 20 damage plus 10 more damage;"
	line "if tails, this attack does 20"
	line "damage."
	done

AgilityName: ; 5a8c5 (16:68c5)
	text "Agility"
	done

RapidashsAgilityDescription: ; 5a8ce (16:68ce)
	text "Flip a coin. If heads, during your"
	line "opponent's next turn, prevent all"
	line "effects of attacks, including"
	line "damage, done to Rapidash."
	done

RapidashDescription: ; 5a94c (16:694c)
	text "Very competitive, this Pokémon will"
	line "chase anything that moves fast in"
	line "the hopes of racing it."
	done

MagmarName: ; 5a9ab (16:69ab)
	text "Magmar"
	done

FirePunchName: ; 5a9b3 (16:69b3)
	text "Fire Punch"
	done

FirePunchDescription: ; 5a9bf (16:69bf)
	text "Discard 1 <FIRE> Energy card attached to"
	line "Magmar in order to use this attack."
	done

SpitfireName: ; 5aa09 (16:6a09)
	text "Spitfire"
	done

Magmar1Description: ; 5aa13 (16:6a13)
	text "Its body always burns with an orange"
	line "glow that enables it to hide"
	line "perfectly among flames."
	done

SmokescreenName: ; 5aa6e (16:6a6e)
	text "Smokescreen"
	done

MagmarsSmokescreenDescription: ; 5aa7b (16:6a7b)
	text "If the Defending Pokémon tries to"
	line "attack during your opponent's next"
	line "turn, your opponent flips a coin. If"
	line "tails, that attack does nothing."
	done

Magmar2Description: ; 5ab07 (16:6b07)
	text "Found at the mouths of volcanoes and"
	line "extremely hard to spot. There are"
	line "very few instances of capturing this"
	line "Pokémon."
	done

FlareonName: ; 5ab7d (16:6b7d)
	text "Flareon"
	done

EeveeName: ; 5ab86 (16:6b86)
	text "Eevee"
	done

BiteName: ; 5ab8d (16:6b8d)
	text "Bite"
	done

RageName: ; 5ab93 (16:6b93)
	text "Rage"
	done

FlareonsRageDescription: ; 5ab99 (16:6b99)
	text "Does 10 damage plus 10 more damage"
	line "for each damage counter on Flareon."
	done

Flareon1Description: ; 5abe1 (16:6be1)
	text "It has a flame chamber inside its"
	line "body. It inhales, then blows out"
	line "fire that is over 3,000 degrees."
	done

FlareonsFlamethrowerDescription: ; 5ac46 (16:6c46)
	text "Discard 1 <FIRE> Energy card attached to"
	line "Flareon in order to use this attack."
	done

Flareon2Description: ; 5ac91 (16:6c91)
	text "When storing thermal energy in its"
	line "body, its temperature could soar to"
	line "over 1,600 degrees."
	done

MoltresName: ; 5aced (16:6ced)
	text "Moltres"
	done

WildfireName: ; 5acf6 (16:6cf6)
	text "Wildfire"
	done

WildfireDescription: ; 5ad00 (16:6d00)
	text "You may discard any number of <FIRE>"
	line "Energy cards attached to Moltres"
	line "when you use this attack. If you do,"
	line "discard that many cards from the top"
	line "of your opponent's deck."
	done

DiveBombName: ; 5ada6 (16:6da6)
	text "Dive Bomb"
	done

Moltres1Description: ; 5adb1 (16:6db1)
	text "Known as the legendary bird of fire."
	line "Every flap of its wings creates a"
	line "dazzling flash of flames."
	done

FiregiverName: ; 5ae13 (16:6e13)
	text "Firegiver"
	done

FiregiverDescription: ; 5ae1e (16:6e1e)
	text "When you put Moltres into play"
	line "during your turn (not during"
	line "set-up), put from 1 to 4 (chosen at"
	line "random) <FIRE> Energy cards from your"
	line "deck into your hand. Shuffle your"
	line "deck afterward."
	done

Moltres2Description: ; 5aed3 (16:6ed3)
	text "A legendary bird Pokémon. As it"
	line "flaps its flaming wings, even the"
	line "night sky will turn red."
	done

SquirtleName: ; 5af2f (16:6f2f)
	text "Squirtle"
	done

BubbleName: ; 5af39 (16:6f39)
	text "Bubble"
	done

WithdrawName: ; 5af41 (16:6f41)
	text "Withdraw"
	done

SquirtlesWithdrawDescription: ; 5af4b (16:6f4b)
	text "Flip a coin. If heads, prevent all"
	line "damage done to Squirtle during your"
	line "opponent's next turn. (Any other"
	line "effects of attacks still happen.)"
	done

TinyTurtleName: ; 5afd6 (16:6fd6)
	text "Tiny Turtle"
	done

SquirtleDescription: ; 5afe3 (16:6fe3)
	text "After birth, its back swells and"
	line "hardens into a shell. It powerfully"
	line "sprays foam from its mouth."
	done

WartortleName: ; 5b045 (16:7045)
	text "Wartortle"
	done

WartortlesWithdrawDescription: ; 5b050 (16:7050)
	text "Flip a coin. If heads, prevent all"
	line "damage done to Wartortle during your"
	line "opponent's next turn. (Any other"
	line "effects of attacks still happen.)"
	done

TurtleName: ; 5b0dc (16:70dc)
	text "Turtle"
	done

WartortleDescription: ; 5b0e4 (16:70e4)
	text "Often hides in water to stalk unwary"
	line "prey. When swimming quickly, it"
	line "moves its ears to maintain balance."
	done

BlastoiseName: ; 5b14e (16:714e)
	text "Blastoise"
	done

RainDanceName: ; 5b159 (16:7159)
	text "Rain Dance"
	done

RainDanceDescription: ; 5b165 (16:7165)
	text "As often as you like during your"
	line "turn (before your attack), you may"
	line "attach 1 <WATER> Energy card to 1 of"
	line "your <WATER> Pokémon. (This doesn't use"
	line "up your 1 Energy card attachment"
	line "for the turn.)"
	done

RainDanceDescriptionCont: ; 5b21d (16:721d)
	text "This power can't be used if"
	line "Blastoise is Asleep, Confused, or"
	line "Paralyzed."
	done

HydroPumpName: ; 5b267 (16:7267)
	text "Hydro Pump"
	done

HydroPumpDescription: ; 5b273 (16:7273)
	text "Does 40 damage plus 10 more damage"
	line "for each <WATER> Energy attached to"
	line "Blastoise 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

ShellfishName: ; 5b322 (16:7322)
	text "Shellfish"
	done

BlastoiseDescription: ; 5b32d (16:732d)
	text "A brutal Pokémon with pressurized"
	line "water jets on its shell. They are"
	line "used for high-speed tackles."
	done

PsyduckName: ; 5b38f (16:738f)
	text "Psyduck"
	done

HeadacheName: ; 5b398 (16:7398)
	text "Headache"
	done

HeadacheDescription: ; 5b3a2 (16:73a2)
	text "Your opponent can't play Trainer"
	line "cards during his or her next turn."
	done

DuckName: ; 5b3e7 (16:73e7)
	text "Duck"
	done

PsyduckDescription: ; 5b3ed (16:73ed)
	text "While lulling its enemies with its"
	line "vacant look, this wily Pokémon will"
	line "use psychokinetic powers."
	done

GolduckName: ; 5b44f (16:744f)
	text "Golduck"
	done

PsyshockName: ; 5b458 (16:7458)
	text "Psyshock"
	done

HyperBeamName: ; 5b462 (16:7462)
	text "Hyper Beam"
	done

Discard1EnergyFromTargetDescription: ; 5b46e (16:746e)
	text "If the Defending Pokémon has any"
	line "Energy cards attached to it, choose"
	line "1 of them and discard it."
	done

GolduckDescription: ; 5b4ce (16:74ce)
	text "Often seen swimming elegantly by"
	line "lake shores. It is often mistaken"
	line "for the Japanese monster, Kappa."
	done

PoliwagName: ; 5b533 (16:7533)
	text "Poliwag"
	done

WaterGunName: ; 5b53c (16:753c)
	text "Water Gun"
	done

PoliwagsWaterGunDescription: ; 5b547 (16:7547)
	text "Does 10 damage plus 10 more damage"
	line "for each <WATER> Energy attached to"
	line "Poliwag 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

TadpoleName: ; 5b5f4 (16:75f4)
	text "Tadpole"
	done

PoliwagDescription: ; 5b5fd (16:75fd)
	text "Its newly grown legs prevent it"
	line "from running. It appears to prefer"
	line "swimming over trying to stand."
	done

PoliwhirlName: ; 5b660 (16:7660)
	text "Poliwhirl"
	done

AmnesiaName: ; 5b66b (16:766b)
	text "Amnesia"
	done

PoliwhirlsAmnesiaDescription: ; 5b674 (16:7674)
	text "Choose 1 of the Defending Pokémon's"
	line "attacks. That Pokémon can't use that"
	line "attack during your opponent's next"
	line "turn."
	done

DoubleslapName: ; 5b6e7 (16:76e7)
	text "Doubleslap"
	done

PoliwhirlsDescription: ; 5b6f3 (16:76f3)
	text "Capable of living in or out of"
	line "water. When out of water, it sweats"
	line "to keep its body slimy."
	done

PoliwrathName: ; 5b74f (16:774f)
	text "Poliwrath"
	done

PoliwrathsWaterGunDescription: ; 5b75a (16:775a)
	text "Does 30 damage plus 10 more damage"
	line "for each <WATER> Energy attached to"
	line "Poliwrath but not used to pay for"
	line "this attack's Energy cost. You"
	line "can't add more than 20 damage in"
	line "this way."
	done

WhirlpoolName: ; 5b809 (16:7809)
	text "Whirlpool"
	done

PoliwrathDescription: ; 5b814 (16:7814)
	text "An adept swimmer at both the front"
	line "crawl and breaststroke. Easily"
	line "overtakes the best human swimmers."
	done

TentacoolName: ; 5b87a (16:787a)
	text "Tentacool"
	done

CowardiceName: ; 5b885 (16:7885)
	text "Cowardice"
	done

CowardiceDescription: ; 5b890 (16:7890)
	text "At any time during your turn"
	line "(before your attack), you may return"
	line "Tentacool to your hand. (Discard all"
	line "cards attached to Tentacool.) This"
	line "power can't be used the turn you put"
	line "Tentacool into play or if Tentacool"
	line "is Asleep, Confused, or Paralyzed."
	done

JellyfishName: ; 5b987 (16:7987)
	text "Jellyfish"
	done

TentacoolDescription: ; 5b992 (16:7992)
	text "Drifts in shallow seas. Anglers who"
	line "hook them by accident are often"
	line "punished by its stinging acid."
	done

TentacruelName: ; 5b9f6 (16:79f6)
	text "Tentacruel"
	done

JellyfishStingName: ; 5ba02 (16:7a02)
	text "Jellyfish Sting"
	done

TentacruelDescription: ; 5ba13 (16:7a13)
	text "The tentacles are normally kept"
	line "short. On hunts, they are extended"
	line "to ensnare and immobilize prey."
	done

SeelName: ; 5ba77 (16:7a77)
	text "Seel"
	done

HeadbuttName: ; 5ba7d (16:7a7d)
	text "Headbutt"
	done

SeaLionName: ; 5ba87 (16:7a87)
	text "Sea Lion"
	done

SeelDescription: ; 5ba91 (16:7a91)
	text "The protruding horn on its head is"
	line "very hard. This horn is used for"
	line "bashing through thick ice."
	done

DewgongName: ; 5baf1 (16:7af1)
	text "Dewgong"
	done

AuroraBeamName: ; 5bafa (16:7afa)
	text "Aurora Beam"
	done

IceBeamName: ; 5bb07 (16:7b07)
	text "Ice Beam"
	done

DewgongDescription: ; 5bb11 (16:7b11)
	text "Stores thermal energy in its body."
	line "Swims at a steady 8 knots even in"
	line "intensely cold waters."
	done

ShellderName: ; 5bb6e (16:7b6e)
	text "Shellder"
	done

HideInShellName: ; 5bb78 (16:7b78)
	text "Hide in Shell"
	done

HideInShellDescription: ; 5bb87 (16:7b87)
	text "Flip a coin. If heads, prevent all"
	line "damage done to Shellder during your"
	line "opponent's next turn. (Any other"
	line "effects of attacks still happen.)"
	done

BivalveName: ; 5bc12 (16:7c12)
	text "Bivalve"
	done

ShellderDescription: ; 5bc1b (16:7c1b)
	text "Its hard shell repels any kind of"
	line "attack. It is vulnerable only when"
	line "its shell is open."
	done

CloysterName: ; 5bc74 (16:7c74)
	text "Cloyster"
	done

ClampName: ; 5bc7e (16:7c7e)
	text "Clamp"
	done

ClampDescription: ; 5bc85 (16:7c85)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon is now Paralyzed. If tails,"
	line "this attack does nothing (not even"
	line "damage)."
	done

SpikeCannonName: ; 5bcfb (16:7cfb)
	text "Spike Cannon"
	done

CloysterDescription: ; 5bd09 (16:7d09)
	text "When attacked, it launches its horns"
	line "in quick volleys. Its innards have"
	line "never been seen."
	done

KrabbyName: ; 5bd63 (16:7d63)
	text "Krabby"
	done

KrabbysCallForFamilyDescription: ; 5bd6b (16:7d6b)
	text "Search your deck for a Basic Pokémon"
	line "named Krabby 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

RiverCrabName: ; 5be0a (16:7e0a)
	text "River Crab"
	done

KrabbyDescription: ; 5be16 (16:7e16)
	text "Its pincers are not only powerful"
	line "weapons, they are used for balance"
	line "when walking sideways."
	done

KinglerName: ; 5be73 (16:7e73)
	text "Kingler"
	done

FlailName: ; 5be7c (16:7e7c)
	text "Flail"
	done

KinglersFlailDescription: ; 5be83 (16:7e83)
	text "Does 10 damage times the number of"
	line "damage counters on Kingler."
	done

CrabhammerName: ; 5bec3 (16:7ec3)
	text "Crabhammer"
	done

PincerName: ; 5becf (16:7ecf)
	text "Pincer"
	done

KinglerDescription: ; 5bed7 (16:7ed7)
	text "The large pincer has 10,000"
	line "horsepower of crushing power."
	line "However, its huge size makes it"
	line "unwieldy to use."
	done

HorseaName: ; 5bf43 (16:7f43)
	text "Horsea"
	done

OpponentAttackMayDoNothingDescription: ; 5bf4b (16:7f4b)
	text "If the Defending Pokémon tries to"
	line "attack during your opponent's next"
	line "turn, your opponent flips a coin."
	line "If tails, that attack does nothing."
	done

DragonName: ; 5bfd7 (16:7fd7)
	text "Dragon"
	done

	ds $21