summaryrefslogtreecommitdiff
path: root/battle/moves/move_descriptions.asm
blob: df31fd38a18f72c11fc9fd577adc4989ba8c6dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
; MoveDescriptions: ; 2cb52
	dw PoundDescription
	dw KarateChopDescription
	dw DoubleslapDescription
	dw CometPunchDescription
	dw MegaPunchDescription
	dw PayDayDescription
	dw FirePunchDescription
	dw IcePunchDescription
	dw ThunderpunchDescription
	dw ScratchDescription
	dw VicegripDescription
	dw GuillotineDescription
	dw RazorWindDescription
	dw SwordsDanceDescription
	dw CutDescription
	dw GustDescription
	dw WingAttackDescription
	dw WhirlwindDescription
	dw FlyDescription
	dw BindDescription
	dw SlamDescription
	dw VineWhipDescription
	dw StompDescription
	dw DoubleKickDescription
	dw MegaKickDescription
	dw JumpKickDescription
	dw RollingKickDescription
	dw SandAttackDescription
	dw HeadbuttDescription
	dw HornAttackDescription
	dw FuryAttackDescription
	dw HornDrillDescription
	dw TackleDescription
	dw BodySlamDescription
	dw WrapDescription
	dw TakeDownDescription
	dw ThrashDescription
	dw DoubleEdgeDescription
	dw TailWhipDescription
	dw PoisonStingDescription
	dw TwineedleDescription
	dw PinMissileDescription
	dw LeerDescription
	dw BiteDescription
	dw GrowlDescription
	dw RoarDescription
	dw SingDescription
	dw SupersonicDescription
	dw SonicboomDescription
	dw DisableDescription
	dw AcidDescription
	dw EmberDescription
	dw FlamethrowerDescription
	dw MistDescription
	dw WaterGunDescription
	dw HydroPumpDescription
	dw SurfDescription
	dw IceBeamDescription
	dw BlizzardDescription
	dw PsybeamDescription
	dw BubblebeamDescription
	dw AuroraBeamDescription
	dw HyperBeamDescription
	dw PeckDescription
	dw DrillPeckDescription
	dw SubmissionDescription
	dw LowKickDescription
	dw CounterDescription
	dw SeismicTossDescription
	dw StrengthDescription
	dw AbsorbDescription
	dw MegaDrainDescription
	dw LeechSeedDescription
	dw GrowthDescription
	dw RazorLeafDescription
	dw SolarbeamDescription
	dw PoisonpowderDescription
	dw StunSporeDescription
	dw SleepPowderDescription
	dw PetalDanceDescription
	dw StringShotDescription
	dw DragonRageDescription
	dw FireSpinDescription
	dw ThundershockDescription
	dw ThunderboltDescription
	dw ThunderWaveDescription
	dw ThunderDescription
	dw RockThrowDescription
	dw EarthquakeDescription
	dw FissureDescription
	dw DigDescription
	dw ToxicDescription
	dw ConfusionDescription
	dw PsychicMDescription
	dw HypnosisDescription
	dw MeditateDescription
	dw AgilityDescription
	dw QuickAttackDescription
	dw RageDescription
	dw TeleportDescription
	dw NightShadeDescription
	dw MimicDescription
	dw ScreechDescription
	dw DoubleTeamDescription
	dw RecoverDescription
	dw HardenDescription
	dw MinimizeDescription
	dw SmokescreenDescription
	dw ConfuseRayDescription
	dw WithdrawDescription
	dw DefenseCurlDescription
	dw BarrierDescription
	dw LightScreenDescription
	dw HazeDescription
	dw ReflectDescription
	dw FocusEnergyDescription
	dw BideDescription
	dw MetronomeDescription
	dw MirrorMoveDescription
	dw SelfdestructDescription
	dw EggBombDescription
	dw LickDescription
	dw SmogDescription
	dw SludgeDescription
	dw BoneClubDescription
	dw FireBlastDescription
	dw WaterfallDescription
	dw ClampDescription
	dw SwiftDescription
	dw SkullBashDescription
	dw SpikeCannonDescription
	dw ConstrictDescription
	dw AmnesiaDescription
	dw KinesisDescription
	dw SoftboiledDescription
	dw HiJumpKickDescription
	dw GlareDescription
	dw DreamEaterDescription
	dw PoisonGasDescription
	dw BarrageDescription
	dw LeechLifeDescription
	dw LovelyKissDescription
	dw SkyAttackDescription
	dw TransformDescription
	dw BubbleDescription
	dw DizzyPunchDescription
	dw SporeDescription
	dw FlashDescription
	dw PsywaveDescription
	dw SplashDescription
	dw AcidArmorDescription
	dw CrabhammerDescription
	dw ExplosionDescription
	dw FurySwipesDescription
	dw BonemerangDescription
	dw RestDescription
	dw RockSlideDescription
	dw HyperFangDescription
	dw SharpenDescription
	dw ConversionDescription
	dw TriAttackDescription
	dw SuperFangDescription
	dw SlashDescription
	dw SubstituteDescription
	dw StruggleDescription
	dw SketchDescription
	dw TripleKickDescription
	dw ThiefDescription
	dw SpiderWebDescription
	dw MindReaderDescription
	dw NightmareDescription
	dw FlameWheelDescription
	dw SnoreDescription
	dw CurseDescription
	dw FlailDescription
	dw Conversion2Description
	dw AeroblastDescription
	dw CottonSporeDescription
	dw ReversalDescription
	dw SpiteDescription
	dw PowderSnowDescription
	dw ProtectDescription
	dw MachPunchDescription
	dw ScaryFaceDescription
	dw FaintAttackDescription
	dw SweetKissDescription
	dw BellyDrumDescription
	dw SludgeBombDescription
	dw MudSlapDescription
	dw OctazookaDescription
	dw SpikesDescription
	dw ZapCannonDescription
	dw ForesightDescription
	dw DestinyBondDescription
	dw PerishSongDescription
	dw IcyWindDescription
	dw DetectDescription
	dw BoneRushDescription
	dw LockOnDescription
	dw OutrageDescription
	dw SandstormDescription
	dw GigaDrainDescription
	dw EndureDescription
	dw CharmDescription
	dw RolloutDescription
	dw FalseSwipeDescription
	dw SwaggerDescription
	dw MilkDrinkDescription
	dw SparkDescription
	dw FuryCutterDescription
	dw SteelWingDescription
	dw MeanLookDescription
	dw AttractDescription
	dw SleepTalkDescription
	dw HealBellDescription
	dw ReturnDescription
	dw PresentDescription
	dw FrustrationDescription
	dw SafeguardDescription
	dw PainSplitDescription
	dw SacredFireDescription
	dw MagnitudeDescription
	dw DynamicpunchDescription
	dw MegahornDescription
	dw DragonbreathDescription
	dw BatonPassDescription
	dw EncoreDescription
	dw PursuitDescription
	dw RapidSpinDescription
	dw SweetScentDescription
	dw IronTailDescription
	dw MetalClawDescription
	dw VitalThrowDescription
	dw MorningSunDescription
	dw SynthesisDescription
	dw MoonlightDescription
	dw HiddenPowerDescription
	dw CrossChopDescription
	dw TwisterDescription
	dw RainDanceDescription
	dw SunnyDayDescription
	dw CrunchDescription
	dw MirrorCoatDescription
	dw PsychUpDescription
	dw ExtremespeedDescription
	dw AncientpowerDescription
	dw ShadowBallDescription
	dw FutureSightDescription
	dw RockSmashDescription
	dw WhirlpoolDescription
	dw BeatUpDescription
	dw MoveFCDescription
	dw MoveFDDescription
	dw MoveFEDescription
	dw MoveFFDescription
	dw Move00Description
; 2cd52

MoveFCDescription:
MoveFDDescription:
MoveFEDescription:
MoveFFDescription:
Move00Description:
UnknownMoveDescription:
	db "?@"

PoundDescription:
	db   "Pounds with fore-"
	next "legs or tail.@"

KarateChopDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

DoubleslapDescription:
	db   "Repeatedly slaps"
	next "2-5 times.@"

CometPunchDescription:
	db   "Repeatedly punches"
	next "2-5 times.@"

MegaPunchDescription:
	db   "A powerful punch"
	next "thrown very hard.@"

PayDayDescription:
	db   "Throws coins. Gets"
	next "them back later.@"

FirePunchDescription:
	db   "A fiery punch. May"
	next "cause a burn.@"

IcePunchDescription:
	db   "An icy punch. May"
	next "cause freezing.@"

ThunderpunchDescription:
	db   "An electric punch."
	next "It may paralyze.@"

ScratchDescription:
	db   "Scratches with"
	next "sharp claws.@"

VicegripDescription:
	db   "Grips with power-"
	next "ful pincers.@"

GuillotineDescription:
	db   "A one-hit KO,"
	next "pincer attack.@"

RazorWindDescription:
	db   "1st turn: Prepare"
	next "2nd turn: Attack@"

SwordsDanceDescription:
	db   "A dance that in-"
	next "creases ATTACK.@"

CutDescription:
	db   "Cuts using claws,"
	next "scythes, etc.@"

GustDescription:
	db   "Whips up a strong"
	next "gust of wind.@"

WingAttackDescription:
	db   "Strikes the target"
	next "with wings.@"

WhirlwindDescription:
	db   "Blows away the foe"
	next "& ends battle.@"

FlyDescription:
	db   "1st turn: Fly"
	next "2nd turn: Attack@"

BindDescription:
	db   "Binds the target"
	next "for 2-5 turns.@"

SlamDescription:
	db   "Slams the foe with"
	next "a tail, vine, etc.@"

VineWhipDescription:
	db   "Whips the foe with"
	next "slender vines.@"

StompDescription:
	db   "An attack that may"
	next "cause flinching.@"

DoubleKickDescription:
	db   "A double kicking"
	next "attack.@"

MegaKickDescription:
	db   "A powerful kicking"
	next "attack.@"

JumpKickDescription:
	db   "May miss, damaging"
	next "the user.@"

RollingKickDescription:
	db   "A fast, spinning"
	next "kick.@"

SandAttackDescription:
	db   "Reduces accuracy"
	next "by throwing sand.@"

HeadbuttDescription:
	db   "An attack that may"
	next "make foe flinch.@"

HornAttackDescription:
	db   "An attack using a"
	next "horn to jab.@"

FuryAttackDescription:
	db   "Jabs the target"
	next "2-5 times.@"

HornDrillDescription:
	db   "A one-hit KO,"
	next "drill attack.@"

TackleDescription:
	db   "A full-body charge"
	next "attack.@"

BodySlamDescription:
	db   "An attack that may"
	next "cause paralysis.@"

WrapDescription:
	db   "Squeezes the foe"
	next "for 2-5 turns.@"

TakeDownDescription:
	db   "A tackle that also"
	next "hurts the user.@"

ThrashDescription:
	db   "Works 2-3 turns"
	next "and confuses user.@"

DoubleEdgeDescription:
	db   "A tackle that also"
	next "hurts the user.@"

TailWhipDescription:
	db   "Lowers the foe's"
	next "DEFENSE.@"

PoisonStingDescription:
	db   "An attack that may"
	next "poison the target.@"

TwineedleDescription:
	db   "Jabs the foe twice"
	next "using stingers.@"

PinMissileDescription:
	db   "Fires pins that"
	next "strike 2-5 times.@"

LeerDescription:
	db   "Reduces the foe's"
	next "DEFENSE.@"

BiteDescription:
	db   "An attack that may"
	next "cause flinching.@"

GrowlDescription:
	db   "Reduces the foe's"
	next "ATTACK.@"

RoarDescription:
	db   "Scares wild foes"
	next "to end battle.@"

SingDescription:
	db   "May cause the foe"
	next "to fall asleep.@"

SupersonicDescription:
	db   "Sound waves that"
	next "cause confusion.@"

SonicboomDescription:
	db   "Always inflicts"
	next "20HP damage.@"

DisableDescription:
	db   "Disables the foe's"
	next "most recent move.@"

AcidDescription:
	db   "An attack that may"
	next "lower DEFENSE.@"

EmberDescription:
	db   "An attack that may"
	next "inflict a burn.@"

FlamethrowerDescription:
	db   "An attack that may"
	next "inflict a burn.@"

MistDescription:
	db   "Prevents stat"
	next "reduction.@"

WaterGunDescription:
	db   "Squirts water to"
	next "attack.@"

HydroPumpDescription:
	db   "A powerful water-"
	next "type attack.@"

SurfDescription:
	db   "A strong water-"
	next "type attack.@"

IceBeamDescription:
	db   "An attack that may"
	next "freeze the foe.@"

BlizzardDescription:
	db   "An attack that may"
	next "freeze the foe.@"

PsybeamDescription:
	db   "An attack that may"
	next "confuse the foe.@"

BubblebeamDescription:
	db   "An attack that may"
	next "lower SPEED.@"

AuroraBeamDescription:
	db   "An attack that may"
	next "lower ATTACK.@"

HyperBeamDescription:
	db   "1st turn: Attack"
	next "2nd turn: Rest@"

PeckDescription:
	db   "Jabs the foe with"
	next "a beak, etc.@"

DrillPeckDescription:
	db   "A strong, spin-"
	next "ning-peck attack.@"

SubmissionDescription:
	db   "An attack that al-"
	next "so hurts the user.@"

LowKickDescription:
	db   "An attack that may"
	next "cause flinching.@"

CounterDescription:
	db   "Returns a physical"
	next "blow double.@"

SeismicTossDescription:
	db   "The user's level"
	next "equals damage HP.@"

StrengthDescription:
	db   "A powerful physi-"
	next "cal attack.@"

AbsorbDescription:
	db   "Steals 1/2 of the"
	next "damage inflicted.@"

MegaDrainDescription:
	db   "Steals 1/2 of the"
	next "damage inflicted.@"

LeechSeedDescription:
	db   "Steals HP from the"
	next "foe on every turn.@"

GrowthDescription:
	db   "Raises the SPCL."
	next "ATK rating.@"

RazorLeafDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

SolarbeamDescription:
	db   "1st turn: Prepare"
	next "2nd turn: Attack@"

PoisonpowderDescription:
	db   "A move that may"
	next "poison the foe.@"

StunSporeDescription:
	db   "A move that may"
	next "paralyze the foe.@"

SleepPowderDescription:
	db   "May cause the foe"
	next "to fall asleep.@"

PetalDanceDescription:
	db   "Works 2-3 turns"
	next "and confuses user.@"

StringShotDescription:
	db   "A move that lowers"
	next "the foe's SPEED.@"

DragonRageDescription:
	db   "Always inflicts"
	next "40HP damage.@"

FireSpinDescription:
	db   "Traps foe in fire"
	next "for 2-5 turns.@"

ThundershockDescription:
	db   "An attack that may"
	next "cause paralysis.@"

ThunderboltDescription:
	db   "An attack that may"
	next "cause paralysis.@"

ThunderWaveDescription:
	db   "A move that may"
	next "cause paralysis.@"

ThunderDescription:
	db   "An attack that may"
	next "cause paralysis.@"

RockThrowDescription:
	db   "Drops rocks on the"
	next "enemy.@"

EarthquakeDescription:
	db   "Tough but useless"
	next "vs. flying foes.@"

FissureDescription:
	db   "A ground-type,"
	next "one-hit KO attack.@"

DigDescription:
	db   "1st turn: Burrow"
	next "2nd turn: Attack@"

ToxicDescription:
	db   "A poison move with"
	next "increasing damage.@"

ConfusionDescription:
	db   "An attack that may"
	next "cause confusion.@"

PsychicMDescription:
	db   "An attack that may"
	next "lower SPCL.DEF.@"

HypnosisDescription:
	db   "May put the foe to"
	next "sleep.@"

MeditateDescription:
	db   "Raises the user's"
	next "ATTACK.@"

AgilityDescription:
	db   "Sharply increases"
	next "the user's SPEED.@"

QuickAttackDescription:
	db   "Lets the user get"
	next "in the first hit.@"

RageDescription:
	db   "Raises ATTACK if"
	next "the user is hit.@"

TeleportDescription:
	db   "A move for fleeing"
	next "from battle.@"

NightShadeDescription:
	db   "The user's level"
	next "equals damage HP.@"

MimicDescription:
	db   "Copies a move used"
	next "by the foe.@"

ScreechDescription:
	db   "Sharply reduces"
	next "the foe's DEFENSE.@"

DoubleTeamDescription:
	db   "Heightens evasive-"
	next "ness.@"

RecoverDescription:
	db   "Restores HP by 1/2"
	next "the max HP.@"

HardenDescription:
	db   "Raises the user's"
	next "DEFENSE.@"

MinimizeDescription:
	db   "Heightens evasive-"
	next "ness.@"

SmokescreenDescription:
	db   "Lowers the foe's"
	next "accuracy.@"

ConfuseRayDescription:
	db   "A move that causes"
	next "confusion.@"

WithdrawDescription:
	db   "Heightens the"
	next "user's DEFENSE.@"

DefenseCurlDescription:
	db   "Heightens the"
	next "user's DEFENSE.@"

BarrierDescription:
	db   "Sharply increases"
	next "user's DEFENSE.@"

LightScreenDescription:
	db   "Ups SPCL.DEF with"
	next "a wall of light.@"

HazeDescription:
	db   "Eliminates all"
	next "stat changes.@"

ReflectDescription:
	db   "Raises DEFENSE"
	next "with a barrier.@"

FocusEnergyDescription:
	db   "Raises the criti-"
	next "cal hit ratio.@"

BideDescription:
	db   "Waits 2-3 turns &"
	next "hits back double.@"

MetronomeDescription:
	db   "Randomly uses any"
	next "#MON move.@"

MirrorMoveDescription:
	db   "Counters with the"
	next "same move.@"

SelfdestructDescription:
	db   "Powerful but makes"
	next "the user faint.@"

EggBombDescription:
	db   "Eggs are hurled at"
	next "the foe.@"

LickDescription:
	db   "An attack that may"
	next "cause paralysis.@"

SmogDescription:
	db   "An attack that may"
	next "poison the foe.@"

SludgeDescription:
	db   "An attack that may"
	next "poison the foe.@"

BoneClubDescription:
	db   "An attack that may"
	next "cause flinching.@"

FireBlastDescription:
	db   "An attack that"
	next "may cause a burn.@"

WaterfallDescription:
	db   "An aquatic charge"
	next "attack.@"

ClampDescription:
	db   "Traps the foe for"
	next "2-5 turns.@"

SwiftDescription:
	db   "An attack that"
	next "never misses.@"

SkullBashDescription:
	db   "1st turn: Prepare"
	next "2nd turn: Attack@"

SpikeCannonDescription:
	db   "Fires spikes to"
	next "hit 2-5 times.@"

ConstrictDescription:
	db   "An attack that may"
	next "lower SPEED.@"

AmnesiaDescription:
	db   "Sharply raises the"
	next "user's SPCL.DEF.@"

KinesisDescription:
	db   "Reduces the foe's"
	next "accuracy.@"

SoftboiledDescription:
	db   "Restores HP by 1/2"
	next "the user's max HP.@"

HiJumpKickDescription:
	db   "May miss and hurt"
	next "the user.@"

GlareDescription:
	db   "A move that may"
	next "cause paralysis.@"

DreamEaterDescription:
	db   "Steals HP from a"
	next "sleeping victim.@"

PoisonGasDescription:
	db   "A move that may"
	next "poison the foe.@"

BarrageDescription:
	db   "Throws orbs to hit"
	next "2-5 times.@"

LeechLifeDescription:
	db   "Steals 1/2 of the"
	next "damage inflicted.@"

LovelyKissDescription:
	db   "May cause the foe"
	next "to fall asleep.@"

SkyAttackDescription:
	db   "1st turn: Prepare"
	next "2nd turn: Attack@"
TransformDescription:
	db   "The user assumes"
	next "the foe's guise.@"

BubbleDescription:
	db   "An attack that may"
	next "reduce SPEED.@"

DizzyPunchDescription:
	db   "An attack that may"
	next "cause confusion.@"

SporeDescription:
	db   "A move that"
	next "induces sleep.@"

FlashDescription:
	db   "Blinds the foe to"
	next "reduce accuracy.@"

PsywaveDescription:
	db   "An attack with"
	next "variable power.@"

SplashDescription:
	db   "Has no effect"
	next "whatsoever.@"

AcidArmorDescription:
	db   "Sharply raises the"
	next "user's DEFENSE.@"

CrabhammerDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

ExplosionDescription:
	db   "Very powerful but"
	next "makes user faint.@"

FurySwipesDescription:
	db   "Quickly scratches"
	next "2-5 times.@"

BonemerangDescription:
	db   "An attack that"
	next "strikes twice.@"

RestDescription:
	db   "Sleep for 2 turns"
	next "to fully recover.@"

RockSlideDescription:
	db   "An attack that may"
	next "cause flinching.@"

HyperFangDescription:
	db   "An attack that may"
	next "cause flinching.@"

SharpenDescription:
	db   "A move that raises"
	next "the user's ATTACK.@"

ConversionDescription:
	db   "Change user's type"
	next "to a move's type.@"

TriAttackDescription:
	db   "Fires three kinds"
	next "of beams at once.@"

SuperFangDescription:
	db   "Cuts the foe's HP"
	next "by 1/2.@"

SlashDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

SubstituteDescription:
	db   "Makes a decoy with"
	next "1/4 user's max HP.@"

StruggleDescription:
	db   "Used only if all"
	next "PP are exhausted.@"

SketchDescription:
	db   "Copies the foe's"
	next "move permanently.@"

TripleKickDescription:
	db   "Hits three times"
	next "with rising power.@"

ThiefDescription:
	db   "An attack that may"
	next "steal a held item.@"

SpiderWebDescription:
	db   "Prevents fleeing"
	next "or switching.@"

MindReaderDescription:
	db   "Ensures the next"
	next "attack will hit.@"

NightmareDescription:
	db   "A sleeper loses"
	next "1/4 HP every turn.@"

FlameWheelDescription:
	db   "An attack that may"
	next "cause a burn.@"

SnoreDescription:
	db   "An attack useable"
	next "only while asleep.@"

CurseDescription:
	db   "Works differently"
	next "for ghost-types.@"

FlailDescription:
	db   "Stronger if the"
	next "user's HP is low.@"

Conversion2Description:
	db   "The user's type is"
	next "made resistant.@"

AeroblastDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

CottonSporeDescription:
	db   "Sharply reduces"
	next "the foe's SPEED.@"

ReversalDescription:
	db   "Stronger if the"
	next "user's HP is low.@"

SpiteDescription:
	db   "Cuts the PP of the"
	next "foe's last move.@"

PowderSnowDescription:
	db   "An attack that may"
	next "cause freezing.@"

ProtectDescription:
	db   "Foils attack that"
	next "turn. It may fail.@"

MachPunchDescription:
	db   "A fast punch that"
	next "lands first.@"

ScaryFaceDescription:
	db   "Sharply reduces"
	next "the foe's SPEED.@"

FaintAttackDescription:
	db   "An attack that"
	next "never misses.@"

SweetKissDescription:
	db   "A move that causes"
	next "confusion.@"

BellyDrumDescription:
	db   "Reduces own HP to"
	next "maximize ATTACK.@"

SludgeBombDescription:
	db   "An attack that may"
	next "poison the foe.@"

MudSlapDescription:
	db   "Reduces the foe's"
	next "accuracy.@"

OctazookaDescription:
	db   "An attack that may"
	next "reduce accuracy.@"

SpikesDescription:
	db   "Hurts foes when"
	next "they switch out.@"

ZapCannonDescription:
	db   "An attack that"
	next "always paralyzes.@"

ForesightDescription:
	db   "Negates accuracy"
	next "reduction moves.@"

DestinyBondDescription:
	db   "The foe faints if"
	next "the user does.@"

PerishSongDescription:
	db   "Both user and foe"
	next "faint in 3 turns.@"

IcyWindDescription:
	db   "An icy attack that"
	next "lowers SPEED.@"

DetectDescription:
	db   "Evades attack that"
	next "turn. It may fail.@"

BoneRushDescription:
	db   "An attack that"
	next "hits 2-5 times.@"

LockOnDescription:
	db   "Ensures the next"
	next "attack will hit.@"

OutrageDescription:
	db   "Works 2-3 turns"
	next "and confuses user.@"

SandstormDescription:
	db   "Inflicts damage"
	next "every turn.@"

GigaDrainDescription:
	db   "Steals 1/2 of the"
	next "damage inflicted.@"

EndureDescription:
	db   "Always leaves at"
	next "least 1HP.@"

CharmDescription:
	db   "Sharply lowers the"
	next "foe's ATTACK.@"

RolloutDescription:
	db   "Attacks 5 turns"
	next "with rising power.@"

FalseSwipeDescription:
	db   "Leaves the foe"
	next "with at least 1HP.@"

SwaggerDescription:
	db   "Causes confusion"
	next "and raises ATTACK.@"

MilkDrinkDescription:
	db   "Restores HP by 1/2"
	next "the max HP.@"

SparkDescription:
	db   "An attack that may"
	next "cause paralysis.@"

FuryCutterDescription:
	db   "Successive hits"
	next "raise power.@"

SteelWingDescription:
	db   "Stiff wings strike"
	next "the foe.@"

MeanLookDescription:
	db   "Prevents fleeing"
	next "or switching.@"

AttractDescription:
	db   "Makes the opposite"
	next "gender infatuated.@"

SleepTalkDescription:
	db   "Randomly attacks"
	next "while asleep.@"

HealBellDescription:
	db   "Eliminates all"
	next "status problems.@"

ReturnDescription:
	db   "An attack that is"
	next "based on loyalty.@"

PresentDescription:
	db   "A bomb that may"
	next "restore HP.@"

FrustrationDescription:
	db   "An attack based on"
	next "lack of loyalty.@"

SafeguardDescription:
	db   "Prevents all"
	next "status problems.@"

PainSplitDescription:
	db   "Adds user & foe's"
	next "HPs. Shares total.@"

SacredFireDescription:
	db   "An attack that may"
	next "inflict a burn.@"

MagnitudeDescription:
	db   "A ground attack"
	next "with random power.@"

DynamicpunchDescription:
	db   "An attack that"
	next "always confuses.@"

MegahornDescription:
	db   "A powerful charge"
	next "attack.@"

DragonbreathDescription:
	db   "A strong breath"
	next "attack.@"

BatonPassDescription:
	db   "Switches while"
	next "keeping effects.@"

EncoreDescription:
	db   "Makes the foe re-"
	next "peat 2-6 times.@"

PursuitDescription:
	db   "Heavily strikes"
	next "switching #MON.@"

RapidSpinDescription:
	db   "A high-speed"
	next "spinning attack.@"

SweetScentDescription:
	db   "Reduces the foe's"
	next "evasiveness.@"

IronTailDescription:
	db   "An attack that may"
	next "reduce DEFENSE.@"

MetalClawDescription:
	db   "An attack that may"
	next "up user's ATTACK.@"

VitalThrowDescription:
	db   "A 2nd-strike move"
	next "that never misses.@"

MorningSunDescription:
	db   "Restores HP"
	next "(varies by time).@"

SynthesisDescription:
	db   "Restores HP"
	next "(varies by time).@"

MoonlightDescription:
	db   "Restores HP"
	next "(varies by time).@"

HiddenPowerDescription:
	db   "The power varies"
	next "with the #MON.@"

CrossChopDescription:
	db   "Has a high criti-"
	next "cal hit ratio.@"

TwisterDescription:
	db   "Whips up a tornado"
	next "to attack.@"

RainDanceDescription:
	db   "Boosts water-type"
	next "moves for 5 turns.@"

SunnyDayDescription:
	db   "Boosts fire-type"
	next "moves for 5 turns.@"

CrunchDescription:
	db   "An attack that may"
	next "lower SPCL.DEF.@"

MirrorCoatDescription:
	db   "Counters a SPCL."
	next "ATK move double.@"

PsychUpDescription:
	db   "Copies the foe's"
	next "stat changes.@"

ExtremespeedDescription:
	db   "A powerful first-"
	next "strike move.@"

AncientpowerDescription:
	db   "An attack that may"
	next "raise all stats.@"

ShadowBallDescription:
	db   "An attack that may"
	next "lower SPCL.DEF.@"

FutureSightDescription:
	db   "An attack that"
	next "hits on 3rd turn.@"

RockSmashDescription:
	db   "An attack that may"
	next "lower DEFENSE.@"

WhirlpoolDescription:
	db   "Traps the foe for"
	next "2-5 turns.@"

BeatUpDescription:
	db   "Party #MON join"
	next "in the attack.@"
; 2ed44