-
Notifications
You must be signed in to change notification settings - Fork 847
/
Copy pathdescriptions.asm
1272 lines (1020 loc) · 23.9 KB
/
descriptions.asm
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
MoveDescriptions::
; entries correspond to move ids (see constants/move_constants.asm)
table_width 2
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
assert_table_length NUM_ATTACKS
dw MoveFCDescription
dw MoveFDDescription
dw MoveFEDescription
dw MoveFFDescription
dw Move00Description
assert_table_length $100
MoveFCDescription:
MoveFDDescription:
MoveFEDescription:
MoveFFDescription:
Move00Description:
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.@"