summaryrefslogtreecommitdiff
path: root/data/text/move_descriptions.inc
blob: 94a4d0ca8aabc9a23abffe727f835ce593eeebeb (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
gMoveDescription_Pound::
	.string "A physical attack\ndelivered with a\nlong tail or a\nforeleg, etc.$"

gMoveDescription_KarateChop:: @ 8482874
	.string "The foe is attacked\nwith a sharp chop.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_DoubleSlap:: @ 84828BD
	.string "The foe is slapped\nrepeatedly, back\nand forth, two to\nfive times.$"

gMoveDescription_CometPunch:: @ 84828FF
	.string "The foe is hit with\na flurry of punches\nthat strike two to\nfive times.$"

gMoveDescription_MegaPunch:: @ 8482946
	.string "The foe is slugged\nby a punch thrown\nwith muscle-packed\npower.$"

gMoveDescription_PayDay:: @ 8482985
	.string "Numerous coins are\nhurled at the foe.\nMoney is earned\nafter battle.$"

gMoveDescription_FirePunch:: @ 84829C9
	.string "The foe is punched\nwith a fiery fist.\nIt may leave the\nfoe with a burn.$"

gMoveDescription_IcePunch:: @ 8482A11
	.string "The foe is punched\nwith an icy fist.\nIt may leave the\nfoe frozen.$"

gMoveDescription_ThunderPunch:: @ 8482A53
	.string "The foe is punched\nwith an electrified\nfist. It may leave\nthe foe paralyzed.$"

gMoveDescription_Scratch:: @ 8482AA0
	.string "Hard, pointed, and\nsharp claws rake\nthe foe.$"

gMoveDescription_ViceGrip:: @ 8482ACD
	.string "Huge, impressive\npincers grip and\nsqueeze the foe.$"

gMoveDescription_Guillotine:: @ 8482B00
	.string "A vicious tearing\nattack with pincers.\nThe foe will faint\nif it hits.$"

gMoveDescription_RazorWind:: @ 8482B46
	.string "Blades of wind hit\nthe foe on the 2nd\nturn. It has a high\ncritical-hit ratio.$"

gMoveDescription_SwordsDance:: @ 8482B94
	.string "A frenetic dance of\nfighting. It sharply\nraises the ATTACK\nstat.$"

gMoveDescription_Cut:: @ 8482BD5
	.string "A basic attack.\nIt can be used to\ncut down thin trees\nand grass.$"

gMoveDescription_Gust:: @ 8482C16
	.string "Strikes the foe\nwith a gust of wind\nwhipped up by\nwings.$"

gMoveDescription_WingAttack:: @ 8482C4F
	.string "The foe is struck\nwith large, imposing\nwings spread wide.$"

gMoveDescription_Whirlwind:: @ 8482C89
	.string "The foe is made to\nswitch out with an\nally. In the wild,\nthe battle ends.$"

gMoveDescription_Fly:: @ 8482CD3
	.string "A 2-turn move that\nhits on the 2nd\nturn. Use it to fly\nto any known town.$"

gMoveDescription_Bind:: @ 8482D1D
	.string "A long body or\ntentacles are used\nto bind the foe for\ntwo to five turns.$"

gMoveDescription_Slam:: @ 8482D66
	.string "The foe is struck\nwith a long tail,\nvines, etc.$"

gMoveDescription_VineWhip:: @ 8482D96
	.string "The foe is struck\nwith slender, whip-\nlike vines.$"

gMoveDescription_Stomp:: @ 8482DC8
	.string "The foe is stomped\nwith a big foot.\nIt may make the\nfoe flinch.$"

gMoveDescription_DoubleKick:: @ 8482E08
	.string "Two legs are used\nto quickly kick the\nfoe twice in one\nturn.$"

gMoveDescription_MegaKick:: @ 8482E45
	.string "The foe is attacked\nby a kick fired\nwith muscle-packed\npower.$"

gMoveDescription_JumpKick:: @ 8482E83
	.string "The user jumps up\nhigh, then kicks.\nIf it misses, the\nuser hurts itself.$"

gMoveDescription_RollingKick:: @ 8482ECC
	.string "A quick kick from a\nrolling spin.\nIt may make the\nfoe flinch.$"

gMoveDescription_SandAttack:: @ 8482F0A
	.string "A lot of sand is\nhurled in the foe's\nface, reducing its\naccuracy.$"

gMoveDescription_Headbutt:: @ 8482F4C
	.string "The user sticks its\nhead out and rams.\nIt may make the\nfoe flinch.$"

gMoveDescription_HornAttack:: @ 8482F8F
	.string "The foe is jabbed\nwith a sharply\npointed horn to\ninflict damage.$"

gMoveDescription_FuryAttack:: @ 8482FD0
	.string "The foe is jabbed\nrepeatedly with a\nhorn or beak two to\nfive times.$"

gMoveDescription_HornDrill:: @ 8483014
	.string "The horn is rotated\nlike a drill to ram.\nThe foe will faint\nif it hits.$"

gMoveDescription_Tackle:: @ 848305C
	.string "A physical attack\nin which the user\ncharges, full body,\ninto the foe.$"

gMoveDescription_BodySlam:: @ 84830A2
	.string "The user drops its\nfull body on the\nfoe. It may leave\nthe foe paralyzed.$"

gMoveDescription_Wrap:: @ 84830EB
	.string "A long body or\nvines are used to\nwrap the foe for\ntwo to five turns.$"

gMoveDescription_TakeDown:: @ 8483130
	.string "A reckless, full-\nbody charge attack\nthat also hurts the\nuser a little.$"

gMoveDescription_Thrash:: @ 8483178
	.string "The user rampages\nabout for two to\nthree turns, then\nbecomes confused.$"

gMoveDescription_DoubleEdge:: @ 84831BF
	.string "A reckless, life-\nrisking tackle that\nalso hurts the user\na little.$"

gMoveDescription_TailWhip:: @ 8483203
	.string "The user wags its\ntail cutely, making\nthe foe lower its\nDEFENSE stat.$"

gMoveDescription_PoisonSting:: @ 8483249
	.string "The foe is stabbed\nwith a toxic barb,\netc. It may poison\nthe foe.$"

gMoveDescription_Twineedle:: @ 848328B
	.string "The foe is stabbed\ntwice with foreleg\nstingers. It may\npoison the foe.$"

gMoveDescription_PinMissile:: @ 84832D2
	.string "Sharp pins are shot\nat the foe and hit\ntwo to five times\nat once.$"

gMoveDescription_Leer:: @ 8483314
	.string "The foe is given an\nintimidating look\nthat lowers its\nDEFENSE stat.$"

gMoveDescription_Bite:: @ 8483358
	.string "The user bites with\nvicious fangs.\nIt may make the\nfoe flinch.$"

gMoveDescription_Growl:: @ 8483397
	.string "The user growls in\na cute way, making\nthe foe lower its\nATTACK stat.$"

gMoveDescription_Roar:: @ 84833DC
	.string "The foe is made to\nswitch out with an\nally. In the wild,\nthe battle ends.$"

gMoveDescription_Sing:: @ 8483426
	.string "A soothing song\nin a calming voice\nlulls the foe into\na deep slumber.$"

gMoveDescription_Supersonic:: @ 848346C
	.string "The user generates\nodd sound waves.\nIt may confuse the\nfoe.$"

gMoveDescription_SonicBoom:: @ 84834A8
	.string "The foe is hit with\na shock wave that\nalways inflicts 20-\nHP damage.$"

gMoveDescription_Disable:: @ 84834ED
	.string "For a few turns,\nit prevents the foe\nfrom using the move\nit last used.$"

gMoveDescription_Acid:: @ 8483534
	.string "The foe is sprayed\nwith a harsh, hide-\nmelting acid that\nmay lower DEFENSE.$"

gMoveDescription_Ember:: @ 8483580
	.string "The foe is attacked\nwith small flames.\nThe foe may suffer\na burn.$"

gMoveDescription_Flamethrower:: @ 84835C2
	.string "The foe is scorched\nwith intense flames.\nThe foe may suffer\na burn.$"

gMoveDescription_Mist:: @ 8483606
	.string "The ally party is\nprotected by a\nmist that prevents\nstat reductions.$"

gMoveDescription_WaterGun:: @ 848364B
	.string "The foe is struck\nwith a lot of water\nexpelled forcibly\nfrom the mouth.$"

gMoveDescription_HydroPump:: @ 8483693
	.string "A high volume of\nwater is blasted at\nthe foe under great\npressure.$"

gMoveDescription_Surf:: @ 84836D6
	.string "A big wave crashes\ndown on the foe.\nCan also be used\nfor crossing water.$"

gMoveDescription_IceBeam:: @ 848371F
	.string "The foe is struck\nwith an icy beam.\nIt may freeze the\nfoe solid.$"

gMoveDescription_Blizzard:: @ 8483760
	.string "The foe is blasted\nwith a blizzard.\nIt may freeze the\nfoe solid.$"

gMoveDescription_Psybeam:: @ 84837A1
	.string "A peculiar ray is\nshot at the foe.\nIt may leave the\nfoe confused.$"

gMoveDescription_BubbleBeam:: @ 84837E3
	.string "A spray of bubbles\nstrikes the foe.\nIt may lower the\nfoe's SPEED stat.$"

gMoveDescription_AuroraBeam:: @ 848382A
	.string "A rainbow-colored\nattack beam.\nIt may lower the\nfoe's ATTACK stat.$"

gMoveDescription_HyperBeam:: @ 848386D
	.string "A severely damaging\nattack that makes\nthe user rest on\nthe next turn.$"

gMoveDescription_Peck:: @ 84838B3
	.string "The foe is jabbed\nwith a sharply\npointed beak or\nhorn.$"

gMoveDescription_DrillPeck:: @ 84838EA
	.string "A corkscrewing\nattack with the\nsharp beak acting\nas a drill.$"

gMoveDescription_Submission:: @ 8483927
	.string "A reckless, full-\nbody throw attack\nthat also hurts the\nuser a little.$"

gMoveDescription_LowKick:: @ 848396E
	.string "A low, tripping kick\nthat inflicts more\ndamage on heavier\nfoes.$"

gMoveDescription_Counter:: @ 84839AE
	.string "A retaliation move\nthat counters any\nphysical hit with\ndouble the damage.$"

gMoveDescription_SeismicToss:: @ 84839F8
	.string "A gravity-fed throw\nthat causes damage\nmatching the user's\nlevel.$"

gMoveDescription_Strength:: @ 8483A3A
	.string "The foe is slugged\nat maximum power.\nCan also be used\nto move boulders.$"

gMoveDescription_Absorb:: @ 8483A82
	.string "An attack that\nabsorbs half the\ndamage it inflicted\nto restore HP.$"

gMoveDescription_MegaDrain:: @ 8483AC5
	.string "A tough attack that\ndrains half the\ndamage it inflicted\nto restore HP.$"

gMoveDescription_LeechSeed:: @ 8483B0C
	.string "A seed is planted\non the foe to steal\nsome HP for the \nuser on every turn.$"

gMoveDescription_Growth:: @ 8483B57
	.string "The user's body is\nforced to grow,\nraising the SP.\nATK stat.$"

gMoveDescription_RazorLeaf:: @ 8483B94
	.string "The foe is hit with\na cutting leaf.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_SolarBeam:: @ 8483BDA
	.string "A 2-turn move that\nblasts the foe with\nabsorbed energy in\nthe 2nd turn.$"

gMoveDescription_PoisonPowder:: @ 8483C22
	.string "A cloud of toxic\ndust is scattered.\nIt may poison the\nfoe.$"

gMoveDescription_StunSpore:: @ 8483C5D
	.string "Paralyzing dust is\nscattered wildly.\nIt may paralyze\nthe foe.$"

gMoveDescription_SleepPowder:: @ 8483C9B
	.string "A sleep-inducing\ndust is scattered\nin high volume\naround a foe.$"

gMoveDescription_PetalDance:: @ 8483CDB
	.string "The user attacks\nwith petals for two\nto three turns,\nthen gets confused.$"

gMoveDescription_StringShot:: @ 8483D24
	.string "The foe is bound\nwith strings shot\nfrom the mouth to\nreduce its SPEED.$"

gMoveDescription_DragonRage:: @ 8483D6B
	.string "The foe is hit with\na shock wave that\nalways inflicts 40-\nHP damage.$"

gMoveDescription_FireSpin:: @ 8483DB0
	.string "The foe is trapped\nin an intense spiral\nof fire that rages\ntwo to five turns.$"

gMoveDescription_ThunderShock:: @ 8483DFE
	.string "An electric shock\nattack that may\nalso leave the foe\nparalyzed.$"

gMoveDescription_Thunderbolt:: @ 8483E3E
	.string "A strong electrical\nattack that may\nalso leave the foe\nparalyzed.$"

gMoveDescription_ThunderWave:: @ 8483E80
	.string "A weak electric\nshock that is sure\nto cause paralysis\nif it hits.$"

gMoveDescription_Thunder:: @ 8483EC2
	.string "A brutal lightning\nattack that may\nalso leave the foe\nparalyzed.$"

gMoveDescription_RockThrow:: @ 8483F03
	.string "The foe is attacked\nwith a shower of\nsmall, easily\nthrown rocks.$"

gMoveDescription_Earthquake:: @ 8483F44
	.string "An earthquake that\nstrikes all POKéMON\nin battle excluding\nthe user.$"

gMoveDescription_Fissure:: @ 8483F89
	.string "The foe is dropped\ninto a fissure.\nThe foe faints if it\nhits.$"

gMoveDescription_Dig:: @ 8483FC7
	.string "An attack that hits\non the 2nd turn.\nCan also be used\nto exit dungeons.$"

gMoveDescription_Toxic:: @ 848400F
	.string "A move that badly\npoisons the foe.\nIts poison damage\nworsens every turn.$"

gMoveDescription_Confusion:: @ 8484058
	.string "A weak telekinetic\nattack that may\nalso leave the foe\nconfused.$"

gMoveDescription_Psychic:: @ 8484098
	.string "A strong telekinetic\nattack. It may also\nlower the foe's\nSP. DEF stat.$"

gMoveDescription_Hypnosis:: @ 84840DF
	.string "Hypnotic suggestion\nis used to make the\nfoe fall into a\ndeep sleep.$"

gMoveDescription_Meditate:: @ 8484123
	.string "The user meditates\nto awaken its power\nand raise its\nATTACK stat.$"

gMoveDescription_Agility:: @ 8484165
	.string "The user relaxes\nand lightens its\nbody to sharply\nboost its SPEED.$"

gMoveDescription_QuickAttack:: @ 84841A8
	.string "An almost invisibly\nfast attack that\nis certain to strike\nfirst.$"

gMoveDescription_Rage:: @ 84841E9
	.string "An attack that\nbecomes stronger\neach time the user\nis hit in battle.$"

gMoveDescription_Teleport:: @ 848422E
	.string "Use it to flee from\nany wild POKéMON.\nAlso warps to the\nlast POKé CENTER.$"

gMoveDescription_NightShade:: @ 8484278
	.string "An attack with a\nmirage that inflicts\ndamage matching\nthe user's level.$"

gMoveDescription_Mimic:: @ 84842C0
	.string "The user copies the\nmove last used by\nthe foe for the\nrest of the battle.$"

gMoveDescription_Screech:: @ 848430A
	.string "An ear-splitting\nscreech is emitted\nto sharply reduce\nthe foe's DEFENSE.$"

gMoveDescription_DoubleTeam:: @ 8484353
	.string "The user creates\nillusory copies of\nitself to raise its\nevasiveness.$"

gMoveDescription_Recover:: @ 8484398
	.string "A self-healing move\nthat restores HP by\nup to half of the\nuser's maximum HP.$"

gMoveDescription_Harden:: @ 84843E5
	.string "The user stiffens\nall the muscles in\nits body to raise\nits DEFENSE stat.$"

gMoveDescription_Minimize:: @ 848442E
	.string "The user compresses\nall the cells in its\nbody to raise its\nevasiveness.$"

gMoveDescription_Smokescreen:: @ 8484476
	.string "An obscuring cloud\nof smoke or ink\nreduces the foe's\naccuracy.$"

gMoveDescription_ConfuseRay:: @ 84844B5
	.string "The foe is exposed\nto a sinister ray\nthat triggers\nconfusion.$"

gMoveDescription_Withdraw:: @ 84844F3
	.string "The user withdraws\nits body in its hard\nshell, raising its\nDEFENSE stat.$"

gMoveDescription_DefenseCurl:: @ 848453C
	.string "The user curls up\nto conceal weak\nspots and raise its\nDEFENSE stat.$"

gMoveDescription_Barrier:: @ 8484580
	.string "The user creates a\nsturdy wall that\nsharply raises its\nDEFENSE stat.$"

gMoveDescription_LightScreen:: @ 84845C5
	.string "A wall of light\ncuts damage from\nSP. ATK attacks\nfor five turns.$"

gMoveDescription_Haze:: @ 8484606
	.string "Eliminates all stat\nchanges among all\nPOKéMON engaged in\nbattle.$"

gMoveDescription_Reflect:: @ 8484647
	.string "A wall of light\ncuts damage from\nphysical attacks\nfor five turns.$"

gMoveDescription_FocusEnergy:: @ 8484689
	.string "The user takes a\ndeep breath and\nfocuses to raise its\ncritical-hit ratio.$"

gMoveDescription_Bide:: @ 84846D3
	.string "The user endures\nattacks for two\nturns, then strikes\nback double.$"

gMoveDescription_Metronome:: @ 8484715
	.string "Waggles a finger\nand stimulates the\nbrain into using any\nmove at random.$"

gMoveDescription_MirrorMove:: @ 848475E
	.string "The user counters\nthe move last used\nby the foe with the\nsame move.$"

gMoveDescription_SelfDestruct:: @ 84847A2
	.string "The user blows up\nto inflict severe\ndamage, even\nmaking itself faint.$"

gMoveDescription_EggBomb:: @ 84847E8
	.string "A large egg is\nhurled with great\nforce at the foe to\ninflict damage.$"

gMoveDescription_Lick:: @ 848482D
	.string "The foe is licked\nand hit with a long\ntongue. It may\nalso paralyze.$"

gMoveDescription_Smog:: @ 8484871
	.string "The foe is attacked\nwith exhaust gases.\nIt may also poison\nthe foe.$"

gMoveDescription_Sludge:: @ 84848B5
	.string "Toxic sludge is\nhurled at the foe.\nIt may poison the\ntarget.$"

gMoveDescription_BoneClub:: @ 84848F2
	.string "The foe is clubbed\nwith a bone held in\nhand. It may make\nthe foe flinch.$"

gMoveDescription_FireBlast:: @ 848493B
	.string "The foe is hit with\nan intense flame.\nIt may leave the\ntarget with a burn.$"

gMoveDescription_Waterfall:: @ 8484986
	.string "A powerful charge\nattack. It can also\nbe used to climb\na waterfall.$"

gMoveDescription_Clamp:: @ 84849CA
	.string "The foe is clamped\nand squeezed by\nthe user's shell for\ntwo to five turns.$"

gMoveDescription_Swift:: @ 8484A15
	.string "Star-shaped rays\nthat never miss are\nfired at all foes in\nbattle.$"

gMoveDescription_SkullBash:: @ 8484A57
	.string "The user raises its\nDEFENSE in the 1st\nturn, then attacks\nin the 2nd turn.$"

gMoveDescription_SpikeCannon:: @ 8484AA2
	.string "Sharp spikes are\nfired at the foe to\nstrike two to five\ntimes.$"

gMoveDescription_Constrict:: @ 8484AE1
	.string "The foe is attacked\nwith long tentacles\nor vines. It may\nlower SPEED.$"

gMoveDescription_Amnesia:: @ 8484B27
	.string "Forgets about\nsomething and\nsharply raises\nSP. DEF.$"

gMoveDescription_Kinesis:: @ 8484B5B
	.string "The user distracts\nthe foe by bending\na spoon. It may\nlower accuracy.$"

gMoveDescription_SoftBoiled:: @ 8484BA1
	.string "Heals the user by\nup to half its full\nHP. It can be used\nto heal an ally.$"

gMoveDescription_HiJumpKick:: @ 8484BEB
	.string "A strong jumping\nknee kick. If it\nmisses, the user is\nhurt.$"

gMoveDescription_Glare:: @ 8484C27
	.string "The user intimidates\nthe foe with the\ndesign on its belly\nto cause paralysis.$"

gMoveDescription_DreamEater:: @ 8484C75
	.string "Absorbs half the\ndamage it inflicted\non a sleeping foe\nto restore HP.$"

gMoveDescription_PoisonGas:: @ 8484CBB
	.string "The foe is sprayed\nwith a cloud of\ntoxic gas that may\npoison the foe.$"

gMoveDescription_Barrage:: @ 8484D01
	.string "Round objects are\nhurled at the foe\nto strike two to\nfive times.$"

gMoveDescription_LeechLife:: @ 8484D42
	.string "An attack that\nabsorbs half the\ndamage it inflicted\nto restore HP.$"

gMoveDescription_LovelyKiss:: @ 8484D85
	.string "The user forces a\nkiss on the foe\nwith a scary face\nthat induces sleep.$"

gMoveDescription_SkyAttack:: @ 8484DCD
	.string "A 2nd-turn attack\nmove with a high\ncritical-hit ratio.\nThe foe may flinch.$"

gMoveDescription_Transform:: @ 8484E18
	.string "The user transforms\ninto a copy of the\nfoe with even the\nsame move set.$"

gMoveDescription_Bubble:: @ 8484E60
	.string "A spray of bubbles\nhits the foe.\nIt may lower the\nfoe's SPEED stat.$"

gMoveDescription_DizzyPunch:: @ 8484EA4
	.string "The foe is hit with\na rhythmic punch\nthat may leave it\nconfused.$"

gMoveDescription_Spore:: @ 8484EE5
	.string "The user scatters\nbursts of fine\nspores that induce\nsleep.$"

gMoveDescription_Flash:: @ 8484F20
	.string "A blast of light\nthat cuts the foe's\naccuracy. It also\nilluminates caves.$"

gMoveDescription_Psywave:: @ 8484F6A
	.string "The foe is attacked\nwith an odd, hot\nenergy wave that\nvaries in intensity.$"

gMoveDescription_Splash:: @ 8484FB5
	.string "The user just flops\nand splashes around\nwithout having any\neffect.$"

gMoveDescription_AcidArmor:: @ 8484FF8
	.string "The user alters its\ncells to liquefy\nitself and sharply\nraise DEFENSE.$"

gMoveDescription_Crabhammer:: @ 848503F
	.string "A large pincer is\nused to hammer the\nfoe. It has a high\ncritical-hit ratio.$"

gMoveDescription_Explosion:: @ 848508B
	.string "The user explodes\nto inflict terrible\ndamage even while\nfainting itself.$"

gMoveDescription_FurySwipes:: @ 84850D4
	.string "The foe is raked\nwith sharp claws or\nscythes two to five\ntimes.$"

gMoveDescription_Bonemerang:: @ 8485114
	.string "The user throws a\nbone that hits the\nfoe once, then once\nagain on return.$"

gMoveDescription_Rest:: @ 848515E
	.string "The user sleeps for\ntwo turns to fully\nrestore HP and heal\nany status problem.$"

gMoveDescription_RockSlide:: @ 84851AD
	.string "Large boulders are\nhurled at the foe.\nIt may make the\nfoe flinch.$"

gMoveDescription_HyperFang:: @ 84851EF
	.string "The foe is attacked\nwith sharp fangs.\nIt may make the\nfoe flinch.$"

gMoveDescription_Sharpen:: @ 8485231
	.string "The user reduces\nits polygon count\nto sharpen edges\nand raise ATTACK.$"

gMoveDescription_Conversion:: @ 8485277
	.string "The user changes\nits type to match\nthe type of one of\nits moves.$"

gMoveDescription_TriAttack:: @ 84852B8
	.string "A simultaneous\n3-beam attack that\nmay paralyze, burn,\nor freeze the foe.$"

gMoveDescription_SuperFang:: @ 8485301
	.string "The user attacks\nwith sharp fangs\nand halves the\nfoe's HP.$"

gMoveDescription_Slash:: @ 848533C
	.string "The foe is slashed\nwith claws, etc.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_Substitute:: @ 8485382
	.string "The user creates a\ndecoy using one-\nquarter of its full\nHP.$"

gMoveDescription_Struggle:: @ 84853BE
	.string "An attack that is\nused only if there\nis no PP. It also\nhurts the user.$"

gMoveDescription_Sketch:: @ 8485405
	.string "This move copies\nthe move last used\nby the foe, then\ndisappears.$"

gMoveDescription_TripleKick:: @ 8485446
	.string "A 3-kick attack\nthat becomes more\npowerful with each\nsuccessive hit.$"

gMoveDescription_Thief:: @ 848548B
	.string "An attack that may\ntake the foe's held\nitem if the user\nisn't holding one.$"

gMoveDescription_SpiderWeb:: @ 84854D6
	.string "Ensnares the foe \nwith sticky string\nso it doesn't flee\nor switch out.$"

gMoveDescription_MindReader:: @ 848551D
	.string "The user predicts\nthe foe's action to\nensure its next\nattack hits.$"

gMoveDescription_Nightmare:: @ 8485560
	.string "A sleeping foe is\nshown a nightmare\nthat inflicts some\ndamage every turn.$"

gMoveDescription_FlameWheel:: @ 84855AA
	.string "The user makes a\nfiery charge at the\nfoe. It may cause\na burn.$"

gMoveDescription_Snore:: @ 84855E9
	.string "An attack that can\nbe used only while\nasleep. It may\ncause flinching.$"

gMoveDescription_Curse:: @ 848562F
	.string "A move that works\ndifferently for the\nGHOST-type and all\nthe other types.$"

gMoveDescription_Flail:: @ 8485679
	.string "A desperate attack\nthat becomes more\npowerful the less\nHP the user has.$"

gMoveDescription_Conversion2:: @ 84856C1
	.string "The user changes\ntype to make itself\nresistant to the\nlast attack it took.$"

gMoveDescription_Aeroblast:: @ 848570C
	.string "A vortex of air is\nshot at the foe.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_CottonSpore:: @ 8485752
	.string "Cotton-like spores\ncling to the foe,\nsharply reducing\nits SPEED stat.$"

gMoveDescription_Reversal:: @ 8485798
	.string "An all-out attack\nthat becomes more\npowerful the less\nHP the user has.$"

gMoveDescription_Spite:: @ 84857DF
	.string "A move that cuts\n2 to 5 PP from the\nmove last used by\nthe foe.$"

gMoveDescription_PowderSnow:: @ 848581E
	.string "Blasts the foe with\na snowy gust.\nIt may cause\nfreezing.$"

gMoveDescription_Protect:: @ 8485857
	.string "Enables the user to\nevade all attacks.\nIt may fail if used\nin succession.$"

gMoveDescription_MachPunch:: @ 84858A1
	.string "A punch thrown at\nblinding speed.\nIt is certain to\nstrike first.$"

gMoveDescription_ScaryFace:: @ 84858E2
	.string "Frightens the foe\nwith a scary face\nto sharply reduce\nits SPEED.$"

gMoveDescription_FaintAttack:: @ 8485923
	.string "The user draws up\nclose to the foe\ndisarmingly, then\nhits without fail.$"

gMoveDescription_SweetKiss:: @ 848596B
	.string "The user kisses\nthe foe with sweet\ncuteness that\ncauses confusion.$"

gMoveDescription_BellyDrum:: @ 84859AE
	.string "The user maximizes\nits ATTACK stat at\nthe cost of half\nits full HP.$"

gMoveDescription_SludgeBomb:: @ 84859F2
	.string "Filthy sludge is\nhurled at the foe.\nIt may poison the\ntarget.$"

gMoveDescription_MudSlap:: @ 8485A30
	.string "Mud is hurled in\nthe foe's face to\ninflict damage and\nlower its accuracy.$"

gMoveDescription_Octazooka:: @ 8485A7A
	.string "Ink is blasted in\nthe foe's face or\neyes to damage and\nlower accuracy.$"

gMoveDescription_Spikes:: @ 8485AC1
	.string "A trap of spikes is\nlaid around the\nfoe's party to hurt\nfoes switching in.$"

gMoveDescription_ZapCannon:: @ 8485B0C
	.string "An electric blast is\nfired like a cannon\nto inflict damage\nand paralyze.$"

gMoveDescription_Foresight:: @ 8485B55
	.string "Completely negates\nthe foe's efforts to\nheighten its ability\nto evade.$"

gMoveDescription_DestinyBond:: @ 8485B9C
	.string "If the user faints,\nthe foe delivering\nthe final hit also\nfaints.$"

gMoveDescription_PerishSong:: @ 8485BDE
	.string "Any battler that\nhears this faints\nin three turns\nunless it switches.$"

gMoveDescription_IcyWind:: @ 8485C24
	.string "A chilling wind is\nused to attack.\nIt also lowers the\nSPEED stat.$"

gMoveDescription_Detect:: @ 8485C66
	.string "Enables the user to\nevade all attacks.\nIt may fail if used\nin succession.$"

gMoveDescription_BoneRush:: @ 8485CB0
	.string "The user strikes\nthe foe with a bone\nin hand two to five\ntimes.$"

gMoveDescription_LockOn:: @ 8485CF0
	.string "The user locks on\nto the foe, making\nthe next move sure\nto hit.$"

gMoveDescription_Outrage:: @ 8485D30
	.string "The user thrashes\nabout for two to\nthree turns, then\nbecomes confused.$"

gMoveDescription_Sandstorm:: @ 8485D77
	.string "A 5-turn sandstorm\nthat damages all\ntypes except ROCK,\nGROUND, and STEEL.$"

gMoveDescription_GigaDrain:: @ 8485DC1
	.string "A harsh attack that\nabsorbs half the\ndamage it inflicted\nto restore HP.$"

gMoveDescription_Endure:: @ 8485E09
	.string "The user endures\nany hit with 1 HP\nleft. It may fail if\nused in succession.$"

gMoveDescription_Charm:: @ 8485E55
	.string "The foe is charmed\nby the user's cute\nappeals, sharply\ncutting its ATTACK.$"

gMoveDescription_Rollout:: @ 8485EA0
	.string "A 5-turn rolling\nattack that becomes\nstronger each time\nit hits.$"

gMoveDescription_FalseSwipe:: @ 8485EE1
	.string "A restrained attack\nthat always leaves\nthe foe with at\nleast 1 HP.$"

gMoveDescription_Swagger:: @ 8485F24
	.string "A move that makes\nthe foe confused,\nbut also sharply\nraises its ATTACK.$"

gMoveDescription_MilkDrink:: @ 8485F6C
	.string "Heals the user by\nup to half its full\nHP. It can be used\nto heal an ally.$"

gMoveDescription_Spark:: @ 8485FB6
	.string "An electrically\ncharged tackle that\nmay also paralyze\nthe foe.$"

gMoveDescription_FuryCutter:: @ 8485FF5
	.string "An attack that\ngrows stronger on\neach successive\nhit.$"

gMoveDescription_SteelWing:: @ 848602B
	.string "The foe is hit with\nwings of steel.\nIt may also raise\nthe user's DEFENSE.$"

gMoveDescription_MeanLook:: @ 8486075
	.string "The foe is fixed\nwith a mean look\nthat prevents it\nfrom escaping.$"

gMoveDescription_Attract:: @ 84860B7
	.string "If it is the other\ngender, the foe is\nmade infatuated and\nunlikely to attack.$"

gMoveDescription_SleepTalk:: @ 8486105
	.string "While asleep, the\nuser randomly uses\none of the moves it\nknows.$"

gMoveDescription_HealBell:: @ 8486145
	.string "A soothing bell\nchimes to heal the\nstatus problems of\nall allies.$"

gMoveDescription_Return:: @ 8486187
	.string "This attack move\ngrows more powerful\nthe more the user\nlikes its TRAINER.$"

gMoveDescription_Present:: @ 84861D1
	.string "The foe is given a\nbooby-trapped gift.\nIt restores HP\nsometimes, however.$"

gMoveDescription_Frustration:: @ 848621B
	.string "This attack move\ngrows more powerful\nthe less the user\nlikes its TRAINER.$"

gMoveDescription_Safeguard:: @ 8486265
	.string "It protects the\nuser's party from\nall status problems\nfor five turns.$"

gMoveDescription_PainSplit:: @ 84862AB
	.string "The user adds its\nHP to the foe's HP,\nthen equally shares\nthe total HP.$"

gMoveDescription_SacredFire:: @ 84862F3
	.string "A mystical and\npowerful fire\nattack that may\ninflict a burn.$"

gMoveDescription_Magnitude:: @ 8486330
	.string "A ground-shaking\nattack against all\nstanding POKéMON.\nIts power varies.$"

gMoveDescription_DynamicPunch:: @ 8486378
	.string "The foe is punched\nwith the user's full\npower. It confuses\nthe foe if it hits.$"

gMoveDescription_Megahorn:: @ 84863C7
	.string "A brutal ramming\nattack delivered\nwith a tough and\nimpressive horn.$"

gMoveDescription_DragonBreath:: @ 848640B
	.string "The foe is hit with\nan incredible blast\nof breath that may\nalso paralyze.$"

gMoveDescription_BatonPass:: @ 8486455
	.string "The user switches\nout, passing along\nany stat changes\nto the new battler.$"

gMoveDescription_Encore:: @ 848649F
	.string "Makes the foe use\nthe move it last\nused repeatedly for\ntwo to six turns.$"

gMoveDescription_Pursuit:: @ 84864E8
	.string "An attack move that\nworks especially\nwell on a foe that\nis switching out.$"

gMoveDescription_RapidSpin:: @ 8486532
	.string "An attack that\nfrees the user from\nBIND, WRAP, LEECH\nSEED, and SPIKES.$"

gMoveDescription_SweetScent:: @ 8486579
	.string "Allures the foe to\nreduce evasiveness.\nIt also attracts\nwild POKéMON.$"

gMoveDescription_IronTail:: @ 84865BF
	.string "An attack with a\nsteel-hard tail.\nIt may lower the\nfoe's DEFENSE stat.$"

gMoveDescription_MetalClaw:: @ 8486606
	.string "The foe is attacked\nwith steel claws.\nIt may also raise\nthe user's ATTACK.$"

gMoveDescription_VitalThrow:: @ 8486651
	.string "Makes the user\nattack after the\nfoe. In return,\nit will not miss.$"

gMoveDescription_MorningSun:: @ 8486693
	.string "Restores the user's\nHP. The amount of\nHP regained varies\nwith the weather.$"

gMoveDescription_Synthesis:: @ 84866DE
	.string "Restores the user's\nHP. The amount of\nHP regained varies\nwith the weather.$"

gMoveDescription_Moonlight:: @ 8486729
	.string "Restores the user's\nHP. The amount of\nHP regained varies\nwith the weather.$"

gMoveDescription_HiddenPower:: @ 8486774
	.string "An attack that\nvaries in type and\nintensity depending\non the user.$"

gMoveDescription_CrossChop:: @ 84867B7
	.string "The foe is hit with\ndouble chops.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_Twister:: @ 84867FB
	.string "A vicious twister\nattacks the foe.\nIt may make the\nfoe flinch.$"

gMoveDescription_RainDance:: @ 848683A
	.string "A heavy rain falls\nfor five turns,\npowering up WATER-\ntype moves.$"

gMoveDescription_SunnyDay:: @ 848687C
	.string "The sun blazes for\nfive turns, powering\nup FIRE-type\nmoves.$"

gMoveDescription_Crunch:: @ 84868B8
	.string "The foe is crunched\nwith sharp fangs.\nIt may lower the\nfoe's SP. DEF.$"

gMoveDescription_MirrorCoat:: @ 84868FE
	.string "A retaliation move\nthat pays back the\nfoe's special attack\ndouble.$"

gMoveDescription_PsychUp:: @ 8486941
	.string "The user hypnotizes\nitself into copying\nany stat change\nmade by the foe.$"

gMoveDescription_ExtremeSpeed:: @ 848698A
	.string "A blindingly speedy\ncharge attack that\nalways goes before\nany other.$"

gMoveDescription_AncientPower:: @ 84869CF
	.string "An ancient power is\nused to attack. It\nmay also raise all\nthe user's stats.$"

gMoveDescription_ShadowBall:: @ 8486A1B
	.string "A shadowy blob is\nhurled at the foe.\nMay also lower the\nfoe's SP. DEF.$"

gMoveDescription_FutureSight:: @ 8486A62
	.string "Two turns after\nthis move is used,\nthe foe is attacked\npsychically.$"

gMoveDescription_RockSmash:: @ 8486AA6
	.string "An attack that may\nalso cut DEFENSE.\nIt can also smash\ncracked boulders.$"

gMoveDescription_Whirlpool:: @ 8486AEF
	.string "The foe is trapped\nin a fast, vicious\nwhirlpool for two\nto five turns.$"

gMoveDescription_BeatUp:: @ 8486B36
	.string "All party POKéMON\njoin in the attack.\nThe more allies,\nthe more damage.$"

gMoveDescription_FakeOut:: @ 8486B7E
	.string "An attack that hits\nfirst and causes\nflinching. Usable\nonly on 1st turn.$"

gMoveDescription_Uproar:: @ 8486BC7
	.string "The user attacks in\nan uproar that\nprevents sleep for\ntwo to five turns.$"

gMoveDescription_Stockpile:: @ 8486C10
	.string "The user charges\nup power for use\nlater. It can be\nused three times.$"

gMoveDescription_SpitUp:: @ 8486C55
	.string "The power built\nusing STOCKPILE is\nreleased at once\nfor attack.$"

gMoveDescription_Swallow:: @ 8486C95
	.string "The energy it built\nusing STOCKPILE is\nabsorbed to restore\nHP.$"

gMoveDescription_HeatWave:: @ 8486CD4
	.string "The user exhales a\nheated breath to\nattack. It may also\ninflict a burn.$"

gMoveDescription_Hail:: @ 8486D1C
	.string "A hailstorm lasting\nfive turns damages\nall POKéMON except\nthe ICE-type.$"

gMoveDescription_Torment:: @ 8486D64
	.string "It enrages the foe,\nmaking it incapable\nof using the same\nmove successively.$"

gMoveDescription_Flatter:: @ 8486DB1
	.string "Flattery is used to\nconfuse the foe,\nbut its SP. ATK\nalso rises.$"

gMoveDescription_WillOWisp:: @ 8486DF2
	.string "A sinister, bluish\nwhite flame is shot\nat the foe to\ninflict a burn.$"

gMoveDescription_Memento:: @ 8486E37
	.string "The user faints,\nbut sharply lowers\nthe foe's ATTACK\nand SP. ATK.$"

gMoveDescription_Facade:: @ 8486E79
	.string "An attack that is\nboosted if user is\nburned, poisoned,\nor paralyzed.$"

gMoveDescription_FocusPunch:: @ 8486EBE
	.string "An attack that is\nexecuted last.\nThe user flinches\nif hit beforehand.$"

gMoveDescription_SmellingSalt:: @ 8486F04
	.string "Doubly effective on\na paralyzed foe,\nbut it also cures\nthe foe's paralysis.$"

gMoveDescription_FollowMe:: @ 8486F50
	.string "The user draws\nattention to itself,\nmaking foes attack\nonly the user.$"

gMoveDescription_NaturePower:: @ 8486F96
	.string "An attack that\nchanges type\ndepending on the\nuser's location.$"

gMoveDescription_Charge:: @ 8486FD4
	.string "The user charges\npower to boost the\nELECTRIC move it\nuses next.$"

gMoveDescription_Taunt:: @ 8487014
	.string "The foe is taunted\ninto a rage that\nallows it to use\nonly attack moves.$"

gMoveDescription_HelpingHand:: @ 848705C
	.string "A move that boosts\nthe power of the\nally's attack in a\nbattle.$"

gMoveDescription_Trick:: @ 848709B
	.string "A move that tricks\nthe foe into\ntrading held items\nwith the user.$"

gMoveDescription_RolePlay:: @ 84870DD
	.string "The user mimics the\nfoe completely and\ncopies the foe's\nability.$"

gMoveDescription_Wish:: @ 848711E
	.string "A self-healing move\nthat restores half\nthe full HP on the\nnext turn.$"

gMoveDescription_Assist:: @ 8487163
	.string "The user randomly\npicks and uses a\nmove of an allied\nPOKéMON.$"

gMoveDescription_Ingrain:: @ 84871A1
	.string "The user lays roots\nthat restore HP on\nevery turn.\nIt can't switch out.$"

gMoveDescription_Superpower:: @ 84871E9
	.string "A powerful attack,\nbut it also lowers\nthe user's ATTACK\nand DEFENSE stats.$"

gMoveDescription_MagicCoat:: @ 8487234
	.string "Reflects back the\nfoe's LEECH SEED\nand any status-\ndamaging move.$"

gMoveDescription_Recycle:: @ 8487276
	.string "A move that\nrecycles a used\nitem for use once\nmore.$"

gMoveDescription_Revenge:: @ 84872AA
	.string "An attack move that\ngains in intensity if\nthe target has hurt\nthe user.$"

gMoveDescription_BrickBreak:: @ 84872F2
	.string "An attack that also\nbreaks any barrier\nlike LIGHT SCREEN\nand REFLECT.$"

gMoveDescription_Yawn:: @ 8487338
	.string "A huge yawn lulls\nthe foe into falling\nasleep on the next\nturn.$"

gMoveDescription_KnockOff:: @ 8487378
	.string "Knocks down the\nfoe's held item to\nprevent its use\nduring the battle.$"

gMoveDescription_Endeavor:: @ 84873BE
	.string "Gains power the\nfewer HP the user\nhas compared with\nthe foe.$"

gMoveDescription_Eruption:: @ 84873FB
	.string "The higher the\nuser's HP, the more\npowerful this\nattack becomes.$"

gMoveDescription_SkillSwap:: @ 848743C
	.string "The user employs\nits psychic power\nto swap abilities\nwith the foe.$"

gMoveDescription_Imprison:: @ 848747F
	.string "Prevents foes from\nusing any move\nthat is also known\nby the user.$"

gMoveDescription_Refresh:: @ 84874C1
	.string "A self-healing move\nthat cures the user\nof a poisoning,\nburn, or paralysis.$"

gMoveDescription_Grudge:: @ 848750D
	.string "If the user faints,\nthis move deletes\nthe PP of the move\nthat finished it.$"

gMoveDescription_Snatch:: @ 8487558
	.string "Steals the effects\nof the foe's\nhealing or status-\nchanging move.$"

gMoveDescription_SecretPower:: @ 848759A
	.string "An attack that may\nhave an additional\neffect that varies\nwith the terrain.$"

gMoveDescription_Dive:: @ 84875E5
	.string "The user dives\nunderwater on the\nfirst turn and\nstrikes next turn.$"

gMoveDescription_ArmThrust:: @ 8487628
	.string "A quick flurry of\nstraight-arm\npunches that hit\ntwo to five times.$"

gMoveDescription_Camouflage:: @ 848766B
	.string "Alters the user's\ntype depending on\nthe location's\nterrain.$"

gMoveDescription_TailGlow:: @ 84876A7
	.string "The user flashes a\nlight that sharply\nraises its SP. ATK\nstat.$"

gMoveDescription_LusterPurge:: @ 84876E6
	.string "A burst of light\ninjures the foe. It\nmay also lower the\nfoe's SP. DEF.$"

gMoveDescription_MistBall:: @ 848772D
	.string "A flurry of down\nhits the foe. It\nmay also lower the\nfoe's SP. ATK.$"

gMoveDescription_FeatherDance:: @ 8487771
	.string "The foe is covered\nwith a mass of down\nthat sharply cuts\nthe ATTACK stat.$"

gMoveDescription_TeeterDance:: @ 84877BB
	.string "A wobbly dance\nthat confuses all\nthe POKéMON in\nbattle.$"

gMoveDescription_BlazeKick:: @ 84877F3
	.string "A fiery kick with a\nhigh critical-hit\nratio. It may also\nburn the foe.$"

gMoveDescription_MudSport:: @ 848783A
	.string "Weakens ELECTRIC-\ntype attacks while\nthe user is in the\nbattle.$"

gMoveDescription_IceBall:: @ 848787A
	.string "A 5-turn rolling\nattack that becomes\nstronger each time\nit rolls.$"

gMoveDescription_NeedleArm:: @ 84878BC
	.string "An attack using\nthorny arms.\nIt may make the\nfoe flinch.$"

gMoveDescription_SlackOff:: @ 84878F5
	.string "The user slacks off\nand restores its HP\nby half its full\nHP.$"

gMoveDescription_HyperVoice:: @ 8487932
	.string "The user lets loose\na horribly loud\nshout with the\npower to damage.$"

gMoveDescription_PoisonFang:: @ 8487976
	.string "The foe is bitten\nwith toxic fangs.\nIt may also badly\npoison the foe.$"

gMoveDescription_CrushClaw:: @ 84879BC
	.string "The foe is attacked\nwith sharp claws.\nIt may also lower\nthe foe's DEFENSE.$"

gMoveDescription_BlastBurn:: @ 8487A07
	.string "The foe is hit with\na huge explosion.\nThe user can't move\non the next turn.$"

gMoveDescription_HydroCannon:: @ 8487A53
	.string "The foe is hit with\na watery cannon.\nThe user can't move\non the next turn.$"

gMoveDescription_MeteorMash:: @ 8487A9E
	.string "The foe is hit with\na hard, fast punch.\nIt may also raise\nthe user's ATTACK.$"

gMoveDescription_Astonish:: @ 8487AEB
	.string "An attack using a\nstartling shout.\nIt also may make\nthe foe flinch.$"

gMoveDescription_WeatherBall:: @ 8487B2F
	.string "An attack that\nvaries in power and\ntype depending on\nthe weather.$"

gMoveDescription_Aromatherapy:: @ 8487B71
	.string "A soothing scent is\nreleased to heal\nall status problems\nin the user's party.$"

gMoveDescription_FakeTears:: @ 8487BBF
	.string "The user feigns\ncrying to sharply\nlower the foe's\nSP. DEF stat.$"

gMoveDescription_AirCutter:: @ 8487BFF
	.string "The foe is hit with\nrazor-like wind.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_Overheat:: @ 8487C46
	.string "An intense attack\nthat also sharply\nreduces the user's\nSP. ATK stat.$"

gMoveDescription_OdorSleuth:: @ 8487C8B
	.string "Completely negates\nthe foe's efforts to\nheighten its ability\nto evade.$"

gMoveDescription_RockTomb:: @ 8487CD2
	.string "Boulders are hurled\nat the foe. It also\nlowers the foe's\nSPEED if it hits.$"

gMoveDescription_SilverWind:: @ 8487D1D
	.string "The foe is attacked\nwith a silver dust.\nIt may raise all\nthe user's stats.$"

gMoveDescription_MetalSound:: @ 8487D68
	.string "A horrible metallic\nscreech is used to\nsharply lower the\nfoe's SP. DEF.$"

gMoveDescription_GrassWhistle:: @ 8487DB0
	.string "A pleasant melody\nis played to lull\nthe foe into a deep\nsleep.$"

gMoveDescription_Tickle:: @ 8487DEF
	.string "The foe is made to\nlaugh, reducing its\nATTACK and DEFENSE\nstats.$"

gMoveDescription_CosmicPower:: @ 8487E30
	.string "The user absorbs a\nmystic power to\nraise its DEFENSE\nand SP. DEF.$"

gMoveDescription_WaterSpout:: @ 8487E72
	.string "The higher the\nuser's HP, the more\npowerful this\nattack becomes.$"

gMoveDescription_SignalBeam:: @ 8487EB3
	.string "The foe is hit with\na flashing beam\nthat may also\ncause confusion.$"

gMoveDescription_ShadowPunch:: @ 8487EF6
	.string "The user throws a\npunch from the\nshadows. It cannot\nbe evaded.$"

gMoveDescription_Extrasensory:: @ 8487F35
	.string "The user attacks\nwith an odd power\nthat may make the\nfoe flinch.$"

gMoveDescription_SkyUppercut:: @ 8487F76
	.string "The user attacks\nwith an uppercut\nthrown skywards\nwith force.$"

gMoveDescription_SandTomb:: @ 8487FB4
	.string "The foe is trapped\ninside a painful\nsandstorm for two\nto five turns.$"

gMoveDescription_SheerCold:: @ 8487FF9
	.string "The foe is attacked\nwith ultimate cold\nthat causes fainting\nif it hits.$"

gMoveDescription_MuddyWater:: @ 8488041
	.string "The user attacks\nwith muddy water.\nIt may also lower\nthe foe's accuracy.$"

gMoveDescription_BulletSeed:: @ 848808A
	.string "The user shoots\nseeds at the foe.\nTwo to five seeds\nare shot at once.$"

gMoveDescription_AerialAce:: @ 84880D0
	.string "An extremely fast\nattack against one\ntarget. It can't be\nevaded.$"

gMoveDescription_IcicleSpear:: @ 8488111
	.string "Sharp icicles are\nfired at the foe.\nIt strikes two to\nfive times.$"

gMoveDescription_IronDefense:: @ 8488153
	.string "The user hardens\nits body's surface\nto sharply raise its\nDEFENSE stat.$"

gMoveDescription_Block:: @ 848819A
	.string "The user blocks the\nfoe's way with arms\nspread wide to\nprevent escape.$"

gMoveDescription_Howl:: @ 84881E1
	.string "The user howls to\nraise its spirit and\nboost its ATTACK\nstat.$"

gMoveDescription_DragonClaw:: @ 848821F
	.string "Sharp, huge claws\nhook and slash the\nfoe quickly and\nwith great power.$"

gMoveDescription_FrenzyPlant:: @ 8488266
	.string "The foe is hit with\nan enormous branch.\nThe user can't move\non the next turn.$"

gMoveDescription_BulkUp:: @ 84882B4
	.string "The user bulks up\nits body to boost\nboth its ATTACK and\nDEFENSE stats.$"

gMoveDescription_Bounce:: @ 84882FB
	.string "The user bounces\non the foe on the\n2nd turn. It may\nparalyze the foe.$"

gMoveDescription_MudShot:: @ 8488341
	.string "The user attacks by\nhurling mud.\nIt also reduces the\nfoe's SPEED.$"

gMoveDescription_PoisonTail:: @ 8488383
	.string "An attack with a\nhigh critical-hit\nratio. It may also\npoison the foe.$"

gMoveDescription_Covet:: @ 84883C9
	.string "A cutely executed\nattack that also\nsteals the foe's\nhold item.$"

gMoveDescription_VoltTackle:: @ 8488408
	.string "The user throws an\nelectrified tackle.\nIt hurts the user\na little.$"

gMoveDescription_MagicalLeaf:: @ 848844B
	.string "The foe is attacked\nwith a strange leaf\nthat cannot be\nevaded.$"

gMoveDescription_WaterSport:: @ 848848A
	.string "Weakens FIRE-type\nattacks while the\nuser is in the\nbattle.$"

gMoveDescription_CalmMind:: @ 84884C5
	.string "The user focuses\nits mind to raise\nthe SP. ATK and\nSP. DEF stats.$"

gMoveDescription_LeafBlade:: @ 8488507
	.string "The foe is slashed\nwith a sharp leaf.\nIt has a high\ncritical-hit ratio.$"

gMoveDescription_DragonDance:: @ 848854F
	.string "A mystic, powerful\ndance that boosts\nthe user's ATTACK\nand SPEED stats.$"

gMoveDescription_RockBlast:: @ 8488597
	.string "The user hurls two\nto five hard rocks\nat the foe to\nattack.$"

gMoveDescription_ShockWave:: @ 84885D3
	.string "A rapid jolt of\nelectricity strikes\nthe foe. It can't\nbe evaded.$"

gMoveDescription_WaterPulse:: @ 8488614
	.string "An attack with a\npulsing blast of\nwater. It may also\nconfuse the foe.$"

gMoveDescription_DoomDesire:: @ 848865A
	.string "A move that attacks\nthe foe with a\nblast of light two\nturns after use.$"

gMoveDescription_PsychoBoost:: @ 84886A1
	.string "An intense attack\nthat also sharply\nreduces the user's\nSP. ATK stat.$"