forked from Purukitto/pokemon-data.json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.json
10274 lines (10274 loc) · 250 KB
/
items.json
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
[
{
"id":1,
"type":"Pokeballs",
"description":"The best Ball with the ultimate level of performance. It will catch any wild Pokémon without fail.",
"name":{
"japanese":"マスターボール",
"english":"Master Ball",
"chinese":"大师球"
}
},
{
"id":2,
"type":"Pokeballs",
"description":"An ultra-performance Ball that provides a higher Pokémon catch rate than a Great Ball.",
"name":{
"japanese":"ハイパーボール",
"english":"Ultra Ball",
"chinese":"高级球"
}
},
{
"id":3,
"type":"Pokeballs",
"description":"A good, high-performance Ball that provides a higher Pokémon catch rate than a standard Poké Ball.",
"name":{
"english":"Great Ball",
"japanese":"スーパーボール",
"chinese":"超级球"
}
},
{
"id":4,
"type":"Pokeballs",
"description":"A device for catching wild Pokémon. It is thrown like a ball at the target. It is designed as a capsule system.",
"name":{
"japanese":"モンスターボール",
"english":"Poké Ball",
"chinese":"精灵球"
}
},
{
"id":5,
"type":"Pokeballs",
"description":"A special Poké Ball that is used only in the Great Marsh. It is decorated in a camouflage pattern.",
"name":{
"english":"Safari Ball",
"japanese":"サファリボール",
"chinese":"狩猎球"
}
},
{
"id":6,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that works especially well on Water- and Bug-type Pokémon.",
"name":{
"japanese":"ネットボール",
"english":"Net Ball",
"chinese":"捕网球"
}
},
{
"id":7,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that works especially well on Pokémon that live underwater.",
"name":{
"english":"Dive Ball",
"japanese":"ダイブボール",
"chinese":"潜水球"
}
},
{
"id":8,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that works especially well on weaker Pokémon in the wild.",
"name":{
"english":"Nest Ball",
"japanese":"ネストボール",
"chinese":"巢穴球"
}
},
{
"id":9,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that works especially well on Pokémon species that were previously caught.",
"name":{
"japanese":"リピートボール",
"english":"Repeat Ball",
"chinese":"重复球"
}
},
{
"id":10,
"type":"Pokeballs",
"description":"A somewhat different BALL that becomes progressively better the more turns there are in a battle.",
"name":{
"chinese":"计时球",
"japanese":"タイマーボール",
"english":"Timer Ball"
}
},
{
"id":11,
"type":"Pokeballs",
"description":"A comfortable Poké Ball that makes a caught wild Pokémon quickly grow friendly.",
"name":{
"chinese":"豪华球",
"english":"Luxury Ball",
"japanese":"ゴージャスボール"
}
},
{
"id":12,
"type":"Pokeballs",
"description":"A somewhat rare Poké Ball that has been specially made to commemorate an event of some sort.",
"name":{
"japanese":"プレミアボール",
"english":"Premier Ball",
"chinese":"纪念球"
}
},
{
"id":13,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that makes it easier to catch wild Pokémon at night or in dark places like caves.",
"name":{
"english":"Dusk Ball",
"japanese":"ダークボール",
"chinese":"黑暗球"
}
},
{
"id":14,
"type":"Pokeballs",
"description":"A remedial Poké Ball that restores the caught Pokémon's HP and eliminates any status problem.",
"name":{
"chinese":"治愈球",
"english":"Heal Ball",
"japanese":"ヒールボール"
}
},
{
"id":15,
"type":"Pokeballs",
"description":"A somewhat different Poké Ball that provides a better catch rate if it is used at the start of a wild encounter.",
"name":{
"chinese":"先机球",
"english":"Quick Ball",
"japanese":"クイックボール"
}
},
{
"id":16,
"type":"Pokeballs",
"description":"A quite rare Poké Ball that has been specially crafted to commemorate an occasion of some sort.",
"name":{
"english":"Cherish Ball",
"japanese":"プレジャスボール",
"chinese":"贵重球"
}
},
{
"id":17,
"type":"Medicine",
"description":"Restores 20 HP.",
"name":{
"japanese":"キズぐすり",
"english":"Potion",
"chinese":"伤药"
}
},
{
"id":18,
"type":"Medicine",
"description":"A spray-type medicine. It lifts the effect of poison from one Pokémon.",
"name":{
"chinese":"解毒药",
"japanese":"どくけし",
"english":"Antidote"
}
},
{
"id":19,
"type":"Medicine",
"description":"A spray-type medicine. It heals a single Pokémon that is suffering from a burn.",
"name":{
"japanese":"やけどなおし",
"english":"Burn Heal",
"chinese":"灼伤药"
}
},
{
"id":20,
"type":"Medicine",
"description":"A spray-type medicine. It defrosts a Pokémon that has been frozen solid.",
"name":{
"chinese":"解冻药",
"japanese":"こおりなおし",
"english":"Ice Heal"
}
},
{
"id":21,
"type":"Medicine",
"description":"A spray-type medicine. It awakens a Pokémon from the clutches of sleep.",
"name":{
"english":"Awakening",
"japanese":"ねむけざまし",
"chinese":"解眠药"
}
},
{
"id":22,
"type":"Medicine",
"description":"A spray-type medicine. It eliminates paralysis from a single Pokémon.",
"name":{
"english":"Paralyze Heal",
"japanese":"まひなおし",
"chinese":"解麻药"
}
},
{
"id":23,
"type":"Medicine",
"description":"A medicine that fully restores the HP and heals any status problems of a single Pokémon.",
"name":{
"japanese":"かいふくのくすり",
"english":"Full Restore",
"chinese":"全复药"
}
},
{
"id":24,
"type":"Medicine",
"description":"Fully restores HP.",
"name":{
"japanese":"まんたんのくすり",
"english":"Max Potion",
"chinese":"全满药"
}
},
{
"id":25,
"type":"Medicine",
"description":"Restores 120 HP.",
"name":{
"chinese":"厉害伤药",
"japanese":"すごいキズぐすり",
"english":"Hyper Potion"
}
},
{
"id":26,
"type":"Medicine",
"description":"Restores 60 HP.",
"name":{
"english":"Super Potion",
"japanese":"いいキズぐすり",
"chinese":"好伤药"
}
},
{
"id":27,
"type":"Medicine",
"description":"A spray-type medicine. It heals all the status problems of a single Pokémon.",
"name":{
"japanese":"なんでもなおし",
"english":"Full Heal",
"chinese":"万灵药"
}
},
{
"id":28,
"type":"Medicine",
"description":"A medicine that revives a fainted Pokémon. It restores half the Pokémon's maximum HP.",
"name":{
"japanese":"げんきのかけら",
"english":"Revive",
"chinese":"活力碎片"
}
},
{
"id":29,
"type":"Medicine",
"description":"A medicine that revives a fainted Pokémon. It fully restores the Pokémon's HP.",
"name":{
"japanese":"げんきのかたまり",
"english":"Max Revive",
"chinese":"活力块"
}
},
{
"id":30,
"type":"Medicine",
"description":"Restores 30 HP.",
"name":{
"english":"Fresh Water",
"japanese":"おいしいみず",
"chinese":"美味之水"
}
},
{
"id":31,
"type":"Medicine",
"description":"Restores 50 HP.",
"name":{
"chinese":"劲爽汽水",
"japanese":"サイコソーダ",
"english":"Soda Pop"
}
},
{
"id":32,
"type":"Medicine",
"description":"Restores 70 HP.",
"name":{
"japanese":"ミックスオレ",
"english":"Lemonade",
"chinese":"果汁牛奶"
}
},
{
"id":33,
"type":"Medicine",
"description":"Milk with a very high nutrition content. It restores the HP of one Pokémon by 100 points.",
"name":{
"english":"Moomoo Milk",
"japanese":"モーモーミルク",
"chinese":"哞哞鲜奶"
}
},
{
"id":34,
"type":"Medicine",
"description":"Restores 60 HP but lowers Friendship.",
"name":{
"chinese":"元气粉",
"english":"Energy Powder",
"japanese":"ちからのこな"
}
},
{
"id":35,
"type":"Medicine",
"description":"Restores 120 HP but lowers Friendship.",
"name":{
"japanese":"ちからのねっこ",
"english":"Energy Root",
"chinese":"元气根"
}
},
{
"id":36,
"type":"Medicine",
"description":"Heals all status problems, but lowers Friendship.",
"name":{
"japanese":"ばんのうごな",
"english":"Heal Powder",
"chinese":"万能粉"
}
},
{
"id":37,
"type":"Medicine",
"description":"Revives a Pokémon to max HP, but lowers Friendship.",
"name":{
"japanese":"ふっかつそう",
"english":"Revival Herb",
"chinese":"复活草"
}
},
{
"id":38,
"type":"Medicine",
"description":"It restores the PP of a Pokémon's selected move by a maximum of 10 points.",
"name":{
"chinese":"PP单项小补剂",
"english":"Ether",
"japanese":"ピーピーエイド"
}
},
{
"id":39,
"type":"Medicine",
"description":"It fully restores the PP of a single selected move that has been learned by the target Pokémon.",
"name":{
"english":"Max Ether",
"japanese":"ピーピーリカバー",
"chinese":"PP单项全补剂"
}
},
{
"id":40,
"type":"Medicine",
"description":"It restores the PP of all the moves learned by the targeted Pokémon by 10 points each.",
"name":{
"chinese":"PP多项小补剂",
"english":"Elixir",
"japanese":"ピーピーエイダー"
}
},
{
"id":41,
"type":"Medicine",
"description":"It fully restores the PP of all the moves learned by the targeted Pokémon.",
"name":{
"chinese":"PP多项全补剂",
"japanese":"ピーピーマックス",
"english":"Max Elixir"
}
},
{
"id":42,
"type":"Medicine",
"description":"Heals all major status conditions.",
"name":{
"chinese":"釜炎仙贝",
"japanese":"フエンせんべい",
"english":"Lava Cookie"
}
},
{
"id":43,
"type":"Medicine",
"description":"A 100% pure juice made of Berries. It restores the HP of one Pokémon by just 20 points.",
"name":{
"chinese":"树果汁",
"english":"Berry Juice",
"japanese":"きのみジュース"
}
},
{
"id":44,
"type":"Medicine",
"description":"It revives all fainted Pokémon. In doing so, it also fully restores their HP.",
"name":{
"chinese":"圣灰",
"japanese":"せいなるはい",
"english":"Sacred Ash"
}
},
{
"id":45,
"type":"Medicine",
"description":"Increases HP EVs by 10.",
"name":{
"japanese":"マックスアップ",
"english":"HP Up",
"chinese":"HP增强剂"
}
},
{
"id":46,
"type":"Medicine",
"description":"Increases Attack EVs by 10.",
"name":{
"english":"Protein",
"japanese":"タウリン",
"chinese":"攻击增强剂"
}
},
{
"id":47,
"type":"Medicine",
"description":"Increases Defense EVs by 10.",
"name":{
"english":"Iron",
"japanese":"ブロムヘキシン",
"chinese":"防御增强剂"
}
},
{
"id":48,
"type":"Medicine",
"description":"Increases Speed EVs by 10.",
"name":{
"japanese":"インドメタシン",
"english":"Carbos",
"chinese":"速度增强剂"
}
},
{
"id":49,
"type":"Medicine",
"description":"Increases Special Attack EVs by 10.",
"name":{
"chinese":"特攻增强剂",
"japanese":"リゾチウム",
"english":"Calcium"
}
},
{
"id":50,
"type":"Medicine",
"description":"A candy that is packed with energy. It raises the level of a single Pokémon by one.",
"name":{
"chinese":"神奇糖果",
"english":"Rare Candy",
"japanese":"ふしぎなアメ"
}
},
{
"id":51,
"type":"Medicine",
"description":"It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon.",
"name":{
"chinese":"PP提升剂",
"english":"PP Up",
"japanese":"ポイントアップ"
}
},
{
"id":52,
"type":"Medicine",
"description":"Increases Special Defense EVs by 10.",
"name":{
"chinese":"特防增强剂",
"english":"Zinc",
"japanese":"キトサン"
}
},
{
"id":53,
"type":"Medicine",
"description":"It maximally raises the top PP of a selected move that has been learned by the target Pokémon.",
"name":{
"english":"PP Max",
"japanese":"ポイントマックス",
"chinese":"PP极限提升剂"
}
},
{
"id":54,
"type":"Medicine",
"description":"Heals all major status conditions.",
"name":{
"chinese":"森之羊羹",
"english":"Old Gateau",
"japanese":"もりのヨウカン"
}
},
{
"id":55,
"type":"Battle items",
"description":"Prevents stat reduction for five turns.",
"name":{
"chinese":"能力防守",
"japanese":"エフェクトガード",
"english":"Guard Spec."
}
},
{
"id":56,
"type":"Battle items",
"description":"Raises critical-hit ratio of a Pokémon in battle.",
"name":{
"chinese":"要害攻击",
"japanese":"クリティカット",
"english":"Dire Hit"
}
},
{
"id":57,
"type":"Battle items",
"description":"Raises Attack of a Pokémon in battle.",
"name":{
"chinese":"力量强化",
"japanese":"プラスパワー",
"english":"X Attack"
}
},
{
"id":58,
"type":"Battle items",
"description":"Raises Defense of a Pokémon in battle.",
"name":{
"chinese":"防御强化",
"japanese":"ディフェンダー",
"english":"X Defense"
}
},
{
"id":59,
"type":"Battle items",
"description":"Raises Speed of a Pokémon in battle.",
"name":{
"chinese":"速度强化",
"japanese":"スピーダー",
"english":"X Speed"
}
},
{
"id":60,
"type":"Battle items",
"description":"Raises Accuracy of a Pokémon in battle.",
"name":{
"japanese":"ヨクアタール",
"english":"X Accuracy",
"chinese":"命中强化"
}
},
{
"id":61,
"type":"Battle items",
"description":"Raises Special Attack of a Pokémon in battle.",
"name":{
"chinese":"特攻强化",
"english":"X Sp. Atk",
"japanese":"スペシャルアップ"
}
},
{
"id":62,
"type":"Battle items",
"description":"Raises Special Defense of a Pokémon in battle.",
"name":{
"english":"X Sp. Def",
"japanese":"スペシャルガード",
"chinese":"特防强化"
}
},
{
"id":63,
"type":"General items",
"description":"A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon.",
"name":{
"chinese":"皮皮玩偶",
"english":"Poké Doll",
"japanese":"ピッピにんぎょう"
}
},
{
"id":64,
"type":"General items",
"description":"An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon.",
"name":{
"chinese":"向尾喵的尾巴",
"english":"Fluffy Tail",
"japanese":"エネコのシッポ"
}
},
{
"id":65,
"type":"General items",
"description":"A toy flute made from blue glass. A maniac will buy it for a high price.",
"name":{
"japanese":"あおいビードロ",
"english":"Blue Flute",
"chinese":"蓝色玻璃哨"
}
},
{
"id":66,
"type":"General items",
"description":"A toy flute made from yellow glass. A maniac will buy it for a high price.",
"name":{
"chinese":"黄色玻璃哨",
"japanese":"きいろビードロ",
"english":"Yellow Flute"
}
},
{
"id":67,
"type":"General items",
"description":"A toy flute made from red glass. A maniac will buy it for a high price.",
"name":{
"english":"Red Flute",
"japanese":"あかいビードロ",
"chinese":"红色玻璃哨"
}
},
{
"id":68,
"type":"General items",
"description":"A toy flute made from black glass. A maniac will buy it for a high price.",
"name":{
"chinese":"黑色玻璃哨",
"japanese":"くろいビードロ",
"english":"Black Flute"
}
},
{
"id":69,
"type":"General items",
"description":"A toy flute made from white glass. A maniac will buy it for a high price.",
"name":{
"chinese":"白色玻璃哨",
"english":"White Flute",
"japanese":"しろいビードロ"
}
},
{
"id":70,
"type":"General items",
"description":"Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price.",
"name":{
"japanese":"あさせのしお",
"english":"Shoal Salt",
"chinese":"浅滩海盐"
}
},
{
"id":71,
"type":"General items",
"description":"A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price.",
"name":{
"chinese":"浅滩贝壳",
"english":"Shoal Shell",
"japanese":"あさせのかいがら"
}
},
{
"id":72,
"type":"General items",
"description":"A small red shard. It appears to be from some sort of implement made long ago.",
"name":{
"chinese":"红色碎片",
"japanese":"あかいかけら",
"english":"Red Shard"
}
},
{
"id":73,
"type":"General items",
"description":"A small blue shard. It appears to be from some sort of implement made long ago.",
"name":{
"japanese":"あおいかけら",
"english":"Blue Shard",
"chinese":"蓝色碎片"
}
},
{
"id":74,
"type":"General items",
"description":"A small yellow shard. It appears to be from some sort of implement made long ago.",
"name":{
"japanese":"きいろいかけら",
"english":"Yellow Shard",
"chinese":"黄色碎片"
}
},
{
"id":75,
"type":"General items",
"description":"A small green shard. It appears to be from some sort of implement made long ago.",
"name":{
"english":"Green Shard",
"japanese":"みどりのかけら",
"chinese":"绿色碎片"
}
},
{
"id":76,
"type":"General items",
"description":"An item that prevents weak wild Pokémon from appearing for 200 steps after its use.",
"name":{
"chinese":"白银喷雾",
"english":"Super Repel",
"japanese":"シルバースプレー"
}
},
{
"id":77,
"type":"General items",
"description":"An item that prevents weak wild Pokémon from appearing for 250 steps after its use.",
"name":{
"english":"Max Repel",
"japanese":"ゴールドスプレー",
"chinese":"黄金喷雾"
}
},
{
"id":78,
"type":"General items",
"description":"A long, durable rope. Use it to escape instantly from a cave or a dungeon.",
"name":{
"chinese":"离洞绳",
"japanese":"あなぬけのヒモ",
"english":"Escape Rope"
}
},
{
"id":79,
"type":"General items",
"description":"An item that prevents weak wild Pokémon from appearing for 100 steps after its use.",
"name":{
"english":"Repel",
"japanese":"むしよけスプレー",
"chinese":"除虫喷雾"
}
},
{
"id":80,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"chinese":"日之石",
"english":"Sun Stone",
"japanese":"たいようのいし"
}
},
{
"id":81,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"japanese":"つきのいし",
"english":"Moon Stone",
"chinese":"月之石"
}
},
{
"id":82,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"japanese":"ほのおのいし",
"english":"Fire Stone",
"chinese":"火之石"
}
},
{
"id":83,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"english":"Thunder Stone",
"japanese":"かみなりのいし",
"chinese":"雷之石"
}
},
{
"id":84,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"chinese":"水之石",
"japanese":"みずのいし",
"english":"Water Stone"
}
},
{
"id":85,
"type":"General items",
"description":"Evolves certain species of Pokémon.",
"name":{
"chinese":"叶之石",
"english":"Leaf Stone",
"japanese":"リーフのいし"
}
},
{
"id":86,
"type":"General items",
"description":"A small and rare mushroom. It is sought after by collectors.",
"name":{
"japanese":"ちいさなキノコ",
"english":"Tiny Mushroom",
"chinese":"小蘑菇"
}
},
{
"id":87,
"type":"General items",
"description":"A large and rare mushroom. It is sought after by collectors.",
"name":{
"japanese":"おおきなキノコ",
"english":"Big Mushroom",
"chinese":"大蘑菇"
}
},
{
"id":88,
"type":"General items",
"description":"A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops.",
"name":{
"chinese":"珍珠",
"english":"Pearl",
"japanese":"しんじゅ"
}
},
{
"id":89,
"type":"General items",
"description":"A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops.",
"name":{
"japanese":"おおきなしんじゅ",
"english":"Big Pearl",
"chinese":"大珍珠"
}
},
{
"id":90,
"type":"General items",
"description":"Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops.",
"name":{
"chinese":"星星沙子",
"english":"Stardust",
"japanese":"ほしのすな"
}
},
{
"id":91,
"type":"General items",
"description":"A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops.",
"name":{
"chinese":"星星碎片",
"english":"Star Piece",
"japanese":"ほしのかけら"
}
},
{
"id":92,
"type":"General items",
"description":"A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops.",
"name":{
"chinese":"金珠",
"japanese":"きんのたま",
"english":"Nugget"
}
},
{
"id":93,
"type":"General items",
"description":"A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow.",
"name":{
"chinese":"心之鳞片",
"japanese":"ハートのウロコ",
"english":"Heart Scale"
}
},
{
"id":94,
"type":"General items",
"description":"A sweet honey with a lush aroma that attracts wild Pokémon when it is used in grass, caves, or on special trees.",
"name":{
"chinese":"甜甜蜜",
"english":"Honey",
"japanese":"あまいミツ"
}
},
{
"id":95,
"type":"General items",
"description":"A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price.",
"name":{
"chinese":"速速肥",
"japanese":"すくすくこやし",
"english":"Growth Mulch"
}
},
{
"id":96,
"type":"General items",
"description":"A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price.",
"name":{
"chinese":"湿湿肥",
"japanese":"じめじめこやし",
"english":"Damp Mulch"
}
},
{
"id":97,
"type":"General items",
"description":"A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price.",
"name":{
"chinese":"久久肥",
"japanese":"ながながこやし",
"english":"Stable Mulch"
}
},
{
"id":98,
"type":"General items",
"description":"A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price.",
"name":{
"chinese":"粘粘肥",
"japanese":"ねばねばこやし",
"english":"Gooey Mulch"
}
},
{
"id":99,
"type":"General items",
"description":"A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root.",
"name":{
"chinese":"根状化石",
"english":"Root Fossil",
"japanese":"ねっこのカセキ"
}
},
{
"id":100,
"type":"General items",
"description":"A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw.",
"name":{
"english":"Claw Fossil",
"japanese":"ツメのカセキ",
"chinese":"爪子化石"
}