summaryrefslogtreecommitdiff
path: root/src/text/text12.asm
blob: 1ebe4cf08cad09043ce7ae10b5501cc2538c069d (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
DamageSwapDescription: ; 60000 (18:4000)
	text "As often as you like during your"
	line "turn (before your attack), you may"
	line "move 1 damage counter from 1 of your"
	line "Pokémon to another as long as you"
	line "don't Knock Out that Pokémon."
	line "This power can't be used if Alakazam"
	line "is Asleep, Confused, or Paralyzed."
	done

AlakazamDescription: ; 600f2 (18:40f2)
	text "Its brain can outperform a"
	line "supercomputer. Its intelligence"
	line "quotient is said to be 5000."
	done

SlowpokeName: ; 6014b (18:414b)
	text "Slowpoke"
	done

SlowpokesAmnesiaDescription: ; 60155 (18:4155)
	text "Choose 1 of the Defending Pokémon's"
	line "attacks. That Pokémon can't use"
	line "that attack during your opponent's"
	line "next turn."
	done

DopeyName: ; 601c8 (18:41c8)
	text "Dopey"
	done

Slowpoke1Description: ; 601cf (18:41cf)
	text "Incredibly slow and dopey. It takes"
	line "5 seconds for it to feel pain when"
	line "under attack."
	done

SpacingOutName: ; 60225 (18:4225)
	text "Spacing Out"
	done

SpacingOutDescription: ; 60232 (18:4232)
	text "Flip a coin. If heads, remove a"
	line "damage counter from Slowpoke. This"
	line "attack can't be used if Slowpoke"
	line "has no damage counters on it."
	done

ScavengeName: ; 602b5 (18:42b5)
	text "Scavenge"
	done

ScavengeDescription: ; 602bf (18:42bf)
	text "Discard 1 <PSYCHIC> Energy card attached"
	line "to Slowpoke in order to use this"
	line "attack. Put a Trainer card from your"
	line "discard pile into your hand."
	done

SlowbroName: ; 60345 (18:4345)
	text "Slowbro"
	done

StrangeBehaviorName: ; 6034e (18:434e)
	text "Strange Behavior"
	done

StrangeBehaviorDescription: ; 60360 (18:4360)
	text "As often as you like during your"
	line "turn (before your attack), you may"
	line "move 1 damage counter from 1 of your"
	line "Pokémon to Slowbro as long as you"
	line "don't Knock Out Slowbro. This power"
	line "can't be used if Slowbro is Asleep,"
	line "Confused, or Paralyzed."
	done

HermitcrabName: ; 6044c (18:444c)
	text "Hermitcrab"
	done

SlowbroDescription: ; 60458 (18:4458)
	text "The Shellder that is latched onto"
	line "Slowpoke's tail is said to feed on"
	line "the host's left-over scraps."
	done

GastlyName: ; 604bb (18:44bb)
	text "Gastly"
	done

SleepingGasName: ; 604c3 (18:44c3)
	text "Sleeping Gas"
	done

MayInflictSleepDescription: ; 604d1 (18:44d1)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon is now Asleep."
	done

DestinyBondName: ; 6050e (18:450e)
	text "Destiny Bond"
	done

DestinyBondDescription: ; 6051c (18:451c)
	text "Discard 1 <PSYCHIC> Energy card attached to"
	line "Gastly in order to use this attack."
	line "If a Pokémon Knocks Out Gastly"
	line "during your opponent's next turn,"
	line "Knock Out that Pokémon."
	done

GasName: ; 605bf (18:45bf)
	text "Gas"
	done

Gastly1Description: ; 605c4 (18:45c4)
	text "Almost invisible, this gaseous"
	line "Pokémon cloaks the target and puts"
	line "it to sleep without notice."
	done

LickName: ; 60623 (18:4623)
	text "Lick"
	done

EnergyConversionName: ; 60629 (18:4629)
	text "Energy Conversion"
	done

EnergyConversionDescription: ; 6063c (18:463c)
	text "Put up to 2 Energy cards from your"
	line "discard pile into your hand. Gastly"
	line "does 10 damage to itself."
	done

Gastly2Description: ; 6069e (18:469e)
	text "A mysterious Pokémon. Some say it is"
	line "a lifeform from another dimension,"
	line "while others believe it is formed"
	line "from smog."
	done

HaunterName: ; 60714 (18:4714)
	text "Haunter"
	done

TransparencyName: ; 6071d (18:471d)
	text "Transparency"
	done

TransparencyDescription: ; 6072b (18:472b)
	text "Whenever an attack does anything to"
	line "Haunter, flip a coin. If heads,"
	line "prevent all effects of that attack,"
	line "including damage, done to Haunter."
	line "This power stops working while"
	line "Haunter is Asleep, Confused, or"
	line "Paralyzed."
	done

NightmareName: ; 60801 (18:4801)
	text "Nightmare"
	done

HaunterDescription: ; 6080c (18:480c)
	text "Because of its ability to slip"
	line "through block walls, it is said to"
	line "be from another dimension."
	done

DreamEaterName: ; 6086a (18:486a)
	text "Dream Eater"
	done

DreamEaterDescription: ; 60877 (18:4877)
	text "You can't use this attack unless"
	line "the Defending Pokémon is Asleep."
	done

GengarName: ; 608ba (18:48ba)
	text "Gengar"
	done

CurseName: ; 608c2 (18:48c2)
	text "Curse"
	done

CurseDescription: ; 608c9 (18:48c9)
	text "Once during your turn (before your"
	line "attack), you may move 1 damage"
	line "counter from 1 of your opponent's"
	line "Pokémon to another (even if it would"
	line "Knock Out the other Pokémon)."
	line "This power can't be used if Gengar"
	line "is Asleep, Confused, or Paralyzed."
	done

DarkMindName: ; 609b7 (18:49b7)
	text "Dark Mind"
	done

DarkMindDescription: ; 609c2 (18:49c2)
	text "If your opponent has any Benched"
	line "Pokémon, choose 1 of them and this"
	line "attack does 10 damage to it."
	line "(Don't apply Weakness and Resistance"
	line "for Benched Pokémon.)"
	done

ShadowName: ; 60a5f (18:4a5f)
	text "Shadow"
	done

GengarDescription: ; 60a67 (18:4a67)
	text "Under a full moon, this Pokémon"
	line "likes to mimic the shadows of people"
	line "and laugh at their fright."
	done

DrowzeeName: ; 60ac8 (18:4ac8)
	text "Drowzee"
	done

PoundName: ; 60ad1 (18:4ad1)
	text "Pound"
	done

DrowzeeDescription: ; 60ad8 (18:4ad8)
	text "Puts enemies to sleep, then eats"
	line "their dreams. Occasionally gets sick"
	line "from eating bad dreams."
	done

HypnoName: ; 60b37 (18:4b37)
	text "Hypno"
	done

ProphecyName: ; 60b3e (18:4b3e)
	text "Prophecy"
	done

ProphecyDescription: ; 60b48 (18:4b48)
	text "Look at up to 3 cards from the top"
	line "of either player's deck and"
	line "rearrange them as you like."
	done

HypnoDescription: ; 60ba4 (18:4ba4)
	text "When it locks eyes with an enemy,"
	line "it will use a mix of psi moves such"
	line "as Hypnosis and Confusion."
	done

MrMimeName: ; 60c06 (18:4c06)
	text "Mr. Mime"
	done

InvisibleWallName: ; 60c10 (18:4c10)
	text "Invisible Wall"
	done

InvisibleWallDescription: ; 60c20 (18:4c20)
	text "Whenever an attack (including your"
	line "own) does 30 or more damage to Mr."
	line "Mime (after applying Weakness and"
	line "Resistance), prevent that damage."
	line "(Any other effects of attacks still"
	line "happen.)"
	done

InvisibleWallDescriptionCont: ; 60cd8 (18:4cd8)
	text "This power can't be used if Mr. Mime"
	line "is Asleep, Confused, or Paralyzed."
	done

MeditateName: ; 60d21 (18:4d21)
	text "Meditate"
	done

MrMimesMeditateDescription: ; 60d2b (18:4d2b)
	text "Does 10 damage plus 10 more damage"
	line "for each damage counter on the"
	line "Defending Pokémon."
	done

BarrierName: ; 60d81 (18:4d81)
	text "Barrier"
	done

MrMimeDescription: ; 60d8a (18:4d8a)
	text "If interrupted while miming, it will"
	line "slap around the enemy with its broad"
	line "hands."
	done

JynxName: ; 60ddc (18:4ddc)
	text "Jynx"
	done

DoubleAttackX10Description: ; 60de2 (18:4de2)
	text "Flip 2 coins. This attack does 10"
	line "damage times the number of heads."
	done

JynxsMeditateDescription: ; 60e27 (18:4e27)
	text "Does 20 damage plus 10 more damage"
	line "for each damage counter on the"
	line "Defending Pokémon."
	done

HumanShapeName: ; 60e7d (18:4e7d)
	text "Human Shape"
	done

JynxDescription: ; 60e8a (18:4e8a)
	text "Merely by meditating, the Pokémon"
	line "launches a powerful psychic energy"
	line "attack."
	done

MewtwoName: ; 60ed8 (18:4ed8)
	text "Mewtwo"
	done

PsychicName: ; 60ee0 (18:4ee0)
	text "Psychic"
	done

PsychicDescription: ; 60ee9 (18:4ee9)
	text "Does 10 damage plus 10 more damage"
	line "for each Energy card attached to the"
	line "Defending Pokémon."
	done

BarrierDescription: ; 60f45 (18:4f45)
	text "Discard 1 <PSYCHIC> Energy card attached to"
	line "Mewtwo in order to use this attack."
	line "During your opponent's next turn,"
	line "prevent all effects of attacks,"
	line "including damage, done to Mewtwo."
	done

GeneticName: ; 60ff3 (18:4ff3)
	text "Genetic"
	done

Mewtwo1Description: ; 60ffc (18:4ffc)
	text "A scientist created this Pokémon"
	line "after years of horrific"
	line "gene-splicing and DNA engineering"
	line "experiments."
	done

EnergyAbsorptionName: ; 61065 (18:5065)
	text "Energy Absorption"
	done

EnergyAbsorptionDescription: ; 61078 (18:5078)
	text "Choose up to 2 Energy cards from"
	line "your discard pile and attach them"
	line "to Mewtwo."
	done

PsyburnName: ; 610c7 (18:50c7)
	text "Psyburn"
	done

Mewtwo2Description: ; 610d0 (18:50d0)
	text "Years of genetic experiments"
	line "resulted in the creation of this"
	line "never-before-seen violent Pokémon."
	done

MewName: ; 61132 (18:5132)
	text "Mew"
	done

NeutralizingShieldName: ; 61137 (18:5137)
	text "Neutralizing Shield"
	done

NeutralizingShieldDescription: ; 6114c (18:514c)
	text "Prevent all effects of attacks,"
	line "including damage, done to Mew by"
	line "evolved Pokémon (excluding your"
	line "own). This power stops working while"
	line "Mew is Asleep, Confused, or"
	line "Paralyzed."
	done

NewSpeciesName: ; 611fa (18:51fa)
	text "New Species"
	done

Mew1Description: ; 61207 (18:5207)
	text "So rare that it is still said to be"
	line "a mirage by many experts. Only a few"
	line "people have seen it worldwide."
	done

MysteryAttackName: ; 61270 (18:5270)
	text "Mystery Attack"
	done

MysteryAttackDescription: ; 61280 (18:5280)
	text "Does a random amount of damage to"
	line "the Defending Pokémon and may cause"
	line "a random effect to the Defending"
	line "Pokémon."
	done

Mew2Description: ; 612f1 (18:52f1)
	text "When viewed through a microscope, "
	line "this Pokémon's short, fine, delicate"
	line "hair can be seen."
	done

PsywaveName: ; 6134c (18:534c)
	text "Psywave"
	done

PsywaveDescription: ; 61355 (18:5355)
	text "Does 10 damage times the number of"
	line "Energy cards attached to the"
	line "Defending Pokémon."
	done

DevolutionBeamName: ; 613a9 (18:53a9)
	text "Devolution Beam"
	done

DevolutionBeamDescription: ; 613ba (18:53ba)
	text "Choose an evolved Pokémon (Your"
	line "own or your opponent's). Return"
	line "the highest stage evolution card"
	line "on that Pokémon to Its player's"
	line "hand."
	done

PidgeyName: ; 61442 (18:5442)
	text "Pidgey"
	done

TinyBirdName: ; 6144a (18:544a)
	text "Tiny Bird"
	done

PidgeyDescription: ; 61455 (18:5455)
	text "A common sight in forests and woods."
	line "It flaps its wings at ground level"
	line "to kick up blinding sand."
	done

PidgeottoName: ; 614b8 (18:54b8)
	text "Pidgeotto"
	done

MirrorMoveName: ; 614c3 (18:54c3)
	text "Mirror Move"
	done

PidgeottosMirrorMoveDescription: ; 614d0 (18:54d0)
	text "If Pidgeotto was attacked last turn,"
	line "do the final result of that attack"
	line "on Pidgeotto to the Defending"
	line "Pokémon."
	done

BirdName: ; 61540 (18:5540)
	text "Bird"
	done

PidgeottoDescription: ; 61546 (18:5546)
	text "Very protective of its sprawling"
	line "territory, this Pokémon will"
	line "fiercely peck at any intruder."
	done

PidgeotName: ; 615a4 (18:55a4)
	text "Pidgeot"
	done

SlicingWindName: ; 615ad (18:55ad)
	text "Slicing Wind"
	done

SlicingWildDescription: ; 615bb (18:55bb)
	text "Does 30 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

GaleName: ; 6168d (18:568d)
	text "Gale"
	done

GaleDescription: ; 61693 (18:5693)
	text "Switch Pidgeot with 1 of your"
	line "Benched Pokémon chosen at random."
	line "If your opponent has any Benched"
	line "Pokémon, switch the Defending"
	line "Pokémon with 1 of them chosen at"
	line "random. (Do the damage before"
	line "switching the Pokémon.)"
	done

Pidgeot1Description: ; 6176a (18:576a)
	text "This Pokémon flies at Mach 2 speed,"
	line "seeking prey. Its large talons are"
	line "feared as wicked weapons."
	done

HurricaneName: ; 617cc (18:57cc)
	text "Hurricane"
	done

HurricaneDescription: ; 617d7 (18:57d7)
	text "Unless this attack Knocks Out the"
	line "Defending Pokémon, return the"
	line "Defending Pokémon and all cards"
	line "attached to it to your opponent's"
	line "hand."
	done

Pidgeot2Description: ; 61860 (18:5860)
	text "When hunting, it skims the surface"
	line "of water at high speed to pick off"
	line "unwary prey such as Magikarp."
	done

RattataName: ; 618c5 (18:58c5)
	text "Rattata"
	done

RatName: ; 618ce (18:58ce)
	text "Rat"
	done

RattataDescription: ; 618d3 (18:58d3)
	text "Bites anything when it attacks."
	line "Small and very quick, it is a common"
	line "sight in many places."
	done

RaticateName: ; 6192f (18:592f)
	text "Raticate"
	done

SuperFangName: ; 61939 (18:5939)
	text "Super Fang"
	done

SuperFangDescription: ; 61945 (18:5945)
	text "Does damage to the Defending Pokémon"
	line "equal to half the Defending"
	line "Pokémon's remaining HP (rounded up"
	line "to the nearest 10)."
	done

RaticateDescription: ; 619be (18:59be)
	text "It uses its whiskers to maintain its"
	line "balance. It seems to slow down if"
	line "they are cut off."
	done

SpearowName: ; 61a18 (18:5a18)
	text "Spearow"
	done

PeckName: ; 61a21 (18:5a21)
	text "Peck"
	done

SpearowsMirrorMoveDescription: ; 61a27 (18:5a27)
	text "If Spearow was attacked last turn,"
	line "do the final result of that attack"
	line "on Spearow to the Defending Pokémon."
	done

SpearowDescription: ; 61a93 (18:5a93)
	text "Eats bugs in grassy areas. It has to"
	line "flap its short wings at high speed"
	line "to stay airborne."
	done

FearowName: ; 61aee (18:5aee)
	text "Fearow"
	done

FearowsAgilityDescription: ; 61af6 (18:5af6)
	text "Flip a coin. If heads, during your"
	line "opponent's next turn, prevent all"
	line "effects of attacks, including"
	line "damage, done to Fearow."
	done

DrillPeckName: ; 61b72 (18:5b72)
	text "Drill Peck"
	done

BeakName: ; 61b7e (18:5b7e)
	text "Beak"
	done

FearowDescription: ; 61b84 (18:5b84)
	text "With its huge and magnificent wings,"
	line "it can keep aloft without ever"
	line "having to land for rest."
	done

ClefairyName: ; 61be2 (18:5be2)
	text "Clefairy"
	done

SingName: ; 61bec (18:5bec)
	text "Sing"
	done

MetronomeName: ; 61bf2 (18:5bf2)
	text "Metronome"
	done

ClefairysMetronomeDescription: ; 61bfd (18:5bfd)
	text "Choose 1 of the Defending Pokémon's"
	line "attacks. Metronome copies that"
	line "attack except for its Energy costs."
	line "(No matter what type the Defending"
	line "Pokemon is, Clefairy's type is"
	line "still Colorless.)"
	done

FairyName: ; 61cb9 (18:5cb9)
	text "Fairy"
	done

ClefairyDescription: ; 61cc0 (18:5cc0)
	text "Its magical and cute appeal has many"
	line "admirers. It is rare and found only"
	line "in certain areas."
	done

ClefableName: ; 61d1c (18:5d1c)
	text "Clefable"
	done

ClefablesMetronomeDescription: ; 61d26 (18:5d26)
	text "Choose 1 of the Defending Pokémon's"
	line "attacks. Metronome copies that"
	line "attack except for its Energy costs."
	line "(No matter what type the Defending"
	line "Pokémon is, Clefable's type is"
	line "still Colorless.)"
	done

ClefablesMinimizeDescription: ; 61de2 (18:5de2)
	text "All damage done by attacks to"
	line "Clefable during your opponent's next"
	line "turn is reduced by 20 (after"
	line "applying Weakness and Resistance)."
	done

ClefableDescription: ; 61e66 (18:5e66)
	text "A timid Fairy Pokémon that is rarely"
	line "seen. It will run and hide the"
	line "moment it senses people."
	done

JigglypuffName: ; 61ec4 (18:5ec4)
	text "Jigglypuff"
	done

FirstAidName: ; 61ed0 (18:5ed0)
	text "First Aid"
	done

FirstAidDescription: ; 61edb (18:5edb)
	text "Remove 1 damage counter from"
	line "Jigglypuff."
	done

DoubleEdgeName: ; 61f05 (18:5f05)
	text "Double-edge"
	done

JigglypuffsDoubleEdgeDescription: ; 61f12 (18:5f12)
	text "Jigglypuff does 20 damage to itself."
	done

BalloonName: ; 61f38 (18:5f38)
	text "Balloon"
	done

Jigglypuff1Description: ; 61f41 (18:5f41)
	text "When its huge eyes light up, it"
	line "sings a mysteriously soothing"
	line "melody that lulls its enemies to"
	line "sleep."
	done

FriendshipSongName: ; 61fa8 (18:5fa8)
	text "Friendship Song"
	done

FriendshipSongDescription: ; 61fb9 (18:5fb9)
	text "Flip a coin. If heads, put a Basic"
	line "Pokémon card chosen at random from"
	line "your deck onto your Bench. (You"
	line "can't use this attack if your Bench"
	line "is full.)"
	done

ExpandName: ; 6204e (18:604e)
	text "Expand"
	done

ExpandDescription: ; 62056 (18:6056)
	text "All damage done to Jigglypuff during"
	line "your opponent's next turn is reduced"
	line "by 10 (after applying Weakness and"
	line "Resistance)."
	done

Jigglypuff2Description: ; 620d1 (18:60d1)
	text "Uses its alluring eyes to enrapture"
	line "its foe. It then sings a pleasing"
	line "melody that lulls the foe to sleep."
	done

LullabyName: ; 6213c (18:613c)
	text "Lullaby"
	done

Jigglypuff3Description: ; 62145 (18:6145)
	text "When its huge eyes light up, it"
	line "sings a mysteriously soothing melody"
	line "that lulls its enemies to sleep."
	done

WigglytuffName: ; 621ac (18:61ac)
	text "Wigglytuff"
	done

DoTheWaveName: ; 621b8 (18:61b8)
	text "Do the Wave"
	done

DoTheWaveDescription: ; 621c5 (18:61c5)
	text "Does 10 damage plus 10 more damage"
	line "for each of your Benched Pokémon."
	done

WigglytuffDescription: ; 6220b (18:620b)
	text "The body is soft and rubbery. When"
	line "angered, it will suck in air and"
	line "inflate itself to an enormous size."
	done

MeowthName: ; 62274 (18:6274)
	text "Meowth"
	done

CatPunchName: ; 6227c (18:627c)
	text "Cat Punch"
	done

CatPunchDescription: ; 62287 (18:6287)
	text "Does 20 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

ScratchCatName: ; 62359 (18:6359)
	text "Scratch Cat"
	done

Meowth1Description: ; 62366 (18:6366)
	text "Appears to be more active at night."
	line "It loves round and shiny things, so"
	line "it can't stop from picking them up."
	done

PayDayName: ; 623d3 (18:63d3)
	text "Pay Day"
	done

PayDayDescription: ; 623dc (18:63dc)
	text "Flip a coin. If heads, draw a card."
	done

Meowth2Description: ; 62401 (18:6401)
	text "Adores circular objects. Wanders"
	line "the streets on a nightly basis to"
	line "look for dropped loose change."
	done

PersianName: ; 62464 (18:6464)
	text "Persian"
	done

PounceName: ; 6246d (18:646d)
	text "Pounce"
	done

PounceDescription: ; 62475 (18:6475)
	text "If the Defending Pokémon attacks"
	line "Persian during your opponent's next"
	line "turn, any damage done by the attack"
	line "is reduced by 10 (after applying"
	line "Weakness and Resistance). (Benching"
	line "or evolving either Pokémon ends this"
	line "effect.)"
	done

ClassyCatName: ; 62552 (18:6552)
	text "Classy Cat"
	done

PersianDescription: ; 6255e (18:655e)
	text "Although its fur has many admirers,"
	line "it is tough to raise as a pet"
	line "because of its fickle meanness."
	done

FarfetchdName: ; 625c1 (18:65c1)
	text "Farfetch'd"
	done

LeekSlapName: ; 625cd (18:65cd)
	text "Leek Slap"
	done

LeekSlapDescription: ; 625d8 (18:65d8)
	text "Flip a coin. If tails, this attack"
	line "does nothing. Either way, you can't"
	line "use this attack again as long as"
	line "Farfetch'd stays in play (even"
	line "putting Farfetch'd on the Bench"
	line "won't let you use it again)."
	done

PotSmashName: ; 6269d (18:669d)
	text "Pot Smash"
	done

WildDuckName: ; 626a8 (18:66a8)
	text "Wild Duck"
	done

FarfetchdDescription: ; 626b3 (18:66b3)
	text "The sprig of green onions it holds"
	line "is its weapon. This sprig is used"
	line "much like a metal sword."
	done

DoduoName: ; 62712 (18:6712)
	text "Doduo"
	done

FuryAttackName: ; 62719 (18:6719)
	text "Fury Attack"
	done

TwinBirdName: ; 62726 (18:6726)
	text "Twin Bird"
	done

DoduoDescription: ; 62731 (18:6731)
	text "A bird that makes up for its poor"
	line "flying with its fast foot speed."
	line "Leaves giant footprints."
	done

DodrioName: ; 6278e (18:678e)
	text "Dodrio"
	done

RetreatAidName: ; 62796 (18:6796)
	text "Retreat Aid"
	done

RetreatAidDescription: ; 627a3 (18:67a3)
	text "As long as Dodrio is Benched, pay"
	line "<COLORLESS> less to retreat your Active"
	line "Pokémon."
	done

DodriosRageDescription: ; 627ee (18:67ee)
	text "Does 10 damage plus 10 more damage"
	line "for each damage counter on Dodrio."
	done

TriplebirdName: ; 62835 (18:6835)
	text "Triplebird"
	done

DodrioDescription: ; 62841 (18:6841)
	text "Uses its three brains to execute"
	line "complex plans. While two heads"
	line "sleep, one head stays awake."
	done

LickitungName: ; 6289f (18:689f)
	text "Lickitung"
	done

TongueWrapName: ; 628aa (18:68aa)
	text "Tongue Wrap"
	done

LickingName: ; 628b7 (18:68b7)
	text "Licking"
	done

LickitungDescription: ; 628c0 (18:68c0)
	text "Its tongue can be extended like a"
	line "chameleon's. It leaves a stinging"
	line "sensation when it licks enemies."
	done

ChanseyName: ; 62926 (18:6926)
	text "Chansey"
	done

ScrunchName: ; 6292f (18:692f)
	text "Scrunch"
	done

ScrunchDescription: ; 62938 (18:6938)
	text "Flip a coin. If heads, prevent all"
	line "damage done to Chansey during your"
	line "opponent's next turn. (Any other"
	line "effects of attacks still happen.)"
	done

ChanseysDoubleEdgeDescription: ; 629c2 (18:69c2)
	text "Chansey does 80 damage to itself."
	done

ChanseyDescription: ; 629e5 (18:69e5)
	text "A rare and elusive Pokémon that is"
	line "said to bring happiness to those"
	line "who manage to catch it."
	done

KangaskhanName: ; 62a42 (18:6a42)
	text "Kangaskhan"
	done

FetchName: ; 62a4e (18:6a4e)
	text "Fetch"
	done

FetchDescription: ; 62a55 (18:6a55)
	text "Draw a card."
	done

CometPunchName: ; 62a63 (18:6a63)
	text "Comet Punch"
	done

ParentName: ; 62a70 (18:6a70)
	text "Parent"
	done

KangaskhanDescription: ; 62a78 (18:6a78)
	text "The infant rarely ventures out of"
	line "its mother's protective pouch until"
	line "it is three years old."
	done

TaurosName: ; 62ad6 (18:6ad6)
	text "Tauros"
	done

RampageName: ; 62ade (18:6ade)
	text "Rampage"
	done

RampageDescription: ; 62ae7 (18:6ae7)
	text "Does 20 damage plus 10 more damage"
	line "for each damage counter on Tauros."
	line "Flip a coin. If tails, Tauros is"
	line "now Confused (after doing damage)."
	done

WildBullName: ; 62b72 (18:6b72)
	text "Wild Bull"
	done

TaurosDescription: ; 62b7d (18:6b7d)
	text "When it targets an enemy, it charges"
	line "furiously while whipping its body"
	line "with its long tails."
	done

DittoName: ; 62bda (18:6bda)
	text "Ditto"
	done

MorphName: ; 62be1 (18:6be1)
	text "Morph"
	done

MorphDescription: ; 62be8 (18:6be8)
	text "Remove all damage counters from"
	line "Ditto. For the rest of the game,"
	line "replace Ditto with a copy of a Basic"
	line "Pokémon card (other than Ditto)"
	line "chosen at random from your deck."
	done

MorphDescriptionCont: ; 62c90 (18:6c90)
	text "Ditto is no longer Asleep, Confused,"
	line "Paralyzed, Poisoned, or anything"
	line "else that might be the result of an"
	line "attack (just as if you had evolved"
	line "it)."
	done

TransformName: ; 62d23 (18:6d23)
	text "Transform"
	done

DittoDescription: ; 62d2e (18:6d2e)
	text "When it spots an enemy, its body"
	line "transfigures into an almost perfect"
	line "copy of its opponent."
	done

TailWagName: ; 62d8a (18:6d8a)
	text "Tail Wag"
	done

TailWagDescription: ; 62d94 (18:6d94)
	text "Flip a coin. If heads, the Defending"
	line "Pokémon can't attack Eevee during"
	line "your opponent's next turn. (Benching"
	line "or evolving either Pokémon ends this"
	line "effect.)"
	done

EvolutionName: ; 62e2f (18:6e2f)
	text "Evolution"
	done

EeveeDescription: ; 62e3a (18:6e3a)
	text "Its genetic code is irregular."
	line "It may mutate if it is exposed to"
	line "radiation from elemental stones."
	done

PorygonName: ; 62e9d (18:6e9d)
	text "Porygon"
	done

Conversion1Name: ; 62ea6 (18:6ea6)
	text "Conversion 1"
	done

Conversion1Description: ; 62eb4 (18:6eb4)
	text "If the Defending Pokémon has a"
	line "Weakness, you may change it to a"
	line "type of your choice other than"
	line "Colorless."
	done

Conversion2Name: ; 62f1f (18:6f1f)
	text "Conversion 2"
	done

Conversion2Description: ; 62f2d (18:6f2d)
	text "Change Porygon's Resistance to a"
	line "type of your choice other than"
	line "Colorless."
	done

VirtualName: ; 62f79 (18:6f79)
	text "Virtual"
	done

PorygonDescription: ; 62f82 (18:6f82)
	text "A Pokémon that consists entirely of"
	line "programming code. Capable of moving"
	line "freely in cyberspace."
	done

SnorlaxName: ; 62fe1 (18:6fe1)
	text "Snorlax"
	done

ThickSkinnedName: ; 62fea (18:6fea)
	text "Thick Skinned"
	done

ThickSkinnedDescription: ; 62ff9 (18:6ff9)
	text "Snorlax can't become Asleep,"
	line "Confused, Paralyzed, or Poisoned."
	line "This power can't be used if Snorlax"
	line "is already Asleep, Confused, or"
	line "Paralyzed."
	done

BodySlamName: ; 63088 (18:7088)
	text "Body Slam"
	done

SleepingName: ; 63093 (18:7093)
	text "Sleeping"
	done

SnorlaxDescription: ; 6309d (18:709d)
	text "Very lazy. Just eats and sleeps."
	line "As its rotund bulk builds,"
	line "it becomes steadily more slothful."
	done

DratiniName: ; 630fd (18:70fd)
	text "Dratini"
	done

DratiniDescription: ; 63106 (18:7106)
	text "Long considered a mythical Pokémon"
	line "until recently, when a small colony"
	line "was found living underwater."
	done

DragonairName: ; 6316b (18:716b)
	text "Dragonair"
	done

SlamName: ; 63176 (18:7176)
	text "Slam"
	done

DragonairDescription: ; 6317c (18:717c)
	text "A mystical Pokémon that exudes a"
	line "gentle aura. Has the ability to"
	line "change climate conditions."
	done

DragoniteName: ; 631d9 (18:71d9)
	text "Dragonite"
	done

HealingWindName: ; 631e4 (18:71e4)
	text "Healing Wind"
	done

HealingWindDescription: ; 631f2 (18:71f2)
	text "When you put Dragonite into play,"
	line "remove 2 damage counters from each"
	line "of your Pokémon. If a Pokémon has "
	line "fewer damage counters than that,"
	line "remove all of them from that"
	line "Pokémon."
	done

Dragonite1Description: ; 632a2 (18:72a2)
	text "It is said that this Pokémon lives"
	line "somewhere in the sea and that it"
	line "flies. However, it is only a rumor."
	done

StepInName: ; 6330b (18:730b)
	text "Step In"
	done

StepInDescription: ; 63314 (18:7314)
	text "Once during your turn (before your"
	line "attack), if Dragonite is on your"
	line "Bench, you may switch it with your"
	line "Active Pokémon."
	done

DoubleAttackX40Description: ; 6338c (18:738c)
	text "Flip 2 coins. This attack does 40"
	line "damage times the number of heads."
	done

DragoniteDescription: ; 633d1 (18:73d1)
	text "An extremely rarely seen marine"
	line "Pokémon. Its intelligence is said"
	line "to match that of humans."
	done

ProfessorOakName: ; 6342d (18:742d)
	text "Professor Oak"
	done

ProfessorOakDescription: ; 6343c (18:743c)
	text "Discard your hand, then draw 7"
	line "cards."
	done

ImposterProfessorOakName: ; 63463 (18:7463)
	text "Imposter Professor Oak"
	done

ImposterProfessorOakDescription: ; 6347b (18:747b)
	text "Your opponent shuffles his or her"
	line "hand into his or her deck, then"
	line "draws 7 cards."
	done

BillName: ; 634cd (18:74cd)
	text "Bill"
	done

BillDescription: ; 634d3 (18:74d3)
	text "Draw 2 cards."
	done

MrFujiName: ; 634e2 (18:74e2)
	text "Mr.Fuji"
	done

MrFujiDescription: ; 634eb (18:74eb)
	text "Choose a Pokémon on your Bench."
	line "Shuffle it and any cards attached"
	line "to it into your deck."
	done

LassName: ; 63544 (18:7544)
	text "Lass"
	done

LassDescription: ; 6354a (18:754a)
	text "You and your opponent show each"
	line "other your hands, then shuffle all"
	line "the Trainer cards from your hands"
	line "into your decks."
	done

ImakuniName: ; 635c1 (18:75c1)
	text "Imakuni?"
	done

ImakuniDescription: ; 635cb (18:75cb)
	text "Your Active Pokémon is now Confused."
	line "Imakuni wants you to play him as a"
	line "Basic Pokémon, but you can't."
	line "A mysterious creature not listed in"
	line "the Pokédex. He asks kids around the"
	line "world,”Who is cuter-Pikachu or me?”"
	done

PokemonTraderName: ; 6369f (18:769f)
	text "Pokémon Trader"
	done

PokemonTraderDescription: ; 636af (18:76af)
	text "Trade 1 of the Basic Pokémon or"
	line "Evolution cards in your hand for 1"
	line "of the Basic Pokémon or Evolution"
	line "cards from your deck. Show both"
	line "cards to your opponent."
	line "Shuffle your deck afterward."
	done

PokemonBreederName: ; 6376a (18:776a)
	text "Pokémon Breeder"
	done

PokemonBreederDescription: ; 6377b (18:777b)
	text "Put a Stage 2 Evolution card from"
	line "your hand on the matching Basic"
	line "Pokémon. You can only play this card"
	line "when you would be allowed to evolve"
	line "that Pokémon anyway."
	done

ClefairyDollName: ; 6381c (18:781c)
	text "Clefairy Doll"
	done

ClefairyDollDescription: ; 6382b (18:782b)
	text "Play Clefairy Doll as if it were a"
	line "Basic Pokémon. While in play,"
	line "Clefairy Doll counts as a Pokémon"
	line "(instead of a Trainer card)."
	line "Clefairy Doll has no attacks, can't"
	line "retreat, and can't be Asleep,"
	line "Confused, Paralyzed, or Poisoned."
	done

ClefairyDollDescriptionCont: ; 63910 (18:7910)
	text "If Clefairy Doll is Knocked Out, it"
	line "doesn't count as a Knocked Out"
	line "Pokémon. At any time during your"
	line "turn before your attack, you may"
	line "discard Clefairy Doll."
	line "(Use GameBoy Pokémon Power menu"
	line "option to do this.)"
	done

MysteriousFossilDescription: ; 639e1 (18:79e1)
	text "Play Mysterious Fossil as if it were"
	line "a Basic Pokémon. While in play,"
	line "Mysterious Fossil counts as a"
	line "Pokémon (instead of a Trainer card)."
	line "Mysterious Fossil has no attacks,"
	line "can't retreat, and can't be Asleep,"
	line "Confused, Paralyzed, or Poisoned."
	done

MysteriousFossilDescriptionCont: ; 63ad2 (18:7ad2)
	text "If Mysterious Fossil is Knocked Out,"
	line "it doesn't count as a Knocked Out"
	line "Pokémon. (Discard it anyway.) At any"
	line "time during your turn before your"
	line "attack, you may discard Mysterious"
	line "Fossil from play. (Use GameBoy Poké-"
	line "mon Power menu option to do this.)"
	done

EnergyRetrievalName: ; 63bcc (18:7bcc)
	text "Energy Retrieval"
	done

EnergyRetrievalDescription: ; 63bde (18:7bde)
	text "Trade 1 of the other cards in your"
	line "hand for up to 2 basic Energy cards"
	line "from your discard pile."
	done

SuperEnergyRetrievalName: ; 63c3e (18:7c3e)
	text "Super Energy Retrieval"
	done

SuperEnergyRetrievalDescription: ; 63c56 (18:7c56)
	text "Trade 2 of the other cards in your"
	line "hand for up to 4 basic Energy cards"
	line "from your discard pile."
	done

EnergySearchName: ; 63cb6 (18:7cb6)
	text "Energy Search"
	done

EnergySearchDescription: ; 63cc5 (18:7cc5)
	text "Search your deck for a basic Energy"
	line "card and put it into your hand."
	line "Shuffle your deck afterward."
	done

EnergyRemovalName: ; 63d27 (18:7d27)
	text "Energy Removal"
	done

EnergyRemovalDescription: ; 63d37 (18:7d37)
	text "Choose 1 Energy card attached to 1"
	line "of your opponent's Pokémon and"
	line "discard it."
	done

SuperEnergyRemovalName: ; 63d86 (18:7d86)
	text "Super Energy Removal"
	done

SuperEnergyRemovalDescription: ; 63d9c (18:7d9c)
	text "Discard 1 Energy card attached to 1"
	line "of your own Pokémon in order to"
	line "choose 1 of your opponent's Pokémon"
	line "and up to 2 Energy cards attached"
	line "to it. Discard those Energy cards."
	done

SwitchName: ; 63e4a (18:7e4a)
	text "Switch"
	done

SwitchDescription: ; 63e52 (18:7e52)
	text "Switch 1 of your Benched Pokémon"
	line "with your Active Pokémon."
	done

PokemonCenterName: ; 63e8e (18:7e8e)
	text "Pokémon Center"
	done

PokemonCenterDescription: ; 63e9e (18:7e9e)
	text "Remove all damage counters from all"
	line "of your own Pokémon with damage"
	line "counters on them, then discard all"
	line "Energy cards attached to those"
	line "Pokémon."
	done

PokeBallName: ; 63f2e (18:7f2e)
	text "Poké Ball"
	done

PokeBallDescription: ; 63f39 (18:7f39)
	text "Flip a coin. If heads, you may"
	line "search your deck for any Basic"
	line "Pokémon or Evolution card. Show that"
	line "card to your opponent, then put it"
	line "into your hand. Shuffle your deck"
	line "afterward."
	done

ScoopUpName: ; 63fed (18:7fed)
	text "Scoop Up"
	done

	ds $9