-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
item_descriptions.h
1551 lines (1241 loc) · 33.9 KB
/
item_descriptions.h
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
static const u8 sDummyDesc[] = _(
"?????");
// Pokeballs
static const u8 sMasterBallDesc[] = _(
"The best BALL that\n"
"catches a POKéMON\n"
"without fail.");
static const u8 sUltraBallDesc[] = _(
"A better BALL with\n"
"a higher catch rate\n"
"than a GREAT BALL.");
static const u8 sGreatBallDesc[] = _(
"A good BALL with a\n"
"higher catch rate\n"
"than a POKé BALL.");
static const u8 sPokeBallDesc[] = _(
"A tool used for\n"
"catching wild\n"
"POKéMON.");
static const u8 sSafariBallDesc[] = _(
"A special BALL that\n"
"is used only in the\n"
"SAFARI ZONE.");
static const u8 sNetBallDesc[] = _(
"A BALL that works\n"
"well on WATER- and\n"
"BUG-type POKéMON.");
static const u8 sDiveBallDesc[] = _(
"A BALL that works\n"
"better on POKéMON\n"
"on the ocean floor.");
static const u8 sNestBallDesc[] = _(
"A BALL that works\n"
"better on weaker\n"
"POKéMON.");
static const u8 sRepeatBallDesc[] = _(
"A BALL that works\n"
"better on POKéMON\n"
"caught before.");
static const u8 sTimerBallDesc[] = _(
"A BALL that gains\n"
"power in battles\n"
"taking many turns.");
static const u8 sLuxuryBallDesc[] = _(
"A cozy BALL that\n"
"makes POKéMON\n"
"more friendly.");
static const u8 sPremierBallDesc[] = _(
"A rare BALL made\n"
"in commemoration\n"
"of some event.");
// Medicine
static const u8 sPotionDesc[] = _(
"Restores the HP of\n"
"a POKéMON by\n"
"20 points.");
static const u8 sAntidoteDesc[] = _(
"Heals a poisoned\n"
"POKéMON.");
static const u8 sBurnHealDesc[] = _(
"Heals POKéMON\n"
"of a burn.");
static const u8 sIceHealDesc[] = _(
"Defrosts a frozen\n"
"POKéMON.");
static const u8 sAwakeningDesc[] = _(
"Awakens a sleeping\n"
"POKéMON.");
static const u8 sParalyzeHealDesc[] = _(
"Heals a paralyzed\n"
"POKéMON.");
static const u8 sFullRestoreDesc[] = _(
"Fully restores the\n"
"HP and status of a\n"
"POKéMON.");
static const u8 sMaxPotionDesc[] = _(
"Fully restores the\n"
"HP of a POKéMON.");
static const u8 sHyperPotionDesc[] = _(
"Restores the HP of\n"
"a POKéMON by\n"
"200 points.");
static const u8 sSuperPotionDesc[] = _(
"Restores the HP of\n"
"a POKéMON by\n"
"50 points.");
static const u8 sFullHealDesc[] = _(
"Heals all the\n"
"status problems of\n"
"one POKéMON.");
static const u8 sReviveDesc[] = _(
"Revives a fainted\n"
"POKéMON with half\n"
"its HP.");
static const u8 sMaxReviveDesc[] = _(
"Revives a fainted\n"
"POKéMON with all\n"
"its HP.");
static const u8 sFreshWaterDesc[] = _(
"A mineral water\n"
"that restores HP\n"
"by 50 points.");
static const u8 sSodaPopDesc[] = _(
"A fizzy soda drink\n"
"that restores HP\n"
"by 60 points.");
static const u8 sLemonadeDesc[] = _(
"A very sweet drink\n"
"that restores HP\n"
"by 80 points.");
static const u8 sMoomooMilkDesc[] = _(
"A nutritious milk\n"
"that restores HP\n"
"by 100 points.");
static const u8 sEnergyPowderDesc[] = _(
"A bitter powder\n"
"that restores HP\n"
"by 50 points.");
static const u8 sEnergyRootDesc[] = _(
"A bitter root\n"
"that restores HP\n"
"by 200 points.");
static const u8 sHealPowderDesc[] = _(
"A bitter powder\n"
"that heals all\n"
"status problems.");
static const u8 sRevivalHerbDesc[] = _(
"A very bitter herb\n"
"that revives a\n"
"fainted POKéMON.");
static const u8 sEtherDesc[] = _(
"Restores the PP\n"
"of a selected move\n"
"by 10.");
static const u8 sMaxEtherDesc[] = _(
"Fully restores the\n"
"PP of a selected\n"
"move.");
static const u8 sElixirDesc[] = _(
"Restores the PP\n"
"of all moves by 10.");
static const u8 sMaxElixirDesc[] = _(
"Fully restores the\n"
"PP of a POKéMON's\n"
"moves.");
static const u8 sLavaCookieDesc[] = _(
"A local specialty\n"
"that heals all\n"
"status problems.");
static const u8 sBlueFluteDesc[] = _(
"A glass flute that\n"
"awakens sleeping\n"
"POKéMON.");
static const u8 sYellowFluteDesc[] = _(
"A glass flute that\n"
"snaps POKéMON\n"
"out of confusion.");
static const u8 sRedFluteDesc[] = _(
"A glass flute that\n"
"snaps POKéMON\n"
"out of attraction.");
static const u8 sBlackFluteDesc[] = _(
"A glass flute that\n"
"keeps away wild\n"
"POKéMON.");
static const u8 sWhiteFluteDesc[] = _(
"A glass flute that\n"
"lures wild POKéMON.");
static const u8 sBerryJuiceDesc[] = _(
"A 100% pure juice\n"
"that restores HP\n"
"by 20 points.");
static const u8 sSacredAshDesc[] = _(
"Fully revives and\n"
"restores all\n"
"fainted POKéMON.");
// Collectibles
static const u8 sShoalSaltDesc[] = _(
"Salt obtained from\n"
"deep inside the\n"
"SHOAL CAVE.");
static const u8 sShoalShellDesc[] = _(
"A seashell found\n"
"deep inside the\n"
"SHOAL CAVE.");
static const u8 sRedShardDesc[] = _(
"A shard from an\n"
"ancient item. Can\n"
"be sold cheaply.");
static const u8 sBlueShardDesc[] = _(
"A shard from an\n"
"ancient item. Can\n"
"be sold cheaply.");
static const u8 sYellowShardDesc[] = _(
"A shard from an\n"
"ancient item. Can\n"
"be sold cheaply.");
static const u8 sGreenShardDesc[] = _(
"A shard from an\n"
"ancient item. Can\n"
"be sold cheaply.");
// Vitamins
static const u8 sHPUpDesc[] = _(
"Raises the base HP\n"
"of one POKéMON.");
static const u8 sProteinDesc[] = _(
"Raises the base\n"
"ATTACK stat of one\n"
"POKéMON.");
static const u8 sIronDesc[] = _(
"Raises the base\n"
"DEFENSE stat of\n"
"one POKéMON.");
static const u8 sCarbosDesc[] = _(
"Raises the base\n"
"SPEED stat of one\n"
"POKéMON.");
static const u8 sCalciumDesc[] = _(
"Raises the base\n"
"SP. ATK stat of one\n"
"POKéMON.");
static const u8 sRareCandyDesc[] = _(
"Raises the level\n"
"of a POKéMON by\n"
"one.");
static const u8 sPPUpDesc[] = _(
"Raises the maximum\n"
"PP of a selected\n"
"move.");
static const u8 sZincDesc[] = _(
"Raises the base\n"
"SP. DEF stat of one\n"
"POKéMON.");
static const u8 sPPMaxDesc[] = _(
"Raises the PP of a\n"
"move to its maximum\n"
"points.");
// Battle items
static const u8 sGuardSpecDesc[] = _(
"Prevents stat\n"
"reduction when\n"
"used in battle.");
static const u8 sDireHitDesc[] = _(
"Raises the\n"
"critical-hit ratio\n"
"during one battle.");
static const u8 sXAttackDesc[] = _(
"Raises the stat\n"
"ATTACK during one\n"
"battle.");
static const u8 sXDefendDesc[] = _(
"Raises the stat\n"
"DEFENSE during one\n"
"battle.");
static const u8 sXSpeedDesc[] = _(
"Raises the stat\n"
"SPEED during one\n"
"battle.");
static const u8 sXAccuracyDesc[] = _(
"Raises accuracy\n"
"of attack moves\n"
"during one battle.");
static const u8 sXSpecialDesc[] = _(
"Raises the stat\n"
"SP. ATK during one\n"
"battle.");
static const u8 sPokeDollDesc[] = _(
"Use to flee from\n"
"any battle with\n"
"a wild POKéMON.");
static const u8 sFluffyTailDesc[] = _(
"Use to flee from\n"
"any battle with\n"
"a wild POKéMON.");
// Field items
static const u8 sSuperRepelDesc[] = _(
"Repels weak wild\n"
"POKéMON for 200\n"
"steps.");
static const u8 sMaxRepelDesc[] = _(
"Repels weak wild\n"
"POKéMON for 250\n"
"steps.");
static const u8 sEscapeRopeDesc[] = _(
"Use to escape\n"
"instantly from a\n"
"cave or a dungeon.");
static const u8 sRepelDesc[] = _(
"Repels weak wild\n"
"POKéMON for 100\n"
"steps.");
// Evolution stones
static const u8 sSunStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
static const u8 sMoonStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
static const u8 sFireStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
static const u8 sThunderStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
static const u8 sWaterStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
static const u8 sLeafStoneDesc[] = _(
"Makes certain\n"
"species of POKéMON\n"
"evolve.");
// Valuable items
static const u8 sTinyMushroomDesc[] = _(
"A plain mushroom\n"
"that would sell\n"
"at a cheap price.");
static const u8 sBigMushroomDesc[] = _(
"A rare mushroom\n"
"that would sell at a\n"
"high price.");
static const u8 sPearlDesc[] = _(
"A pretty pearl\n"
"that would sell at a\n"
"cheap price.");
static const u8 sBigPearlDesc[] = _(
"A lovely large pearl\n"
"that would sell at a\n"
"high price.");
static const u8 sStardustDesc[] = _(
"Beautiful red sand.\n"
"Can be sold at a\n"
"high price.");
static const u8 sStarPieceDesc[] = _(
"A red gem shard.\n"
"It would sell for a\n"
"very high price.");
static const u8 sNuggetDesc[] = _(
"A nugget of pure\n"
"gold. Can be sold at\n"
"a high price.");
static const u8 sHeartScaleDesc[] = _(
"A lovely scale.\n"
"It is coveted by\n"
"collectors.");
// Mail
static const u8 sOrangeMailDesc[] = _(
"A ZIGZAGOON-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sHarborMailDesc[] = _(
"A WINGULL-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sGlitterMailDesc[] = _(
"A PIKACHU-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sMechMailDesc[] = _(
"A MAGNEMITE-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sWoodMailDesc[] = _(
"A SLAKOTH-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sWaveMailDesc[] = _(
"A WAILMER-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sBeadMailDesc[] = _(
"MAIL featuring a\n"
"sketch of the\n"
"holding POKéMON.");
static const u8 sShadowMailDesc[] = _(
"A DUSKULL-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sTropicMailDesc[] = _(
"A BELLOSSOM-print\n"
"MAIL to be held by\n"
"a POKéMON.");
static const u8 sDreamMailDesc[] = _(
"MAIL featuring a\n"
"sketch of the\n"
"holding POKéMON.");
static const u8 sFabMailDesc[] = _(
"A gorgeous-print\n"
"MAIL to be held\n"
"by a POKéMON.");
static const u8 sRetroMailDesc[] = _(
"MAIL featuring the\n"
"drawings of three\n"
"POKéMON.");
// Berries
static const u8 sCheriBerryDesc[] = _(
"A hold item that\n"
"heals paralysis\n"
"in battle.");
static const u8 sChestoBerryDesc[] = _(
"A hold item that\n"
"awakens POKéMON\n"
"in battle.");
static const u8 sPechaBerryDesc[] = _(
"A hold item that\n"
"heals poisoning\n"
"in battle.");
static const u8 sRawstBerryDesc[] = _(
"A hold item that\n"
"heals a burn in\n"
"battle.");
static const u8 sAspearBerryDesc[] = _(
"A hold item that\n"
"defrosts POKéMON\n"
"in battle.");
static const u8 sLeppaBerryDesc[] = _(
"A hold item that\n"
"restores 10 PP in\n"
"battle.");
static const u8 sOranBerryDesc[] = _(
"A hold item that\n"
"restores 10 HP in\n"
"battle.");
static const u8 sPersimBerryDesc[] = _(
"A hold item that\n"
"heals confusion\n"
"in battle.");
static const u8 sLumBerryDesc[] = _(
"A hold item that\n"
"heals any status\n"
"problem in battle.");
static const u8 sSitrusBerryDesc[] = _(
"A hold item that\n"
"restores 30 HP in\n"
"battle.");
static const u8 sFigyBerryDesc[] = _(
"A hold item that\n"
"restores HP but\n"
"may confuse.");
static const u8 sWikiBerryDesc[] = _(
"A hold item that\n"
"restores HP but\n"
"may confuse.");
static const u8 sMagoBerryDesc[] = _(
"A hold item that\n"
"restores HP but\n"
"may confuse.");
static const u8 sAguavBerryDesc[] = _(
"A hold item that\n"
"restores HP but\n"
"may confuse.");
static const u8 sIapapaBerryDesc[] = _(
"A hold item that\n"
"restores HP but\n"
"may confuse.");
static const u8 sRazzBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow RAZZ.");
static const u8 sBlukBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow BLUK.");
static const u8 sNanabBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow NANAB.");
static const u8 sWepearBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow WEPEAR.");
static const u8 sPinapBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow PINAP.");
static const u8 sPomegBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base HP.");
static const u8 sKelpsyBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base ATTACK.");
static const u8 sQualotBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base DEFENSE.");
static const u8 sHondewBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base SP. ATK.");
static const u8 sGrepaBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base SP. DEF.");
static const u8 sTamatoBerryDesc[] = _(
"Makes a POKéMON\n"
"friendly but lowers\n"
"base SPEED.");
static const u8 sCornnBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow CORNN.");
static const u8 sMagostBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow MAGOST.");
static const u8 sRabutaBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow RABUTA.");
static const u8 sNomelBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow NOMEL.");
static const u8 sSpelonBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow SPELON.");
static const u8 sPamtreBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow PAMTRE.");
static const u8 sWatmelBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow WATMEL.");
static const u8 sDurinBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow DURIN.");
static const u8 sBelueBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow BELUE.");
static const u8 sLiechiBerryDesc[] = _(
"A hold item that\n"
"raises ATTACK in\n"
"a pinch.");
static const u8 sGanlonBerryDesc[] = _(
"A hold item that\n"
"raises DEFENSE in\n"
"a pinch.");
static const u8 sSalacBerryDesc[] = _(
"A hold item that\n"
"raises SPEED in\n"
"a pinch.");
static const u8 sPetayaBerryDesc[] = _(
"A hold item that\n"
"raises SP. ATK in\n"
"a pinch.");
static const u8 sApicotBerryDesc[] = _(
"A hold item that\n"
"raises SP. DEF in\n"
"a pinch.");
static const u8 sLansatBerryDesc[] = _(
"A hold item that\n"
"ups the critical-\n"
"hit rate in a pinch.");
static const u8 sStarfBerryDesc[] = _(
"A hold item that\n"
"sharply boosts a\n"
"stat in a pinch.");
static const u8 sEnigmaBerryDesc[] = _(
"{POKEBLOCK} ingredient.\n"
"Plant in loamy soil\n"
"to grow a mystery.");
// Hold items
static const u8 sBrightPowderDesc[] = _(
"A hold item that\n"
"casts a glare to\n"
"reduce accuracy.");
static const u8 sWhiteHerbDesc[] = _(
"A hold item that\n"
"restores any\n"
"lowered stat.");
static const u8 sMachoBraceDesc[] = _(
"A hold item that\n"
"promotes growth,\n"
"but reduces SPEED.");
static const u8 sExpShareDesc[] = _(
"A hold item that\n"
"gets EXP. points\n"
"from battles.");
static const u8 sQuickClawDesc[] = _(
"A hold item that\n"
"occasionally allows\n"
"the first strike.");
static const u8 sSootheBellDesc[] = _(
"A hold item that\n"
"calms spirits and\n"
"fosters friendship.");
static const u8 sMentalHerbDesc[] = _(
"A hold item that\n"
"snaps POKéMON out\n"
"of infatuation.");
static const u8 sChoiceBandDesc[] = _(
"Raises a move's\n"
"power, but permits\n"
"only that move.");
static const u8 sKingsRockDesc[] = _(
"A hold item that\n"
"may cause flinching\n"
"when the foe is hit.");
static const u8 sSilverPowderDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"BUG-type moves.");
static const u8 sAmuletCoinDesc[] = _(
"Doubles money in\n"
"battle if the\n"
"holder takes part.");
static const u8 sCleanseTagDesc[] = _(
"A hold item that\n"
"helps repel wild\n"
"POKéMON.");
static const u8 sSoulDewDesc[] = _(
"Hold item: raises\n"
"SP. ATK & SP. DEF of\n"
"LATIOS & LATIAS.");
static const u8 sDeepSeaToothDesc[] = _(
"A hold item that\n"
"raises the SP. ATK\n"
"of CLAMPERL.");
static const u8 sDeepSeaScaleDesc[] = _(
"A hold item that\n"
"raises the SP. DEF\n"
"of CLAMPERL.");
static const u8 sSmokeBallDesc[] = _(
"A hold item that\n"
"assures fleeing\n"
"from wild POKéMON.");
static const u8 sEverstoneDesc[] = _(
"A wondrous hold\n"
"item that prevents\n"
"evolution.");
static const u8 sFocusBandDesc[] = _(
"A hold item that\n"
"occasionally\n"
"prevents fainting.");
static const u8 sLuckyEggDesc[] = _(
"A hold item that\n"
"boosts EXP. points\n"
"earned in battle.");
static const u8 sScopeLensDesc[] = _(
"A hold item that\n"
"improves the\n"
"critical-hit rate.");
static const u8 sMetalCoatDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"STEEL-type moves.");
static const u8 sLeftoversDesc[] = _(
"A hold item that\n"
"gradually restores\n"
"HP in battle.");
static const u8 sDragonScaleDesc[] = _(
"A strange scale\n"
"held by DRAGON-\n"
"type POKéMON.");
static const u8 sLightBallDesc[] = _(
"A hold item that\n"
"raises the SP. ATK\n"
"of PIKACHU.");
static const u8 sSoftSandDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"GROUND-type moves.");
static const u8 sHardStoneDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"ROCK-type moves.");
static const u8 sMiracleSeedDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"GRASS-type moves.");
static const u8 sBlackGlassesDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"DARK-type moves.");
static const u8 sBlackBeltDesc[] = _(
"A hold item that\n"
"boosts FIGHTING-\n"
"type moves.");
static const u8 sMagnetDesc[] = _(
"A hold item that\n"
"boosts ELECTRIC-\n"
"type moves.");
static const u8 sMysticWaterDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"WATER-type moves.");
static const u8 sSharpBeakDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"FLYING-type moves.");
static const u8 sPoisonBarbDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"POISON-type moves.");
static const u8 sNeverMeltIceDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"ICE-type moves.");
static const u8 sSpellTagDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"GHOST-type moves.");
static const u8 sTwistedSpoonDesc[] = _(
"A hold item that\n"
"boosts PSYCHIC-\n"
"type moves.");
static const u8 sCharcoalDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"FIRE-type moves.");
static const u8 sDragonFangDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"DRAGON-type moves.");
static const u8 sSilkScarfDesc[] = _(
"A hold item that\n"
"raises the power of\n"
"NORMAL-type moves.");
static const u8 sUpGradeDesc[] = _(
"A peculiar box made\n"
"by SILPH CO.");
static const u8 sShellBellDesc[] = _(
"A hold item that\n"
"restores HP upon\n"
"striking the foe.");
static const u8 sSeaIncenseDesc[] = _(
"A hold item that\n"
"slightly boosts\n"
"WATER-type moves.");
static const u8 sLaxIncenseDesc[] = _(
"A hold item that\n"
"slightly lowers the\n"
"foe's accuracy.");
static const u8 sLuckyPunchDesc[] = _(
"A hold item that\n"
"raises CHANSEY's\n"
"critical-hit rate.");
static const u8 sMetalPowderDesc[] = _(
"A hold item that\n"
"raises DITTO's\n"
"DEFENSE.");
static const u8 sThickClubDesc[] = _(
"A hold item that \n"
"raises CUBONE or\n"
"MAROWAK's ATTACK.");
static const u8 sStickDesc[] = _(
"A hold item that\n"
"raises FARFETCH'D's\n"
"critical-hit ratio.");
static const u8 sRedScarfDesc[] = _(
"A hold item that\n"
"raises COOL in\n"
"CONTESTS.");
static const u8 sBlueScarfDesc[] = _(
"A hold item that\n"
"raises BEAUTY in\n"
"CONTESTS.");
static const u8 sPinkScarfDesc[] = _(
"A hold item that\n"
"raises CUTE in\n"
"CONTESTS.");
static const u8 sGreenScarfDesc[] = _(
"A hold item that\n"
"raises SMART in\n"
"CONTESTS.");
static const u8 sYellowScarfDesc[] = _(
"A hold item that\n"
"raises TOUGH in\n"
"CONTESTS.");
// Key items
static const u8 sMachBikeDesc[] = _(
"A folding bicycle\n"
"that doubles your\n"
"speed or better.");
static const u8 sCoinCaseDesc[] = _(
"A case that holds\n"
"up to 9,999 COINS.");
static const u8 sItemfinderDesc[] = _(
"A device that\n"
"signals an invisible\n"
"item by sound.");
static const u8 sOldRodDesc[] = _(
"Use by any body of\n"
"water to fish for\n"
"wild POKéMON.");
static const u8 sGoodRodDesc[] = _(
"A decent fishing\n"
"rod for catching\n"
"wild POKéMON.");
static const u8 sSuperRodDesc[] = _(