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
|
gNullMoveDescription:: @ 86181C0
.string "$"
gPoundMoveDescription:: @ 86181C1
.string "Pounds the foe with\nforelegs or tail.$"
gKarateChopMoveDescription:: @ 86181E7
.string "A chopping attack with a\nhigh critical-hit ratio.$"
gDoubleSlapMoveDescription:: @ 8618219
.string "Repeatedly slaps the foe\n2 to 5 times.$"
gCometPunchMoveDescription:: @ 8618240
.string "Repeatedly punches the foe\n2 to 5 times.$"
gMegaPunchMoveDescription:: @ 8618269
.string "A strong punch thrown with\nincredible power.$"
gPayDayMoveDescription:: @ 8618296
.string "Throws coins at the foe.\nMoney is recovered after.$"
gFirePunchMoveDescription:: @ 86182C9
.string "A fiery punch that may burn\nthe foe.$"
gIcePunchMoveDescription:: @ 86182EE
.string "An icy punch that may\nfreeze the foe.$"
gThunderPunchMoveDescription:: @ 8618314
.string "An electrified punch that\nmay paralyze the foe.$"
gScratchMoveDescription:: @ 8618344
.string "Scratches the foe with\nsharp claws.$"
gViceGripMoveDescription:: @ 8618368
.string "Grips the foe with large and\npowerful pincers.$"
gGuillotineMoveDescription:: @ 8618397
.string "A powerful pincer attack\nthat may cause fainting.$"
gRazorWindMoveDescription:: @ 86183C9
.string "A 2-turn move that strikes\nthe foe on the 2nd turn.$"
gSwordsDanceMoveDescription:: @ 86183FD
.string "A fighting dance that\nsharply raises ATTACK.$"
gCutMoveDescription:: @ 861842A
.string "Cuts the foe with sharp\nscythes, claws, etc.$"
gGustMoveDescription:: @ 8618457
.string "Strikes the foe with a gust\nof wind whipped up by wings.$"
gWingAttackMoveDescription:: @ 8618490
.string "Strikes the foe with wings\nspread wide.$"
gWhirlwindMoveDescription:: @ 86184B8
.string "Blows away the foe with\nwind and ends the battle.$"
gFlyMoveDescription:: @ 86184EA
.string "Flies up on the first turn,\nthen strikes the next turn.$"
gBindMoveDescription:: @ 8618522
.string "Binds and squeezes the foe\nfor 2 to 5 turns.$"
gSlamMoveDescription:: @ 861854F
.string "Slams the foe with a long\ntail, vine, etc.$"
gVineWhipMoveDescription:: @ 861857A
.string "Strikes the foe with\nslender, whiplike vines.$"
gStompMoveDescription:: @ 86185A8
.string "Stomps the enemy with a big\nfoot. May cause flinching.$"
gDoubleKickMoveDescription:: @ 86185DF
.string "A double-kicking attack\nthat strikes the foe twice.$"
gMegaKickMoveDescription:: @ 8618613
.string "An extremely powerful kick\nwith intense force.$"
gJumpKickMoveDescription:: @ 8618642
.string "A strong jumping kick. May\nmiss and hurt the kicker.$"
gRollingKickMoveDescription:: @ 8618677
.string "A fast kick delivered from\na rapid spin.$"
gSandAttackMoveDescription:: @ 86186A0
.string "Reduces the foe’s accuracy\nby hurling sand in its face.$"
gHeadbuttMoveDescription:: @ 86186D8
.string "A ramming attack that may\ncause flinching.$"
gHornAttackMoveDescription:: @ 8618703
.string "Jabs the foe with sharp\nhorns.$"
gFuryAttackMoveDescription:: @ 8618722
.string "Jabs the foe 2 to 5 times\nwith sharp horns, etc.$"
gHornDrillMoveDescription:: @ 8618753
.string "A one-hit KO attack that\nuses a horn like a drill.$"
gTackleMoveDescription:: @ 8618786
.string "Charges the foe with a full-\nbody tackle.$"
gBodySlamMoveDescription:: @ 86187B0
.string "A full-body slam that may\ncause paralysis.$"
gWrapMoveDescription:: @ 86187DB
.string "Wraps and squeezes the foe\n2 to 5 times with vines, etc.$"
gTakeDownMoveDescription:: @ 8618814
.string "A reckless charge attack\nthat also hurts the user.$"
gThrashMoveDescription:: @ 8618847
.string "A rampage of 2 to 3 turns\nthat confuses the user.$"
gDoubleEdgeMoveDescription:: @ 8618879
.string "A life-risking tackle that\nalso hurts the user.$"
gTailWhipMoveDescription:: @ 86188A9
.string "Wags the tail to lower the\nfoe’s DEFENSE.$"
gPoisonStingMoveDescription:: @ 86188D3
.string "A toxic attack with barbs,\netc., that may poison.$"
gTwineedleMoveDescription:: @ 8618905
.string "Stingers on the forelegs\njab the foe twice.$"
gPinMissileMoveDescription:: @ 8618931
.string "Sharp pins are fired to\nstrike 2 to 5 times.$"
gLeerMoveDescription:: @ 861895E
.string "Frightens the foe with a\nleer to lower DEFENSE.$"
gBiteMoveDescription:: @ 861898E
.string "Bites with vicious fangs.\nMay cause flinching.$"
gGrowlMoveDescription:: @ 86189BD
.string "Growls cutely to reduce the\nfoe’s ATTACK.$"
gRoarMoveDescription:: @ 86189E7
.string "Makes the foe flee to end\nthe battle.$"
gSingMoveDescription:: @ 8618A0D
.string "A soothing song lulls the\nfoe into a deep slumber.$"
gSupersonicMoveDescription:: @ 8618A40
.string "Emits bizarre sound waves\nthat may confuse the foe.$"
gSonicBoomMoveDescription:: @ 8618A74
.string "Launches shock waves that\nalways inflict 20 HP damage.$"
gDisableMoveDescription:: @ 8618AAB
.string "Psychically disables one of\nthe foe’s moves.$"
gAcidMoveDescription:: @ 8618AD8
.string "Sprays a hide-melting acid.\nMay lower DEFENSE.$"
gEmberMoveDescription:: @ 8618B07
.string "A weak fire attack that may\ninflict a burn.$"
gFlamethrowerMoveDescription:: @ 8618B33
.string "A powerful fire attack that\nmay inflict a burn.$"
gMistMoveDescription:: @ 8618B63
.string "Creates a mist that stops\nreduction of abilities.$"
gWaterGunMoveDescription:: @ 8618B95
.string "Squirts water to attack\nthe foe.$"
gHydroPumpMoveDescription:: @ 8618BB6
.string "Blasts water at high power\nto strike the foe.$"
gSurfMoveDescription:: @ 8618BE4
.string "Creates a huge wave, then\ncrashes it down on the foe.$"
gIceBeamMoveDescription:: @ 8618C1A
.string "Blasts the foe with an icy\nbeam that may freeze it.$"
gBlizzardMoveDescription:: @ 8618C4E
.string "Hits the foe with an icy\nstorm that may freeze it.$"
gPsybeamMoveDescription:: @ 8618C81
.string "Fires a peculiar ray that\nmay confuse the foe.$"
gBubbleBeamMoveDescription:: @ 8618CB0
.string "Forcefully sprays bubbles\nthat may lower SPEED.$"
gAuroraBeamMoveDescription:: @ 8618CE0
.string "Fires a rainbow-colored\nbeam that may lower ATTACK.$"
gHyperBeamMoveDescription:: @ 8618D14
.string "Powerful, but leaves the\nuser immobile the next turn.$"
gPeckMoveDescription:: @ 8618D4A
.string "Attacks the foe with a\njabbing beak, etc.$"
gDrillPeckMoveDescription:: @ 8618D74
.string "A corkscrewing attack with\nthe beak acting as a drill.$"
gSubmissionMoveDescription:: @ 8618DAB
.string "A reckless body slam that\nalso hurts the user.$"
gLowKickMoveDescription:: @ 8618DDA
.string "A kick that inflicts more\ndamage on heavier foes.$"
gCounterMoveDescription:: @ 8618E0C
.string "Retaliates any physical hit\nwith double the power.$"
gSeismicTossMoveDescription:: @ 8618E3F
.string "Inflicts damage identical\nto the user’s level.$"
gStrengthMoveDescription:: @ 8618E6E
.string "Builds enormous power,\nthen slams the foe.$"
gAbsorbMoveDescription:: @ 8618E99
.string "An attack that absorbs\nhalf the damage inflicted.$"
gMegaDrainMoveDescription:: @ 8618ECB
.string "An attack that absorbs\nhalf the damage inflicted.$"
gLeechSeedMoveDescription:: @ 8618EFD
.string "Plants a seed on the foe to\nsteal HP on every turn.$"
gGrowthMoveDescription:: @ 8618F31
.string "Forces the body to grow\nand heightens SP. ATK.$"
gRazorLeafMoveDescription:: @ 8618F60
.string "Cuts the enemy with leaves.\nHigh critical-hit ratio.$"
gSolarBeamMoveDescription:: @ 8618F95
.string "Absorbs light in one turn,\nthen attacks next turn.$"
gPoisonPowderMoveDescription:: @ 8618FC8
.string "Scatters a toxic powder\nthat may poison the foe.$"
gStunSporeMoveDescription:: @ 8618FF9
.string "Scatters a powder that may\nparalyze the foe.$"
gSleepPowderMoveDescription:: @ 8619026
.string "Scatters a powder that may\ncause the foe to sleep.$"
gPetalDanceMoveDescription:: @ 8619059
.string "A rampage of 2 to 3 turns\nthat confuses the user.$"
gStringShotMoveDescription:: @ 861908B
.string "Binds the foe with string\nto reduce its SPEED.$"
gDragonRageMoveDescription:: @ 86190BA
.string "Launches shock waves that\nalways inflict 40 HP damage.$"
gFireSpinMoveDescription:: @ 86190F1
.string "Traps the foe in a ring of\nfire for 2 to 5 turns.$"
gThunderShockMoveDescription:: @ 8619123
.string "An electrical attack that\nmay paralyze the foe.$"
gThunderboltMoveDescription:: @ 8619153
.string "A strong electrical attack\nthat may paralyze the foe.$"
gThunderWaveMoveDescription:: @ 8619189
.string "A weak jolt of electricity\nthat paralyzes the foe.$"
gThunderMoveDescription:: @ 86191BC
.string "A lightning attack that may\ncause paralysis.$"
gRockThrowMoveDescription:: @ 86191E9
.string "Throws small rocks to\nstrike the foe.$"
gEarthquakeMoveDescription:: @ 861920F
.string "A powerful quake, but has\nno effect on flying foes.$"
gFissureMoveDescription:: @ 8619243
.string "A one-hit KO move that\ndrops the foe in a fissure.$"
gDigMoveDescription:: @ 8619276
.string "Digs underground the first\nturn and strikes next turn.$"
gToxicMoveDescription:: @ 86192AD
.string "Poisons the foe with an\nintensifying toxin.$"
gConfusionMoveDescription:: @ 86192D9
.string "A psychic attack that may\ncause confusion.$"
gPsychicMoveDescription:: @ 8619304
.string "A powerful psychic attack\nthat may lower SP. DEF.$"
gHypnosisMoveDescription:: @ 8619336
.string "A hypnotizing move that\nmay induce sleep.$"
gMeditateMoveDescription:: @ 8619360
.string "Meditates in a peaceful\nfashion to raise ATTACK.$"
gAgilityMoveDescription:: @ 8619391
.string "Relaxes the body to sharply\nboost SPEED.$"
gQuickAttackMoveDescription:: @ 86193BA
.string "An extremely fast attack\nthat always strikes first.$"
gRageMoveDescription:: @ 86193EE
.string "Raises the user’s ATTACK\nevery time it is hit.$"
gTeleportMoveDescription:: @ 861941D
.string "A psychic move for fleeing\nfrom battle instantly.$"
gNightShadeMoveDescription:: @ 861944F
.string "Inflicts damage identical\nto the user’s level.$"
gMimicMoveDescription:: @ 861947E
.string "Copies a move used by the\nfoe during one battle.$"
gScreechMoveDescription:: @ 86194AF
.string "Emits a screech to sharply\nreduce the foe’s DEFENSE.$"
gDoubleTeamMoveDescription:: @ 86194E4
.string "Creates illusory copies to\nraise evasiveness.$"
gRecoverMoveDescription:: @ 8619512
.string "Recovers up to half the\nuser’s maximum HP.$"
gHardenMoveDescription:: @ 861953D
.string "Stiffens the body’s \nmuscles to raise DEFENSE.$"
gMinimizeMoveDescription:: @ 861956C
.string "Minimizes the user’s size\nto raise evasiveness.$"
gSmokescreenMoveDescription:: @ 861959C
.string "Lowers the foe’s accuracy\nusing smoke, ink, etc.$"
gConfuseRayMoveDescription:: @ 86195CD
.string "A sinister ray that\nconfuses the foe.$"
gWithdrawMoveDescription:: @ 86195F3
.string "Withdraws the body into its\nhard shell to raise DEFENSE.$"
gDefenseCurlMoveDescription:: @ 861962C
.string "Curls up to conceal weak\nspots and raise DEFENSE.$"
gBarrierMoveDescription:: @ 861965E
.string "Creates a barrier that\nsharply raises DEFENSE.$"
gLightScreenMoveDescription:: @ 861968D
.string "Creates a wall of light that\nlowers SP. ATK damage.$"
gHazeMoveDescription:: @ 86196C1
.string "Creates a black haze that\neliminates all stat changes.$"
gReflectMoveDescription:: @ 86196F8
.string "Creates a wall of light that\nweakens physical attacks.$"
gFocusEnergyMoveDescription:: @ 861972F
.string "Focuses power to raise the\ncritical-hit ratio.$"
gBideMoveDescription:: @ 861975E
.string "Endures attack for 2\nturns to retaliate double.$"
gMetronomeMoveDescription:: @ 861978E
.string "Waggles a finger to use any\nPOKéMON move at random.$"
gMirrorMoveMoveDescription:: @ 86197C2
.string "Counters the foe’s attack\nwith the same move.$"
gSelfDestructMoveDescription:: @ 86197F0
.string "Inflicts severe damage but\nmakes the user faint.$"
gEggBombMoveDescription:: @ 8619821
.string "An egg is forcibly hurled at\nthe foe.$"
gLickMoveDescription:: @ 8619847
.string "Licks with a long tongue to\ninjure. May also paralyze.$"
gSmogMoveDescription:: @ 861987E
.string "An exhaust-gas attack\nthat may also poison.$"
gSludgeMoveDescription:: @ 86198AA
.string "Sludge is hurled to inflict\ndamage. May also poison.$"
gBoneClubMoveDescription:: @ 86198DF
.string "Clubs the foe with a bone.\nMay cause flinching.$"
gFireBlastMoveDescription:: @ 861990F
.string "Incinerates everything it\nstrikes. May cause a burn.$"
gWaterfallMoveDescription:: @ 8619944
.string "Charges the foe with speed\nto climb waterfalls.$"
gClampMoveDescription:: @ 8619974
.string "Traps and squeezes the\nfoe for 2 to 5 turns.$"
gSwiftMoveDescription:: @ 86199A1
.string "Sprays star-shaped rays\nthat never miss.$"
gSkullBashMoveDescription:: @ 86199CA
.string "Tucks in the head, then\nattacks on the next turn.$"
gSpikeCannonMoveDescription:: @ 86199FC
.string "Launches sharp spikes that\nstrike 2 to 5 times.$"
gConstrictMoveDescription:: @ 8619A2C
.string "Constricts to inflict pain.\nMay lower SPEED.$"
gAmnesiaMoveDescription:: @ 8619A59
.string "Forgets about something\nand sharply raises SP. DEF.$"
gKinesisMoveDescription:: @ 8619A8D
.string "Distracts the foe.\nMay lower accuracy.$"
gSoftBoiledMoveDescription:: @ 8619AB4
.string "Recovers up to half the\nuser’s maximum HP.$"
gHiJumpKickMoveDescription:: @ 8619ADF
.string "A jumping knee kick. If it\nmisses, the user is hurt.$"
gGlareMoveDescription:: @ 8619B14
.string "Intimidates and frightens\nthe foe into paralysis.$"
gDreamEaterMoveDescription:: @ 8619B46
.string "Takes one half the damage\ninflicted on a sleeping foe.$"
gPoisonGasMoveDescription:: @ 8619B7D
.string "Envelops the foe in a toxic\ngas that may poison.$"
gBarrageMoveDescription:: @ 8619BAE
.string "Hurls round objects at the\nfoe 2 to 5 times.$"
gLeechLifeMoveDescription:: @ 8619BDB
.string "An attack that steals half\nthe damage inflicted.$"
gLovelyKissMoveDescription:: @ 8619C0C
.string "Demands a kiss with a scary\nface that induces sleep.$"
gSkyAttackMoveDescription:: @ 8619C41
.string "Searches out weak spots,\nthen strikes the next turn.$"
gTransformMoveDescription:: @ 8619C76
.string "Alters the user’s cells to\nbecome a copy of the foe.$"
gBubbleMoveDescription:: @ 8619CAB
.string "An attack using bubbles.\nMay lower the foe’s SPEED.$"
gDizzyPunchMoveDescription:: @ 8619CDF
.string "A rhythmic punch that may\nconfuse the foe.$"
gSporeMoveDescription:: @ 8619D0A
.string "Scatters a cloud of spores\nthat always induce sleep.$"
gFlashMoveDescription:: @ 8619D3F
.string "Looses a powerful blast of\nlight that cuts accuracy.$"
gPsywaveMoveDescription:: @ 8619D74
.string "Attacks with a psychic\nwave of varying intensity.$"
gSplashMoveDescription:: @ 8619DA6
.string "It’s just a splash...\nHas no effect whatsoever.$"
gAcidArmorMoveDescription:: @ 8619DD6
.string "Liquifies the user’s body\nto sharply raise DEFENSE.$"
gCrabhammerMoveDescription:: @ 8619E0A
.string "Hammers with a pincer. Has a\nhigh critical-hit ratio.$"
gExplosionMoveDescription:: @ 8619E40
.string "Inflicts severe damage but\nmakes the user faint.$"
gFurySwipesMoveDescription:: @ 8619E71
.string "Rakes the foe with sharp\nclaws, etc., 2 to 5 times.$"
gBonemerangMoveDescription:: @ 8619EA5
.string "Throws a bone boomerang\nthat strikes twice.$"
gRestMoveDescription:: @ 8619ED1
.string "The user sleeps for 2 turns,\nrestoring HP and status.$"
gRockSlideMoveDescription:: @ 8619F07
.string "Large boulders are hurled.\nMay cause flinching.$"
gHyperFangMoveDescription:: @ 8619F37
.string "Attacks with sharp fangs.\nMay cause flinching.$"
gSharpenMoveDescription:: @ 8619F66
.string "Reduces the polygon count\nand raises ATTACK.$"
gConversionMoveDescription:: @ 8619F93
.string "Changes the user’s type\ninto a known move’s type.$"
gTriAttackMoveDescription:: @ 8619FC5
.string "Fires three types of beams\nat the same time.$"
gSuperFangMoveDescription:: @ 8619FF2
.string "Attacks with sharp fangs\nand cuts half the foe’s HP.$"
gSlashMoveDescription:: @ 861A027
.string "Slashes with claws, etc. Has\na high critical-hit ratio.$"
gSubstituteMoveDescription:: @ 861A05F
.string "Creates a decoy using 1/4\nof the user’s maximum HP.$"
gStruggleMoveDescription:: @ 861A093
.string "Used only if all PP are gone.\nAlso hurts the user a little.$"
gSketchMoveDescription:: @ 861A0CF
.string "Copies the foe’s last move\npermanently.$"
gTripleKickMoveDescription:: @ 861A0F7
.string "Kicks the foe 3 times in a\nrow with rising intensity.$"
gThiefMoveDescription:: @ 861A12D
.string "While attacking, it may\nsteal the foe’s held item.$"
gSpiderWebMoveDescription:: @ 861A160
.string "Ensnares the foe to stop it\nfrom fleeing or switching.$"
gMindReaderMoveDescription:: @ 861A197
.string "Senses the foe’s action to\nensure the next move’s hit.$"
gNightmareMoveDescription:: @ 861A1CE
.string "Inflicts 1/4 damage on a\nsleeping foe every turn.$"
gFlameWheelMoveDescription:: @ 861A200
.string "A fiery charge attack that\nmay inflict a burn.$"
gSnoreMoveDescription:: @ 861A22F
.string "A loud attack that can be\nused only while asleep.$"
gCurseMoveDescription:: @ 861A261
.string "A move that functions\ndifferently for GHOSTS.$"
gFlailMoveDescription:: @ 861A28F
.string "Inflicts more damage when\nthe user’s HP is down.$"
gConversion2MoveDescription:: @ 861A2C0
.string "Makes the user resistant\nto the last attack’s type.$"
gAeroblastMoveDescription:: @ 861A2F4
.string "Launches a vacuumed blast.\nHigh critical-hit ratio.$"
gCottonSporeMoveDescription:: @ 861A328
.string "Spores cling to the foe,\nsharply reducing SPEED.$"
gReversalMoveDescription:: @ 861A359
.string "Inflicts more damage when\nthe user’s HP is down.$"
gSpiteMoveDescription:: @ 861A38A
.string "Spitefully cuts the PP\nof the foe’s last move.$"
gPowderSnowMoveDescription:: @ 861A3B9
.string "Blasts the foe with a snowy\ngust. May cause freezing.$"
gProtectMoveDescription:: @ 861A3EF
.string "Evades attack, but may fail\nif used in succession.$"
gMachPunchMoveDescription:: @ 861A422
.string "A punch is thrown at wicked\nspeed to strike first.$"
gScaryFaceMoveDescription:: @ 861A455
.string "Frightens with a scary face\nto sharply reduce SPEED.$"
gFaintAttackMoveDescription:: @ 861A48A
.string "Draws the foe close, then\nstrikes without fail.$"
gSweetKissMoveDescription:: @ 861A4BA
.string "Demands a kiss with a cute\nlook. May cause confusion.$"
gBellyDrumMoveDescription:: @ 861A4F0
.string "Maximizes ATTACK while\nsacrificing HP.$"
gSludgeBombMoveDescription:: @ 861A517
.string "Sludge is hurled to inflict\ndamage. May also poison.$"
gMudSlapMoveDescription:: @ 861A54C
.string "Hurls mud in the foe’s face\nto reduce its accuracy.$"
gOctazookaMoveDescription:: @ 861A580
.string "Fires a lump of ink to\ndamage and cut accuracy.$"
gSpikesMoveDescription:: @ 861A5B0
.string "Sets spikes that hurt a \nfoe switching in.$"
gZapCannonMoveDescription:: @ 861A5DB
.string "Powerful and sure to cause\nparalysis, but inaccurate.$"
gForesightMoveDescription:: @ 861A611
.string "Negates the foe’s efforts\nto heighten evasiveness.$"
gDestinyBondMoveDescription:: @ 861A644
.string "If the user faints, the foe\nis also made to faint.$"
gPerishSongMoveDescription:: @ 861A677
.string "Any POKéMON hearing this\nsong faints in 3 turns.$"
gIcyWindMoveDescription:: @ 861A6A8
.string "A chilling attack that\nlowers the foe’s SPEED.$"
gDetectMoveDescription:: @ 861A6D7
.string "Evades attack, but may fail\nif used in succession.$"
gBoneRushMoveDescription:: @ 861A70A
.string "Strikes the foe with a bone\nin hand 2 to 5 times.$"
gLockOnMoveDescription:: @ 861A73C
.string "Locks on to the foe to\nensure the next move hits.$"
gOutrageMoveDescription:: @ 861A76E
.string "A rampage of 2 to 3 turns\nthat confuses the user.$"
gSandstormMoveDescription:: @ 861A7A0
.string "Causes a sandstorm that\nrages for several turns.$"
gGigaDrainMoveDescription:: @ 861A7D1
.string "An attack that steals half\nthe damage inflicted.$"
gEndureMoveDescription:: @ 861A802
.string "Endures any attack for\n1 turn, leaving at least 1HP.$"
gCharmMoveDescription:: @ 861A837
.string "Charms the foe and sharply\nreduces its ATTACK.$"
gRolloutMoveDescription:: @ 861A866
.string "An attack lasting 5 turns\nwith rising intensity.$"
gFalseSwipeMoveDescription:: @ 861A897
.string "An attack that leaves the\nfoe with at least 1 HP.$"
gSwaggerMoveDescription:: @ 861A8C9
.string "Confuses the foe, but also\nsharply raises ATTACK.$"
gMilkDrinkMoveDescription:: @ 861A8FB
.string "Recovers up to half the\nuser’s maximum HP.$"
gSparkMoveDescription:: @ 861A926
.string "An electrified tackle that\nmay paralyze the foe.$"
gFuryCutterMoveDescription:: @ 861A957
.string "An attack that intensifies\non each successive hit.$"
gSteelWingMoveDescription:: @ 861A98A
.string "Strikes the foe with hard\nwings spread wide.$"
gMeanLookMoveDescription:: @ 861A9B7
.string "Fixes the foe with a mean\nlook that prevents escape.$"
gAttractMoveDescription:: @ 861A9EC
.string "Makes the opposite gender\nless likely to attack.$"
gSleepTalkMoveDescription:: @ 861AA1D
.string "Uses an available move\nrandomly while asleep.$"
gHealBellMoveDescription:: @ 861AA4B
.string "Chimes soothingly to heal\nall status abnormalities.$"
gReturnMoveDescription:: @ 861AA7F
.string "An attack that increases\nin power with friendship.$"
gPresentMoveDescription:: @ 861AAB2
.string "A gift in the form of a\nbomb. May restore HP.$"
gFrustrationMoveDescription:: @ 861AAE0
.string "An attack that is stronger\nif the TRAINER is disliked.$"
gSafeguardMoveDescription:: @ 861AB17
.string "A mystical force prevents\nall status problems.$"
gPainSplitMoveDescription:: @ 861AB46
.string "Adds the user and foe’s HP,\nthen shares them equally.$"
gSacredFireMoveDescription:: @ 861AB7C
.string "A mystical fire attack that\nmay inflict a burn.$"
gMagnitudeMoveDescription:: @ 861ABAC
.string "A ground-shaking attack\nof random intensity.$"
gDynamicPunchMoveDescription:: @ 861ABD9
.string "Powerful and sure to cause\nconfusion, but inaccurate.$"
gMegahornMoveDescription:: @ 861AC0F
.string "A brutal ramming attack\nusing out-thrust horns.$"
gDragonBreathMoveDescription:: @ 861AC3F
.string "Strikes the foe with an\nincredible blast of breath.$"
gBatonPassMoveDescription:: @ 861AC73
.string "Switches out the user while\nkeeping effects in play.$"
gEncoreMoveDescription:: @ 861ACA8
.string "Makes the foe repeat its\nlast move over 2 to 6 turns.$"
gPursuitMoveDescription:: @ 861ACDE
.string "Inflicts bad damage if used\non a foe switching out.$"
gRapidSpinMoveDescription:: @ 861AD12
.string "Spins the body at high\nspeed to strike the foe.$"
gSweetScentMoveDescription:: @ 861AD42
.string "Allures the foe to reduce\nevasiveness.$"
gIronTailMoveDescription:: @ 861AD69
.string "Attacks with a rock-hard\ntail. May lower DEFENSE.$"
gMetalClawMoveDescription:: @ 861AD9B
.string "A claw attack that may\nraise the user’s ATTACK.$"
gVitalThrowMoveDescription:: @ 861ADCB
.string "Makes the user’s move last,\nbut it never misses.$"
gMorningSunMoveDescription:: @ 861ADFC
.string "Restores HP. The amount\nvaries with the weather.$"
gSynthesisMoveDescription:: @ 861AE2D
.string "Restores HP. The amount\nvaries with the weather.$"
gMoonlightMoveDescription:: @ 861AE5E
.string "Restores HP. The amount\nvaries with the weather.$"
gHiddenPowerMoveDescription:: @ 861AE8F
.string "The effectiveness varies\nwith the user.$"
gCrossChopMoveDescription:: @ 861AEB7
.string "A double-chopping attack.\nHigh critical-hit ratio.$"
gTwisterMoveDescription:: @ 861AEEA
.string "Whips up a vicious twister\nto tear at the foe.$"
gRainDanceMoveDescription:: @ 861AF19
.string "Boosts the power of WATER-\ntype moves for 5 turns.$"
gSunnyDayMoveDescription:: @ 861AF4C
.string "Boosts the power of FIRE-\ntype moves for 5 turns.$"
gCrunchMoveDescription:: @ 861AF7E
.string "Crunches with sharp fangs.\nMay lower SP. DEF.$"
gMirrorCoatMoveDescription:: @ 861AFAC
.string "Counters the foe’s special\nattack at double the power.$"
gPsychUpMoveDescription:: @ 861AFE3
.string "Copies the foe’s effect(s)\nand gives to the user.$"
gExtremeSpeedMoveDescription:: @ 861B015
.string "An extremely fast and\npowerful attack.$"
gAncientPowerMoveDescription:: @ 861B03C
.string "An attack that may raise\nall stats.$"
gShadowBallMoveDescription:: @ 861B060
.string "Hurls a black blob that may\nlower the foe’s SP. DEF.$"
gFutureSightMoveDescription:: @ 861B095
.string "Heightens inner power to\nstrike 2 turns later.$"
gRockSmashMoveDescription:: @ 861B0C4
.string "A rock-crushing attack\nthat may lower DEFENSE.$"
gWhirlpoolMoveDescription:: @ 861B0F3
.string "Traps and hurts the foe in\na whirlpool for 2 to 5 turns.$"
gBeatUpMoveDescription:: @ 861B12C
.string "Summons party POKéMON to\njoin in the attack.$"
gFakeOutMoveDescription:: @ 861B159
.string "A 1st-turn, 1st-strike move\nthat causes flinching.$"
gUproarMoveDescription:: @ 861B18C
.string "Causes an uproar for 2 to 5\nturns and prevents sleep.$"
gStockpileMoveDescription:: @ 861B1C2
.string "Charges up power for up to\n3 turns.$"
gSpitUpMoveDescription:: @ 861B1E6
.string "Releases stockpiled power\n(the more the better).$"
gSwallowMoveDescription:: @ 861B217
.string "Absorbs stockpiled power\nand restores HP.$"
gHeatWaveMoveDescription:: @ 861B241
.string "Exhales a hot breath on the\nfoe. May inflict a burn.$"
gHailMoveDescription:: @ 861B276
.string "Summons a hailstorm that\nstrikes every turn.$"
gTormentMoveDescription:: @ 861B2A3
.string "Torments the foe and stops\nsuccessive use of a move.$"
gFlatterMoveDescription:: @ 861B2D8
.string "Confuses the foe, but\nraises its SP. ATK.$"
gWillOWispMoveDescription:: @ 861B302
.string "Inflicts a burn on the foe\nwith intense fire.$"
gMementoMoveDescription:: @ 861B330
.string "The user faints and lowers\nthe foe’s abilities.$"
gFacadeMoveDescription:: @ 861B360
.string "Boosts ATTACK when burned,\nparalyzed, or poisoned.$"
gFocusPunchMoveDescription:: @ 861B393
.string "A powerful loyalty attack.\nThe user flinches if hit.$"
gSmellingSaltMoveDescription:: @ 861B3C8
.string "Powerful against paralyzed\nfoes, but also heals them.$"
gFollowMeMoveDescription:: @ 861B3FE
.string "Draws attention to make\nfoes attack only the user.$"
gNaturePowerMoveDescription:: @ 861B431
.string "The type of attack varies\ndepending on the location.$"
gChargeMoveDescription:: @ 861B466
.string "Charges power to boost the\nelectric move used next.$"
gTauntMoveDescription:: @ 861B49A
.string "Taunts the foe into only\nusing attack moves.$"
gHelpingHandMoveDescription:: @ 861B4C7
.string "Boosts the power of the\nrecipient’s moves.$"
gTrickMoveDescription:: @ 861B4F2
.string "Tricks the foe into trading\nheld items.$"
gRolePlayMoveDescription:: @ 861B51A
.string "Mimics the target and\ncopies its special ability.$"
gWishMoveDescription:: @ 861B54C
.string "A wish that restores HP.\nIt takes time to work.$"
gAssistMoveDescription:: @ 861B57C
.string "Attacks randomly with one\nof the partner’s moves.$"
gIngrainMoveDescription:: @ 861B5AE
.string "Lays roots that restore HP.\nThe user can’t switch out.$"
gSuperpowerMoveDescription:: @ 861B5E5
.string "Boosts strength sharply,\nbut lowers abilities.$"
gMagicCoatMoveDescription:: @ 861B614
.string "Reflects special effects\nback to the attacker.$"
gRecycleMoveDescription:: @ 861B643
.string "Recycles a used item for\none more use.$"
gRevengeMoveDescription:: @ 861B66A
.string "An attack that gains power\nif injured by the foe.$"
gBrickBreakMoveDescription:: @ 861B69C
.string "Destroys barriers such as\nREFLECT and causes damage.$"
gYawnMoveDescription:: @ 861B6D1
.string "Lulls the foe into yawning,\nthen sleeping next turn.$"
gKnockOffMoveDescription:: @ 861B706
.string "Knocks down the foe’s held\nitem to prevent its use.$"
gEndeavorMoveDescription:: @ 861B73A
.string "Gains power if the user’s HP\nis lower than the foe’s HP.$"
gEruptionMoveDescription:: @ 861B773
.string "The higher the user’s HP,\nthe more damage caused.$"
gSkillSwapMoveDescription:: @ 861B7A5
.string "The user swaps special\nabilities with the target.$"
gImprisonMoveDescription:: @ 861B7D7
.string "Prevents foes from using\nmoves known by the user.$"
gRefreshMoveDescription:: @ 861B809
.string "Heals poisoning, paralysis,\nor a burn.$"
gGrudgeMoveDescription:: @ 861B830
.string "If the user faints, deletes\nall PP of foe’s last move.$"
gSnatchMoveDescription:: @ 861B867
.string "Steals the effects of the\nmove the target uses next.$"
gSecretPowerMoveDescription:: @ 861B89C
.string "An attack with effects\nthat vary by location.$"
gDiveMoveDescription:: @ 861B8CA
.string "Dives underwater the first\nturn and strikes next turn.$"
gArmThrustMoveDescription:: @ 861B901
.string "Straight-arm punches that\nstrike the foe 2 to 5 times.$"
gCamouflageMoveDescription:: @ 861B938
.string "Alters the POKéMON’s type\ndepending on the location.$"
gTailGlowMoveDescription:: @ 861B96D
.string "Flashes a light that sharply\nraises SP. ATK.$"
gLusterPurgeMoveDescription:: @ 861B99A
.string "Attacks with a burst of\nlight. May lower SP. DEF.$"
gMistBallMoveDescription:: @ 861B9CC
.string "Attacks with a flurry of\ndown. May lower SP. ATK.$"
gFeatherDanceMoveDescription:: @ 861B9FE
.string "Envelops the foe with down\nto sharply reduce ATTACK.$"
gTeeterDanceMoveDescription:: @ 861BA33
.string "Confuses all POKéMON on\nthe scene.$"
gBlazeKickMoveDescription:: @ 861BA56
.string "A kick with a high critical-\nhit ratio. May cause a burn.$"
gMudSportMoveDescription:: @ 861BA90
.string "Covers the user in mud to\nraise electrical resistance.$"
gIceBallMoveDescription:: @ 861BAC7
.string "A 5-turn attack that gains\npower on successive hits.$"
gNeedleArmMoveDescription:: @ 861BAFC
.string "Attacks with thorny arms.\nMay cause flinching.$"
gSlackOffMoveDescription:: @ 861BB2B
.string "Slacks off and restores\nhalf the maximum HP.$"
gHyperVoiceMoveDescription:: @ 861BB58
.string "A loud attack that uses\nsound waves to injure.$"
gPoisonFangMoveDescription:: @ 861BB87
.string "A sharp-fanged attack.\nMay badly poison the foe.$"
gCrushClawMoveDescription:: @ 861BBB8
.string "Tears at the foe with sharp\nclaws. May lower DEFENSE.$"
gBlastBurnMoveDescription:: @ 861BBEE
.string "Powerful, but leaves the\nuser immobile the next turn.$"
gHydroCannonMoveDescription:: @ 861BC24
.string "Powerful, but leaves the\nuser immobile the next turn.$"
gMeteorMashMoveDescription:: @ 861BC5A
.string "Fires a meteor-like punch.\nMay raise ATTACK.$"
gAstonishMoveDescription:: @ 861BC87
.string "An attack that may shock\nthe foe into flinching.$"
gWeatherBallMoveDescription:: @ 861BCB8
.string "The move’s type and power\nchange with the weather.$"
gAromatherapyMoveDescription:: @ 861BCEB
.string "Heals all status problems\nwith a soothing scent.$"
gFakeTearsMoveDescription:: @ 861BD1C
.string "Feigns crying to sharply\nlower the foe’s SP. DEF.$"
gAirCutterMoveDescription:: @ 861BD4E
.string "Hacks with razorlike wind.\nHigh critical-hit ratio.$"
gOverheatMoveDescription:: @ 861BD82
.string "Allows a full-power attack,\nbut sharply lowers SP. ATK.$"
gOdorSleuthMoveDescription:: @ 861BDBA
.string "Negates the foe’s efforts\nto heighten evasiveness.$"
gRockTombMoveDescription:: @ 861BDED
.string "Stops the foe from moving\nwith rocks and cuts SPEED.$"
gSilverWindMoveDescription:: @ 861BE22
.string "A powdery attack that may\nraise abilities.$"
gMetalSoundMoveDescription:: @ 861BE4D
.string "Emits a horrible screech\nthat sharply lowers SP. DEF.$"
gGrassWhistleMoveDescription:: @ 861BE83
.string "Lulls the foe into sleep\nwith a pleasant melody.$"
gTickleMoveDescription:: @ 861BEB4
.string "Makes the foe laugh to\nlower ATTACK and DEFENSE.$"
gCosmicPowerMoveDescription:: @ 861BEE5
.string "Raises DEFENSE and SP. DEF\nwith a mystic power.$"
gWaterSpoutMoveDescription:: @ 861BF15
.string "Inflicts more damage if the\nuser’s HP is high.$"
gSignalBeamMoveDescription:: @ 861BF44
.string "A strange beam attack that\nmay confuse the foe.$"
gShadowPunchMoveDescription:: @ 861BF74
.string "An unavoidable punch that\nis thrown from shadows.$"
gExtrasensoryMoveDescription:: @ 861BFA6
.string "Attacks with a peculiar\npower. May cause flinching.$"
gSkyUppercutMoveDescription:: @ 861BFDA
.string "An uppercut thrown as if\nleaping into the sky.$"
gSandTombMoveDescription:: @ 861C009
.string "Traps and hurts the foe in\nquicksand for 2 to 5 turns.$"
gSheerColdMoveDescription:: @ 861C040
.string "A chilling attack that\ncauses fainting if it hits.$"
gMuddyWaterMoveDescription:: @ 861C073
.string "Attacks with muddy water.\nMay lower accuracy.$"
gBulletSeedMoveDescription:: @ 861C0A1
.string "Shoots 2 to 5 seeds in a row\nto strike the foe.$"
gAerialAceMoveDescription:: @ 861C0D1
.string "An extremely speedy and\nunavoidable attack.$"
gIcicleSpearMoveDescription:: @ 861C0FD
.string "Attacks the foe by firing\n2 to 5 icicles in a row.$"
gIronDefenseMoveDescription:: @ 861C130
.string "Hardens the body’s surface\nto sharply raise DEFENSE.$"
gBlockMoveDescription:: @ 861C165
.string "Blocks the foe’s way to\nprevent escape.$"
gHowlMoveDescription:: @ 861C18D
.string "Howls to raise the spirit\nand boosts ATTACK.$"
gDragonClawMoveDescription:: @ 861C1BA
.string "Slashes the foe with sharp\nclaws.$"
gFrenzyPlantMoveDescription:: @ 861C1DC
.string "Powerful, but leaves the\nuser immobile the next turn.$"
gBulkUpMoveDescription:: @ 861C212
.string "Bulks up the body to boost\nboth ATTACK and DEFENSE.$"
gBounceMoveDescription:: @ 861C246
.string "Bounces up, then down the\nnext turn. May paralyze.$"
gMudShotMoveDescription:: @ 861C279
.string "Hurls mud at the foe and\nreduces SPEED.$"
gPoisonTailMoveDescription:: @ 861C2A1
.string "Has a high critical-hit\nratio. May also poison.$"
gCovetMoveDescription:: @ 861C2D1
.string "Cutely begs to obtain an\nitem held by the foe.$"
gVoltTackleMoveDescription:: @ 861C300
.string "A life-risking tackle that\nslightly hurts the user.$"
gMagicalLeafMoveDescription:: @ 861C334
.string "Attacks with a strange leaf\nthat cannot be evaded.$"
gWaterSportMoveDescription:: @ 861C367
.string "The user becomes soaked to\nraise resistance to fire.$"
gCalmMindMoveDescription:: @ 861C39C
.string "Raises SP. ATK and SP. DEF\nby focusing the mind.$"
gLeafBladeMoveDescription:: @ 861C3CD
.string "Slashes with a sharp leaf.\nHigh critical-hit ratio.$"
gDragonDanceMoveDescription:: @ 861C401
.string "A mystical dance that ups\nATTACK and SPEED.$"
gRockBlastMoveDescription:: @ 861C42D
.string "Hurls boulders at the foe\n2 to 5 times in a row.$"
gShockWaveMoveDescription:: @ 861C45E
.string "A fast and unavoidable\nelectric attack.$"
gWaterPulseMoveDescription:: @ 861C486
.string "Attacks with ultrasonic\nwaves. May confuse the foe.$"
gDoomDesireMoveDescription:: @ 861C4BA
.string "Summons strong sunlight to\nattack 2 turns later.$"
gPsychoBoostMoveDescription:: @ 861C4EB
.string "Allows a full-power attack,\nbut sharply lowers SP. ATK.$"
.align 2
gMoveDescriptionPointers:: @ 861C524
.4byte gPoundMoveDescription
.4byte gKarateChopMoveDescription
.4byte gDoubleSlapMoveDescription
.4byte gCometPunchMoveDescription
.4byte gMegaPunchMoveDescription
.4byte gPayDayMoveDescription
.4byte gFirePunchMoveDescription
.4byte gIcePunchMoveDescription
.4byte gThunderPunchMoveDescription
.4byte gScratchMoveDescription
.4byte gViceGripMoveDescription
.4byte gGuillotineMoveDescription
.4byte gRazorWindMoveDescription
.4byte gSwordsDanceMoveDescription
.4byte gCutMoveDescription
.4byte gGustMoveDescription
.4byte gWingAttackMoveDescription
.4byte gWhirlwindMoveDescription
.4byte gFlyMoveDescription
.4byte gBindMoveDescription
.4byte gSlamMoveDescription
.4byte gVineWhipMoveDescription
.4byte gStompMoveDescription
.4byte gDoubleKickMoveDescription
.4byte gMegaKickMoveDescription
.4byte gJumpKickMoveDescription
.4byte gRollingKickMoveDescription
.4byte gSandAttackMoveDescription
.4byte gHeadbuttMoveDescription
.4byte gHornAttackMoveDescription
.4byte gFuryAttackMoveDescription
.4byte gHornDrillMoveDescription
.4byte gTackleMoveDescription
.4byte gBodySlamMoveDescription
.4byte gWrapMoveDescription
.4byte gTakeDownMoveDescription
.4byte gThrashMoveDescription
.4byte gDoubleEdgeMoveDescription
.4byte gTailWhipMoveDescription
.4byte gPoisonStingMoveDescription
.4byte gTwineedleMoveDescription
.4byte gPinMissileMoveDescription
.4byte gLeerMoveDescription
.4byte gBiteMoveDescription
.4byte gGrowlMoveDescription
.4byte gRoarMoveDescription
.4byte gSingMoveDescription
.4byte gSupersonicMoveDescription
.4byte gSonicBoomMoveDescription
.4byte gDisableMoveDescription
.4byte gAcidMoveDescription
.4byte gEmberMoveDescription
.4byte gFlamethrowerMoveDescription
.4byte gMistMoveDescription
.4byte gWaterGunMoveDescription
.4byte gHydroPumpMoveDescription
.4byte gSurfMoveDescription
.4byte gIceBeamMoveDescription
.4byte gBlizzardMoveDescription
.4byte gPsybeamMoveDescription
.4byte gBubbleBeamMoveDescription
.4byte gAuroraBeamMoveDescription
.4byte gHyperBeamMoveDescription
.4byte gPeckMoveDescription
.4byte gDrillPeckMoveDescription
.4byte gSubmissionMoveDescription
.4byte gLowKickMoveDescription
.4byte gCounterMoveDescription
.4byte gSeismicTossMoveDescription
.4byte gStrengthMoveDescription
.4byte gAbsorbMoveDescription
.4byte gMegaDrainMoveDescription
.4byte gLeechSeedMoveDescription
.4byte gGrowthMoveDescription
.4byte gRazorLeafMoveDescription
.4byte gSolarBeamMoveDescription
.4byte gPoisonPowderMoveDescription
.4byte gStunSporeMoveDescription
.4byte gSleepPowderMoveDescription
.4byte gPetalDanceMoveDescription
.4byte gStringShotMoveDescription
.4byte gDragonRageMoveDescription
.4byte gFireSpinMoveDescription
.4byte gThunderShockMoveDescription
.4byte gThunderboltMoveDescription
.4byte gThunderWaveMoveDescription
.4byte gThunderMoveDescription
.4byte gRockThrowMoveDescription
.4byte gEarthquakeMoveDescription
.4byte gFissureMoveDescription
.4byte gDigMoveDescription
.4byte gToxicMoveDescription
.4byte gConfusionMoveDescription
.4byte gPsychicMoveDescription
.4byte gHypnosisMoveDescription
.4byte gMeditateMoveDescription
.4byte gAgilityMoveDescription
.4byte gQuickAttackMoveDescription
.4byte gRageMoveDescription
.4byte gTeleportMoveDescription
.4byte gNightShadeMoveDescription
.4byte gMimicMoveDescription
.4byte gScreechMoveDescription
.4byte gDoubleTeamMoveDescription
.4byte gRecoverMoveDescription
.4byte gHardenMoveDescription
.4byte gMinimizeMoveDescription
.4byte gSmokescreenMoveDescription
.4byte gConfuseRayMoveDescription
.4byte gWithdrawMoveDescription
.4byte gDefenseCurlMoveDescription
.4byte gBarrierMoveDescription
.4byte gLightScreenMoveDescription
.4byte gHazeMoveDescription
.4byte gReflectMoveDescription
.4byte gFocusEnergyMoveDescription
.4byte gBideMoveDescription
.4byte gMetronomeMoveDescription
.4byte gMirrorMoveMoveDescription
.4byte gSelfDestructMoveDescription
.4byte gEggBombMoveDescription
.4byte gLickMoveDescription
.4byte gSmogMoveDescription
.4byte gSludgeMoveDescription
.4byte gBoneClubMoveDescription
.4byte gFireBlastMoveDescription
.4byte gWaterfallMoveDescription
.4byte gClampMoveDescription
.4byte gSwiftMoveDescription
.4byte gSkullBashMoveDescription
.4byte gSpikeCannonMoveDescription
.4byte gConstrictMoveDescription
.4byte gAmnesiaMoveDescription
.4byte gKinesisMoveDescription
.4byte gSoftBoiledMoveDescription
.4byte gHiJumpKickMoveDescription
.4byte gGlareMoveDescription
.4byte gDreamEaterMoveDescription
.4byte gPoisonGasMoveDescription
.4byte gBarrageMoveDescription
.4byte gLeechLifeMoveDescription
.4byte gLovelyKissMoveDescription
.4byte gSkyAttackMoveDescription
.4byte gTransformMoveDescription
.4byte gBubbleMoveDescription
.4byte gDizzyPunchMoveDescription
.4byte gSporeMoveDescription
.4byte gFlashMoveDescription
.4byte gPsywaveMoveDescription
.4byte gSplashMoveDescription
.4byte gAcidArmorMoveDescription
.4byte gCrabhammerMoveDescription
.4byte gExplosionMoveDescription
.4byte gFurySwipesMoveDescription
.4byte gBonemerangMoveDescription
.4byte gRestMoveDescription
.4byte gRockSlideMoveDescription
.4byte gHyperFangMoveDescription
.4byte gSharpenMoveDescription
.4byte gConversionMoveDescription
.4byte gTriAttackMoveDescription
.4byte gSuperFangMoveDescription
.4byte gSlashMoveDescription
.4byte gSubstituteMoveDescription
.4byte gStruggleMoveDescription
.4byte gSketchMoveDescription
.4byte gTripleKickMoveDescription
.4byte gThiefMoveDescription
.4byte gSpiderWebMoveDescription
.4byte gMindReaderMoveDescription
.4byte gNightmareMoveDescription
.4byte gFlameWheelMoveDescription
.4byte gSnoreMoveDescription
.4byte gCurseMoveDescription
.4byte gFlailMoveDescription
.4byte gConversion2MoveDescription
.4byte gAeroblastMoveDescription
.4byte gCottonSporeMoveDescription
.4byte gReversalMoveDescription
.4byte gSpiteMoveDescription
.4byte gPowderSnowMoveDescription
.4byte gProtectMoveDescription
.4byte gMachPunchMoveDescription
.4byte gScaryFaceMoveDescription
.4byte gFaintAttackMoveDescription
.4byte gSweetKissMoveDescription
.4byte gBellyDrumMoveDescription
.4byte gSludgeBombMoveDescription
.4byte gMudSlapMoveDescription
.4byte gOctazookaMoveDescription
.4byte gSpikesMoveDescription
.4byte gZapCannonMoveDescription
.4byte gForesightMoveDescription
.4byte gDestinyBondMoveDescription
.4byte gPerishSongMoveDescription
.4byte gIcyWindMoveDescription
.4byte gDetectMoveDescription
.4byte gBoneRushMoveDescription
.4byte gLockOnMoveDescription
.4byte gOutrageMoveDescription
.4byte gSandstormMoveDescription
.4byte gGigaDrainMoveDescription
.4byte gEndureMoveDescription
.4byte gCharmMoveDescription
.4byte gRolloutMoveDescription
.4byte gFalseSwipeMoveDescription
.4byte gSwaggerMoveDescription
.4byte gMilkDrinkMoveDescription
.4byte gSparkMoveDescription
.4byte gFuryCutterMoveDescription
.4byte gSteelWingMoveDescription
.4byte gMeanLookMoveDescription
.4byte gAttractMoveDescription
.4byte gSleepTalkMoveDescription
.4byte gHealBellMoveDescription
.4byte gReturnMoveDescription
.4byte gPresentMoveDescription
.4byte gFrustrationMoveDescription
.4byte gSafeguardMoveDescription
.4byte gPainSplitMoveDescription
.4byte gSacredFireMoveDescription
.4byte gMagnitudeMoveDescription
.4byte gDynamicPunchMoveDescription
.4byte gMegahornMoveDescription
.4byte gDragonBreathMoveDescription
.4byte gBatonPassMoveDescription
.4byte gEncoreMoveDescription
.4byte gPursuitMoveDescription
.4byte gRapidSpinMoveDescription
.4byte gSweetScentMoveDescription
.4byte gIronTailMoveDescription
.4byte gMetalClawMoveDescription
.4byte gVitalThrowMoveDescription
.4byte gMorningSunMoveDescription
.4byte gSynthesisMoveDescription
.4byte gMoonlightMoveDescription
.4byte gHiddenPowerMoveDescription
.4byte gCrossChopMoveDescription
.4byte gTwisterMoveDescription
.4byte gRainDanceMoveDescription
.4byte gSunnyDayMoveDescription
.4byte gCrunchMoveDescription
.4byte gMirrorCoatMoveDescription
.4byte gPsychUpMoveDescription
.4byte gExtremeSpeedMoveDescription
.4byte gAncientPowerMoveDescription
.4byte gShadowBallMoveDescription
.4byte gFutureSightMoveDescription
.4byte gRockSmashMoveDescription
.4byte gWhirlpoolMoveDescription
.4byte gBeatUpMoveDescription
.4byte gFakeOutMoveDescription
.4byte gUproarMoveDescription
.4byte gStockpileMoveDescription
.4byte gSpitUpMoveDescription
.4byte gSwallowMoveDescription
.4byte gHeatWaveMoveDescription
.4byte gHailMoveDescription
.4byte gTormentMoveDescription
.4byte gFlatterMoveDescription
.4byte gWillOWispMoveDescription
.4byte gMementoMoveDescription
.4byte gFacadeMoveDescription
.4byte gFocusPunchMoveDescription
.4byte gSmellingSaltMoveDescription
.4byte gFollowMeMoveDescription
.4byte gNaturePowerMoveDescription
.4byte gChargeMoveDescription
.4byte gTauntMoveDescription
.4byte gHelpingHandMoveDescription
.4byte gTrickMoveDescription
.4byte gRolePlayMoveDescription
.4byte gWishMoveDescription
.4byte gAssistMoveDescription
.4byte gIngrainMoveDescription
.4byte gSuperpowerMoveDescription
.4byte gMagicCoatMoveDescription
.4byte gRecycleMoveDescription
.4byte gRevengeMoveDescription
.4byte gBrickBreakMoveDescription
.4byte gYawnMoveDescription
.4byte gKnockOffMoveDescription
.4byte gEndeavorMoveDescription
.4byte gEruptionMoveDescription
.4byte gSkillSwapMoveDescription
.4byte gImprisonMoveDescription
.4byte gRefreshMoveDescription
.4byte gGrudgeMoveDescription
.4byte gSnatchMoveDescription
.4byte gSecretPowerMoveDescription
.4byte gDiveMoveDescription
.4byte gArmThrustMoveDescription
.4byte gCamouflageMoveDescription
.4byte gTailGlowMoveDescription
.4byte gLusterPurgeMoveDescription
.4byte gMistBallMoveDescription
.4byte gFeatherDanceMoveDescription
.4byte gTeeterDanceMoveDescription
.4byte gBlazeKickMoveDescription
.4byte gMudSportMoveDescription
.4byte gIceBallMoveDescription
.4byte gNeedleArmMoveDescription
.4byte gSlackOffMoveDescription
.4byte gHyperVoiceMoveDescription
.4byte gPoisonFangMoveDescription
.4byte gCrushClawMoveDescription
.4byte gBlastBurnMoveDescription
.4byte gHydroCannonMoveDescription
.4byte gMeteorMashMoveDescription
.4byte gAstonishMoveDescription
.4byte gWeatherBallMoveDescription
.4byte gAromatherapyMoveDescription
.4byte gFakeTearsMoveDescription
.4byte gAirCutterMoveDescription
.4byte gOverheatMoveDescription
.4byte gOdorSleuthMoveDescription
.4byte gRockTombMoveDescription
.4byte gSilverWindMoveDescription
.4byte gMetalSoundMoveDescription
.4byte gGrassWhistleMoveDescription
.4byte gTickleMoveDescription
.4byte gCosmicPowerMoveDescription
.4byte gWaterSpoutMoveDescription
.4byte gSignalBeamMoveDescription
.4byte gShadowPunchMoveDescription
.4byte gExtrasensoryMoveDescription
.4byte gSkyUppercutMoveDescription
.4byte gSandTombMoveDescription
.4byte gSheerColdMoveDescription
.4byte gMuddyWaterMoveDescription
.4byte gBulletSeedMoveDescription
.4byte gAerialAceMoveDescription
.4byte gIcicleSpearMoveDescription
.4byte gIronDefenseMoveDescription
.4byte gBlockMoveDescription
.4byte gHowlMoveDescription
.4byte gDragonClawMoveDescription
.4byte gFrenzyPlantMoveDescription
.4byte gBulkUpMoveDescription
.4byte gBounceMoveDescription
.4byte gMudShotMoveDescription
.4byte gPoisonTailMoveDescription
.4byte gCovetMoveDescription
.4byte gVoltTackleMoveDescription
.4byte gMagicalLeafMoveDescription
.4byte gWaterSportMoveDescription
.4byte gCalmMindMoveDescription
.4byte gLeafBladeMoveDescription
.4byte gDragonDanceMoveDescription
.4byte gRockBlastMoveDescription
.4byte gShockWaveMoveDescription
.4byte gWaterPulseMoveDescription
.4byte gDoomDesireMoveDescription
.4byte gPsychoBoostMoveDescription
|