summaryrefslogtreecommitdiff
path: root/data/items/descriptions.inc
blob: d2d115d8e2b8731ec2254b1a1b39e45623a90d09 (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
ItemDescriptions::
	dw MasterBallDescription
	dw UltraBallDescription
	dw Item03Description
	dw GreatBallDescription
	dw PokeBallDescription
	dw TownMapDescription
	dw BicycleDescription
	dw MoonStoneDescription
	dw AntidoteDescription
	dw BurnHealDescription
	dw IceHealDescription
	dw AwakeningDescription
	dw ParlyzHealDescription
	dw FullRestoreDescription
	dw MaxPotionDescription
	dw HyperPotionDescription
	dw SuperPotionDescription
	dw PotionDescription
	dw EscapeRopeDescription
	dw RepelDescription
	dw MaxElixerDescription
	dw FireStoneDescription
	dw ThunderstoneDescription
	dw WaterStoneDescription
	dw Item19Description
	dw HPUpDescription
	dw ProteinDescription
	dw IronDescription
	dw CarbosDescription
	dw Item1EDescription
	dw CalciumDescription
	dw RareCandyDescription
	dw XAccuracyDescription
	dw LeafStoneDescription
	dw Item23Description
	dw NuggetDescription
	dw PokeDollDescription
	dw FullHealDescription
	dw ReviveDescription
	dw MaxReviveDescription
	dw GuardSpecDescription
	dw SuperRepelDescription
	dw MaxRepelDescription
	dw DireHitDescription
	dw Item2DDescription
	dw FreshWaterDescription
	dw SodaPopDescription
	dw LemonadeDescription
	dw XAttackDescription
	dw Item32Description
	dw XDefendDescription
	dw XSpeedDescription
	dw XSpecialDescription
	dw CoinCaseDescription
	dw ItemfinderDescription
	dw PokeFluteDescription
	dw ExpShareDescription
	dw OldRodDescription
	dw GoodRodDescription
	dw Item3CDescription
	dw SuperRodDescription
	dw PPUpDescription
	dw EtherDescription
	dw MaxEtherDescription
	dw ElixerDescription
	dw MysticPetalDescription
	dw WhiteFeatherDescription
	dw ConfuseClawDescription
	dw WisdomOrbDescription
	dw SteelShellDescription
	dw UpGradeDescription
	dw StrangeThreadDescription
	dw BigLeafDescription
	dw QuickNeedleDescription
	dw Item4BDescription
	dw SharpStoneDescription
	dw BlackFeatherDescription
	dw SharpFangDescription
	dw SnakeskinDescription
	dw ElectricPouchDescription
	dw ToxicNeedleDescription
	dw KingsRockDescription
	dw StrangePowerDescription
	dw LifeTagDescription
	dw PoisonFangDescription
	dw CordycepsDescription
	dw DragonFangDescription
	dw SilverpowderDescription
	dw DiggingClawDescription
	dw Item5ADescription
	dw AmuletCoinDescription
	dw MigraineSeedDescription
	dw CounterCuffDescription
	dw TalismanTagDescription
	dw StrangeWaterDescription
	dw TwistedspoonDescription
	dw AttackNeedleDescription
	dw PowerBracerDescription
	dw HardStoneDescription
	dw Item64Description
	dw JigglingBalloonDescription
	dw FireManeDescription
	dw SlowpoketailDescription
	dw EarthDescription
	dw StickDescription
	dw FleeFeatherDescription
	dw IceFangDescription
	dw FossilShardDescription
	dw GrossGarbageDescription
	dw BigPearlDescription
	dw ChampionBeltDescription
	dw TagDescription
	dw SpellTagDescription
	dw FiveYenCoinDescription
	dw GuardThreadDescription
	dw StimulusOrbDescription
	dw CalmBerryDescription
	dw ThickClubDescription
	dw FocusOrbDescription
	dw Item78Description
	dw DetectOrbDescription
	dw LongTongueDescription
	dw LottoTicketDescription
	dw EverstoneDescription
	dw SharpHornDescription
	dw LuckyEggDescription
	dw LongVineDescription
	dw MomsLoveDescription
	dw SmokescreenItemDescription
	dw WetHornDescription
	dw SkateboardDescription
	dw CrimsonJewelDescription
	dw InvisibleWallDescription
	dw SharpScytheDescription
	dw Item87Description
	dw IceBikiniDescription
	dw ThunderFangDescription
	dw FireClawDescription
	dw TwinHornsDescription
	dw SpikeDescription
	dw BerryDescription
	dw AppleDescription
	dw MetalCoatDescription
	dw PrettyTailDescription
	dw WaterTailDescription
	dw LeftoversDescription
	dw IceWingDescription
	dw ThunderWingDescription
	dw FireWingDescription
	dw Item96Description
	dw DragonScaleDescription
	dw BerserkGeneDescription
	dw HeartStoneDescription
	dw FireTailDescription
	dw ThunderTailDescription
	dw SacredAshDescription
	dw TMHolderDescription
	dw MailDescription
	dw BallHolderDescription
	dw BagDescription
	dw ImportantBagDescription
	dw PoisonStoneDescription
	dw ItemA3Description
	dw ItemA4Description
	dw ItemA5Description
	dw ItemA6Description
	dw ItemA7Description
	dw ItemA8Description
	dw ItemA9Description
	dw ItemAADescription
	dw ItemABDescription
	dw ItemACDescription
	dw ItemADDescription
	dw ItemAEDescription
	dw ItemAFDescription
	dw ItemB0Description
	dw ItemB1Description
	dw ItemB2Description
	dw ItemB3Description
	dw ItemB4Description
	dw ItemB5Description
	dw ItemB6Description
	dw ItemB7Description
	dw ItemB8Description
	dw ItemB9Description
	dw ItemBADescription
	dw ItemBBDescription
	dw ItemBCDescription
	dw ItemBDDescription
	dw ItemBEDescription
	dw ItemBFDescription
	dw ItemC0Description
	dw ItemC1Description
	dw ItemC2Description
	dw ItemC3Description
	dw TM01Description
	dw TM02Description
	dw TM03Description
	dw TM04Description
	dw ItemC8Description
	dw TM05Description
	dw TM06Description
	dw TM07Description
	dw TM08Description
	dw TM09Description
	dw TM10Description
	dw TM11Description
	dw TM12Description
	dw TM13Description
	dw TM14Description
	dw TM15Description
	dw TM16Description
	dw TM17Description
	dw TM18Description
	dw TM19Description
	dw TM20Description
	dw TM21Description
	dw TM22Description
	dw TM23Description
	dw TM24Description
	dw TM25Description
	dw TM26Description
	dw TM27Description
	dw TM28Description
	dw ItemE1Description
	dw TM29Description
	dw TM30Description
	dw TM31Description
	dw TM32Description
	dw TM33Description
	dw TM34Description
	dw TM35Description
	dw TM36Description
	dw TM37Description
	dw TM38Description
	dw TM39Description
	dw TM40Description
	dw TM41Description
	dw TM42Description
	dw TM43Description
	dw TM44Description
	dw TM45Description
	dw TM46Description
	dw TM47Description
	dw TM48Description
	dw TM49Description
	dw TM50Description
	dw HM01Description
	dw HM02Description
	dw HM03Description
	dw HM04Description
	dw HM05Description
	dw HM06Description
	dw HM07Description
	dw ItemFFDescription

MasterBallDescription:
	db   "ポケモンを つかまえることが できる@"

UltraBallDescription:
	db   "ポケモンを つかまえることが できる@"

Item03Description:
	db   "?"
	next "?@"

GreatBallDescription:
	db   "ポケモンを つかまえることが できる@"

PokeBallDescription:
	db   "ポケモンを つかまえることが できる@"

TownMapDescription:
	db   "マップを みることが できる@"

BicycleDescription:
	db   "2ばいの はやさで いどうできる"
	next "しつないでは のることが できない@"

MoonStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

AntidoteDescription:
	db   "どく じょうたいから かいふくする@"

BurnHealDescription:
	db   "やけど じょうたいから かいふくする@"

IceHealDescription:
	db   "こおり じょうたいから かいふくする@"

AwakeningDescription:
	db   "ねむり じょうたいから かいふくする@"

ParlyzHealDescription:
	db   "マヒ じょうたいから かいふくする@"

FullRestoreDescription:
	db   "すべての ステータスいじょうと"
	next "たいりょくを ぜんかいふくする  @"

MaxPotionDescription:
	db   "たいりょくを ぜんかいふくする  @"

HyperPotionDescription:
	db   "たいりょくを200 かいふくする  @"

SuperPotionDescription:
	db   "たいりょくを50 かいふくする  @"

PotionDescription:
	db   "たいりょくを20 かいふくする  @"

EscapeRopeDescription:
	db   "ダンジョンから ぬけだす@"

RepelDescription:
	db   "100ぽのあいだ よわい ポケモンと"
	next "エンカウントしなくなる@"

MaxElixerDescription:
	db   "ポケモン 1たいの"
	next "ピーピー すべてを ぜんかいふくする@"

FireStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

ThunderstoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

WaterStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

Item19Description:
	db   "?"
	next "?@"

HPUpDescription:
	db   "たいりょくの さいだいちを ふやす@"

ProteinDescription:
	db   "こうげきの きそポイントを あげる@"

IronDescription:
	db   "ぼうぎょの きそポイントを あげる@"

CarbosDescription:
	db   "すばやさの きそポイントを あげる@"

Item1EDescription:
	db   "?"
	next "?@"

CalciumDescription:
	db   "とくしゅの きそポイントを あげる@"

RareCandyDescription:
	db   "ポケモンの レべルを 1つあげる@"

XAccuracyDescription:
	db   "しようした せんとうちゅうだけ"
	next "めいちゅうりつが あがる@"

LeafStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

Item23Description:
	db   "?"
	next "?@"

NuggetDescription:
	db   "きんで できた タマ"
	next "たかく うれる@"

PokeDollDescription:
	db   "エンカウントした ポケモンから"
	next "かならず にげられる@"

FullHealDescription:
	db   "すべての ステータスいじょうの"
	next "じょうたいから かいふくする@"

ReviveDescription:
	db   "たいりょくが はんぶんで"
	next "ひんしじょうたいから かいふくする@"

MaxReviveDescription:
	db   "たいりょくが ぜんかいで"
	next "ひんしじょうたいから かいふくする@"

GuardSpecDescription:
	db   "しようした せんとうちゅうだけ"
	next "とくしゅぼうぎょが あがる@"

SuperRepelDescription:
	db   "200ぽのあいだ よわい ポケモンと"
	next "エンカウントしなくなる@"

MaxRepelDescription:
	db   "250ぽのあいだ よわい ポケモンと"
	next "エンカウントしなくなる@"

DireHitDescription:
	db   "しようした せんとうちゅうだけ"
	next "クりティカルりつが あがる@"

Item2DDescription:
	db   "?"
	next "?@"

FreshWaterDescription:
	db   "たいりょくを50 かいふくする  @"

SodaPopDescription:
	db   "たいりょくを60 かいふくする  @"

LemonadeDescription:
	db   "たいりょくを80 かいふくする  @"

XAttackDescription:
	db   "しようした せんとうちゅうだけ"
	next "こうげきが あがる@"

Item32Description:
	db   "?"
	next "?@"

XDefendDescription:
	db   "しようした せんとうちゅうだけ"
	next "ぼうぎょが あがる@"

XSpeedDescription:
	db   "しようした せんとうちゅうだけ"
	next "すばやさが あがる@"

XSpecialDescription:
	db   "しようした せんとうちゅうだけ"
	next "とくしゅこうげきが あがる@"

CoinCaseDescription:
	db   "もっていると コインを "
	next "9999まいまで もつことが できる@"

ItemfinderDescription:
	db   "かくされた どうぐが "
	next "がめんないにあると おとがなる@"

PokeFluteDescription:
	db   "ねむっている ポケモンを おこす@"

ExpShareDescription:
	db   "たたかわなかった ポケモンにも"
	next "けいけんちが ふりわけられる@"

OldRodDescription:
	db   "ポケモンが つれる@"

GoodRodDescription:
	db   "ポケモンが つれる@"

Item3CDescription:
	db   "?"
	next "?@"

SuperRodDescription:
	db   "ポケモンが つれる@"

PPUpDescription:
	db   "わざポイントの さいだいちが あがる@"

EtherDescription:
	db   "ポケモン1たいの 1つの "
	next "わざポイントを 10かいふくする  @"

MaxEtherDescription:
	db   "ポケモン1たいの 1つの"
	next "わざポイントを ぜんかいふくする  @"

ElixerDescription:
	db   "ポケモン1たいの すべての"
	next "わざポイントを 10かいふくする  @"

MysticPetalDescription:
	db   "そうびすると くさタイプの "
	next "わざのいりょくを よわめられる@"

WhiteFeatherDescription:
	db   "そうびすると ひこうタイプの"
	next "わざのいりょくを よわめられる@"

ConfuseClawDescription:
	db   "そうびすると せんとうの まえに"
	next "てきに ダメージを あたえる@"

WisdomOrbDescription:
	db   "そうびすると "
	next "とくしゅぼうぎょが 10あがる@"

SteelShellDescription:
	db   "そうびすると "
	next "ぼうぎょが 10あがる@"

UpGradeDescription:
	db   "そうびすると "
	next "すべての のうりょくが 5あがる@"

StrangeThreadDescription:
	db   "そうびすると"
	next "てきの こうげきを よけることがある@"

BigLeafDescription:
	db   "そうびすると くさタイプの "
	next "わざのいりょくが あがる@"

QuickNeedleDescription:
	db   "そうびすると"
	next "せんせいこうげき することがある@"

Item4BDescription:
	db   "?"
	next "?@"

SharpStoneDescription:
	db   "そうびすると いわタイプの "
	next "わざのいりょくが あがる@"

BlackFeatherDescription:
	db   "そうびすると ひこうタイプの "
	next "わざのいりょくが あがる@"

SharpFangDescription:
	db   "そうびすると ノーマルタイプの "
	next "わざのいりょくが あがる@"

SnakeskinDescription:
	db   "そうびすると "
	next "どく じょうたいに ならない@"

ElectricPouchDescription:
	db   "そうびすると でんきタイプの "
	next "わざのいりょくを よわめられる@"

ToxicNeedleDescription:
	db   "そうびすると どくタイプの "
	next "わざのいりょくが あがる@"

KingsRockDescription:
	db   "そうびすると"
	next "たまに てきが ひるむことがある@"

StrangePowerDescription:
	db   "そうびすると "
	next "すべての タイプこうかが むこう@"

LifeTagDescription:
	db   "そうびすると せんとうごに"
	next "ひんし じょうたいから かいふくする@"

PoisonFangDescription:
	db   "そうびすると どくタイプの"
	next "わざのいりょくが あがる@"

CordycepsDescription:
	db   "りっぱな キノコ"
	next "たかく うれる@"

DragonFangDescription:
	db   "そうびすると ドラゴンタイプの"
	next "わざのいりょくが あがる@"

SilverpowderDescription:
	db   "そうびすると むしタイプの "
	next "わざのいりょくを よわめられる@"

DiggingClawDescription:
	db   "そうびすると せんとういがいで"
	next "あなをほるが つかえるようになる@"

Item5ADescription:
	db   "?"
	next "?@"

AmuletCoinDescription:
	db   "そうびすると "
	next "もらえる おかねが 2ばい@"

MigraineSeedDescription:
	db   "そうびすると エスパータイプの"
	next "わざのいりょくが あがる@"

CounterCuffDescription:
	db   "そうびすると 4ぶんの1で"
	next "てきに はんげきする @"

TalismanTagDescription:
	db   "そうびすると "
	next "エンカウント しにくくなる@"

StrangeWaterDescription:
	db   "そうびすると みずタイプの "
	next "わざのいりょくを よわめられる@"

TwistedspoonDescription:
	db   "そうびすると エスパータイプの "
	next "わざのいりょくを よわめられる@"

AttackNeedleDescription:
	db   "そうびすると むしタイプの"
	next "わざのいりょくが あがる@"

PowerBracerDescription:
	db   "そうびすると かくとうタイプの "
	next "わざのいりょくが あがる@"

HardStoneDescription:
	db   "そうびすると いわタイプの "
	next "わざのいりょくを よわめられる@"

Item64Description:
	db   "?"
	next "?@"

JigglingBalloonDescription:
	db   "そうびすると ノーマルタイプの "
	next "わざのいりょくを よわめられる@"

FireManeDescription:
	db   "そうびすると ほのおタイプの "
	next "わざのいりょくを よわめられる@"

SlowpoketailDescription:
	db   "とても おいしい"
	next "たかく うれる@"

EarthDescription:
	db   "そうびすると"
	next "マヒ じょうたいに ならない@"

StickDescription:
	db   "そうびすると ノーマルタイプの "
	next "わざのいりょくが あがる@"

FleeFeatherDescription:
	db   "そうびすると 1ターン かけないで"
	next "ほかの ポケモンと こうたいできる@"

IceFangDescription:
	db   "そうびすると こおりタイプの "
	next "わざのいりょくが あがる@"

FossilShardDescription:
	db   "そうびすると じめんタイプの "
	next "わざのいりょくを よわめられる@"

GrossGarbageDescription:
	db   "そうびすると どくタイプの "
	next "わざのいりょくを よわめられる@"

BigPearlDescription:
	db   "きれいな しんじゅ"
	next "たかく うれる@"

ChampionBeltDescription:
	db   "そうびすると かくとうタイプの "
	next "わざのいりょくを よわめられる@"

TagDescription:
	db   "そうびすると ゴーストタイプの "
	next "わざのいりょくを よわめられる@"

SpellTagDescription:
	db   "そうびすると "
	next "エンカウント しやすくなる@"

FiveYenCoinDescription:
	db   "そうびすると エスパータイプの "
	next "わざのいりょくを よわめられる@"

GuardThreadDescription:
	db   "そうびすると むしタイプの "
	next "わざのいりょくを よわめられる@"

StimulusOrbDescription:
	db   "そうびすると "
	next "ねむり じょうたいに ならない@"

CalmBerryDescription:
	db   "そうびすると "
	next "こんらん じょうたいに ならない@"

ThickClubDescription:
	db   "そうびすると じめんタイプの "
	next "わざのいりょくが あがる@"

FocusOrbDescription:
	db   "そうびすると"
	next "きぜつ しないで たえることがある@"

Item78Description:
	db   "?"
	next "?@"

DetectOrbDescription:
	db   "そうびすると"
	next "てきの こうげきを よけることがある@"

LongTongueDescription:
	db   "そうびすると"
	next "ポケモンの ほかくりつが あがる@"

LottoTicketDescription:
	db   "ふくびきが できる@"

EverstoneDescription:
	db   "そうびすると"
	next "ポケモンが しんか しなくなる@"

SharpHornDescription:
	db   "そうびすると "
	next "こうげきが 10あがる@"

LuckyEggDescription:
	db   "そうびすると "
	next "もらえる けいけんちが 2ばい@"

LongVineDescription:
	db   "そうびすると"
	next "ポケモンの ほかくりつが あがる@"

MomsLoveDescription:
	db   "そうびすると あるくたびに  "
	next "たいりょくが1 かいふくする@"

SmokescreenItemDescription:
	db   "そうびすると "
	next "エンカウントしたてきから にげられる@"

WetHornDescription:
	db   "そうびすると みずタイプの "
	next "わざのいりょくが あがる@"

SkateboardDescription:
	db   "2ばいの はやさで いどうできる"
	next "しつないでも のることが できる@"

CrimsonJewelDescription:
	db   "あかい ほうせき"
	next "たかく うれる@"

InvisibleWallDescription:
	db   "そうびすると とくしゅこうげきの"
	next "ダメージが はんぶんになる@"

SharpScytheDescription:
	db   "そうびすると"
	next "クりティカルが でやすくなる@"

Item87Description:
	db   "?"
	next "?@"

IceBikiniDescription:
	db   "そうびすると こおりタイプの "
	next "わざのいりょくを よわめられる@"

ThunderFangDescription:
	db   "そうびすると でんきタイプの "
	next "わざのいりょくが あがる@"

FireClawDescription:
	db   "そうびすると ほのおタイプの "
	next "わざのいりょくが あがる@"

TwinHornsDescription:
	db   "そうびすると "
	next "こうげきが 10あがる@"

SpikeDescription:
	db   "そうびすると ゴーストタイプの "
	next "わざのいりょくが あがる@"

BerryDescription:
	db   "たいりょくを20 かいふくする  @"

AppleDescription:
	db   "たいりょくを50 かいふくする  @"

MetalCoatDescription:
	db   "そうびすると ふつうこうげきの"
	next "ダメージが はんぶんになる@"

PrettyTailDescription:
	db   "そうびすると "
	next "どく じょうたいに ならない@"

WaterTailDescription:
	db   "そうびすると "
	next "やけど じょうたいに ならない@"

LeftoversDescription:
	db   "そうびすると 1ターンごとに  "
	next "たいりょくが30 かいふくする@"

IceWingDescription:
	db   "そうびすると "
	next "とくしゅぼうぎょが 10あがる@"

ThunderWingDescription:
	db   "そうびすると "
	next "すばやさが 10あがる@"

FireWingDescription:
	db   "そうびすると "
	next "とくしゅこうげきが 10あがる@"

Item96Description:
	db   "?"
	next "?@"

DragonScaleDescription:
	db   "そうびすると ドラゴンタイプの "
	next "わざのいりょくを よわめられる@"

BerserkGeneDescription:
	db   "そうびすると "
	next "すべての のうりょくが 10あがる@"

HeartStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

FireTailDescription:
	db   "そうびすると "
	next "こおり じょうたいに ならない@"

ThunderTailDescription:
	db   "そうびすると "
	next "マヒ じょうたいに ならない@"

SacredAshDescription:
	db   "すべてのポケモンを たいりょく1で"
	next "ひんし じょうたいから かいふくする@"

TMHolderDescription:
	db   "わざマシンを しまう ホルダ@"

MailDescription:
	db   "とくしゅ アイテム@"

BallHolderDescription:
	db   "とくしゅ アイテム@"

BagDescription:
	db   "ふつうの どうぐを しまう ホルダ@"

ImportantBagDescription:
	db   "だいじな どうぐを しまう ホルダ@"

PoisonStoneDescription:
	db   "とくていの ポケモンを しんかさせる@"

ItemA3Description:
	db   "?"
	next "?@"

ItemA4Description:
	db   "?"
	next "?@"

ItemA5Description:
	db   "?"
	next "?@"

ItemA6Description:
	db   "?"
	next "?@"

ItemA7Description:
	db   "?"
	next "?@"

ItemA8Description:
	db   "?"
	next "?@"

ItemA9Description:
	db   "?"
	next "?@"

ItemAADescription:
	db   "?"
	next "?@"

ItemABDescription:
	db   "?"
	next "?@"

ItemACDescription:
	db   "?"
	next "?@"

ItemADDescription:
	db   "?"
	next "?@"

ItemAEDescription:
	db   "?"
	next "?@"

ItemAFDescription:
	db   "?"
	next "?@"

ItemB0Description:
	db   "?"
	next "?@"

ItemB1Description:
	db   "?"
	next "?@"

ItemB2Description:
	db   "?"
	next "?@"

ItemB3Description:
	db   "?"
	next "?@"

ItemB4Description:
	db   "?"
	next "?@"

ItemB5Description:
	db   "?"
	next "?@"

ItemB6Description:
	db   "?"
	next "?@"

ItemB7Description:
	db   "?"
	next "?@"

ItemB8Description:
	db   "?"
	next "?@"

ItemB9Description:
	db   "?"
	next "?@"

ItemBADescription:
	db   "?"
	next "?@"

ItemBBDescription:
	db   "?"
	next "?@"

ItemBCDescription:
	db   "?"
	next "?@"

ItemBDDescription:
	db   "?"
	next "?@"

ItemBEDescription:
	db   "?"
	next "?@"

ItemBFDescription:
	db   "?"
	next "?@"

ItemC0Description:
	db   "?"
	next "?@"

ItemC1Description:
	db   "?"
	next "?@"

ItemC2Description:
	db   "?"
	next "?@"

ItemC3Description:
	db   "?"
	next "?@"

TM01Description:
	db   "わざマシン01@"

TM02Description:
	db   "わざマシン02@"

TM03Description:
	db   "わざマシン03@"

TM04Description:
	db   "わざマシン04@"

ItemC8Description:
	db   "?"
	next "?@"

TM05Description:
	db   "わざマシン05@"

TM06Description:
	db   "わざマシン06@"

TM07Description:
	db   "わざマシン07@"

TM08Description:
	db   "わざマシン08@"

TM09Description:
	db   "わざマシン09@"

TM10Description:
	db   "わざマシン10@"

TM11Description:
	db   "わざマシン11@"

TM12Description:
	db   "わざマシン12@"

TM13Description:
	db   "わざマシン13@"

TM14Description:
	db   "わざマシン14@"

TM15Description:
	db   "わざマシン15@"

TM16Description:
	db   "わざマシン16@"

TM17Description:
	db   "わざマシン17@"

TM18Description:
	db   "わざマシン18@"

TM19Description:
	db   "わざマシン19@"

TM20Description:
	db   "わざマシン20@"

TM21Description:
	db   "わざマシン21@"

TM22Description:
	db   "わざマシン22@"

TM23Description:
	db   "わざマシン23@"

TM24Description:
	db   "わざマシン24@"

TM25Description:
	db   "わざマシン25@"

TM26Description:
	db   "わざマシン26@"

TM27Description:
	db   "わざマシン27@"

TM28Description:
	db   "わざマシン28@"

ItemE1Description:
	db   "?"
	next "?@"

TM29Description:
	db   "わざマシン29@"

TM30Description:
	db   "わざマシン30@"

TM31Description:
	db   "わざマシン31@"

TM32Description:
	db   "わざマシン32@"

TM33Description:
	db   "わざマシン33@"

TM34Description:
	db   "わざマシン34@"

TM35Description:
	db   "わざマシン35@"

TM36Description:
	db   "わざマシン36@"

TM37Description:
	db   "わざマシン37@"

TM38Description:
	db   "わざマシン38@"

TM39Description:
	db   "わざマシン39@"

TM40Description:
	db   "わざマシン40@"

TM41Description:
	db   "わざマシン41@"

TM42Description:
	db   "わざマシン42@"

TM43Description:
	db   "わざマシン43@"

TM44Description:
	db   "わざマシン44@"

TM45Description:
	db   "わざマシン45@"

TM46Description:
	db   "わざマシン46@"

TM47Description:
	db   "わざマシン47@"

TM48Description:
	db   "わざマシン48@"

TM49Description:
	db   "わざマシン49@"

TM50Description:
	db   "わざマシン50@"

HM01Description:
	db   "ひでんマシン01@"

HM02Description:
	db   "ひでんマシン02@"

HM03Description:
	db   "ひでんマシン03@"

HM04Description:
	db   "ひでんマシン04@"

HM05Description:
	db   "ひでんマシン05@"

HM06Description:
	db   "ひでんマシン06@"

HM07Description:
	db   "ひでんマシン07@"

ItemFFDescription:
	db   "?"
	next "?@"