-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.json
More file actions
2312 lines (2312 loc) · 73.7 KB
/
items.json
File metadata and controls
2312 lines (2312 loc) · 73.7 KB
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
{
"abomasite": {
"name": "Abomasite",
"desc": "If held by an Abomasnow, this item allows it to Mega Evolve in battle."
},
"absolite": {
"name": "Absolite",
"desc": "If held by an Absol, this item allows it to Mega Evolve in battle."
},
"absorbbulb": {
"name": "Absorb Bulb",
"desc": "Raises holder's Sp. Atk by 1 stage if hit by a Water-type attack. Single use."
},
"adamantorb": {
"name": "Adamant Orb",
"desc": "If held by a Dialga, its Steel- and Dragon-type attacks have 1.2x power."
},
"adrenalineorb": {
"name": "Adrenaline Orb",
"desc": "Raises holder's Speed by 1 stage if it gets affected by Intimidate. Single use."
},
"aerodactylite": {
"name": "Aerodactylite",
"desc": "If held by an Aerodactyl, this item allows it to Mega Evolve in battle."
},
"aggronite": {
"name": "Aggronite",
"desc": "If held by an Aggron, this item allows it to Mega Evolve in battle."
},
"aguavberry": {
"name": "Aguav Berry",
"desc": "Restores 33% max HP at 1/4 max HP or less; confuses if -SpD Nature. Single use.",
"gen7": {
"desc": "Restores 1/2 max HP at 1/4 max HP or less; confuses if -SpD Nature. Single use."
},
"gen6": {
"desc": "Restores 1/8 max HP at 1/2 max HP or less; confuses if -SpD Nature. Single use."
}
},
"airballoon": {
"name": "Air Balloon",
"desc": "Holder is immune to Ground-type attacks. Pops when holder is hit.",
"start": " [POKEMON] floats in the air with its Air Balloon!",
"end": " [POKEMON]'s Air Balloon popped!"
},
"alakazite": {
"name": "Alakazite",
"desc": "If held by an Alakazam, this item allows it to Mega Evolve in battle."
},
"aloraichiumz": {
"name": "Aloraichium Z",
"desc": "If held by an Alolan Raichu with Thunderbolt, it can use Stoked Sparksurfer."
},
"altarianite": {
"name": "Altarianite",
"desc": "If held by an Altaria, this item allows it to Mega Evolve in battle."
},
"ampharosite": {
"name": "Ampharosite",
"desc": "If held by an Ampharos, this item allows it to Mega Evolve in battle."
},
"apicotberry": {
"name": "Apicot Berry",
"desc": "Raises holder's Sp. Def by 1 stage when at 1/4 max HP or less. Single use."
},
"armorfossil": {
"name": "Armor Fossil",
"desc": "Can be revived into Shieldon."
},
"aspearberry": {
"name": "Aspear Berry",
"desc": "Holder is cured if it is frozen. Single use."
},
"assaultvest": {
"name": "Assault Vest",
"desc": "Holder's Sp. Def is 1.5x, but it can only select damaging moves."
},
"audinite": {
"name": "Audinite",
"desc": "If held by an Audino, this item allows it to Mega Evolve in battle."
},
"babiriberry": {
"name": "Babiri Berry",
"desc": "Halves damage taken from a supereffective Steel-type attack. Single use."
},
"banettite": {
"name": "Banettite",
"desc": "If held by a Banette, this item allows it to Mega Evolve in battle."
},
"beastball": {
"name": "Beast Ball",
"desc": "A special Poke Ball designed to catch Ultra Beasts."
},
"beedrillite": {
"name": "Beedrillite",
"desc": "If held by a Beedrill, this item allows it to Mega Evolve in battle."
},
"belueberry": {
"name": "Belue Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"berryjuice": {
"name": "Berry Juice",
"desc": "Restores 20 HP when at 1/2 max HP or less. Single use."
},
"berrysweet": {
"name": "Berry Sweet",
"desc": "Evolves Milcery into Alcremie when held and spun around."
},
"bigroot": {
"name": "Big Root",
"desc": "Holder gains 1.3x HP from draining/Aqua Ring/Ingrain/Leech Seed/Strength Sap.",
"gen6": {
"desc": "Holder gains 1.3x HP from draining moves, Aqua Ring, Ingrain, and Leech Seed."
}
},
"bindingband": {
"name": "Binding Band",
"desc": "Holder's partial-trapping moves deal 1/6 max HP per turn instead of 1/8."
},
"blackbelt": {
"name": "Black Belt",
"desc": "Holder's Fighting-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Fighting-type attacks have 1.1x power."
}
},
"blacksludge": {
"name": "Black Sludge",
"desc": "Each turn, if holder is a Poison type, restores 1/16 max HP; loses 1/8 if not.",
"heal": " [POKEMON] restored a little HP using its Black Sludge!"
},
"blackglasses": {
"name": "Black Glasses",
"desc": "Holder's Dark-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Dark-type attacks have 1.1x power."
}
},
"blastoisinite": {
"name": "Blastoisinite",
"desc": "If held by a Blastoise, this item allows it to Mega Evolve in battle."
},
"blazikenite": {
"name": "Blazikenite",
"desc": "If held by a Blaziken, this item allows it to Mega Evolve in battle."
},
"blueorb": {
"name": "Blue Orb",
"desc": "If held by a Kyogre, this item triggers its Primal Reversion in battle."
},
"blukberry": {
"name": "Bluk Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"blunderpolicy": {
"name": "Blunder Policy",
"desc": "If the holder misses due to accuracy, its Speed is raised by 2 stages. Single use."
},
"bottlecap": {
"name": "Bottle Cap",
"desc": "Used for Hyper Training. One of a Pokemon's stats is calculated with an IV of 31."
},
"brightpowder": {
"name": "Bright Powder",
"desc": "The accuracy of attacks against the holder is 0.9x.",
"gen2": {
"desc": "An attack against the holder has its accuracy out of 255 lowered by 20."
}
},
"buggem": {
"name": "Bug Gem",
"desc": "Holder's first successful Bug-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Bug-type attack will have 1.5x power. Single use."
}
},
"bugmemory": {
"name": "Bug Memory",
"desc": "Holder's Multi-Attack is Bug type."
},
"buginiumz": {
"name": "Buginium Z",
"desc": "If holder has a Bug move, this item allows it to use a Bug Z-Move."
},
"burndrive": {
"name": "Burn Drive",
"desc": "Holder's Techno Blast is Fire type."
},
"cameruptite": {
"name": "Cameruptite",
"desc": "If held by a Camerupt, this item allows it to Mega Evolve in battle."
},
"cellbattery": {
"name": "Cell Battery",
"desc": "Raises holder's Attack by 1 if hit by an Electric-type attack. Single use."
},
"charcoal": {
"name": "Charcoal",
"desc": "Holder's Fire-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Fire-type attacks have 1.1x power."
}
},
"charizarditex": {
"name": "Charizardite X",
"desc": "If held by a Charizard, this item allows it to Mega Evolve in battle."
},
"charizarditey": {
"name": "Charizardite Y",
"desc": "If held by a Charizard, this item allows it to Mega Evolve in battle."
},
"chartiberry": {
"name": "Charti Berry",
"desc": "Halves damage taken from a supereffective Rock-type attack. Single use."
},
"cheriberry": {
"name": "Cheri Berry",
"desc": "Holder cures itself if it is paralyzed. Single use."
},
"cherishball": {
"name": "Cherish Ball",
"desc": "A rare Poke Ball that has been crafted to commemorate an occasion."
},
"chestoberry": {
"name": "Chesto Berry",
"desc": "Holder wakes up if it is asleep. Single use."
},
"chilanberry": {
"name": "Chilan Berry",
"desc": "Halves damage taken from a Normal-type attack. Single use."
},
"chilldrive": {
"name": "Chill Drive",
"desc": "Holder's Techno Blast is Ice type."
},
"chippedpot": {
"name": "Chipped Pot",
"desc": "Evolves Sinistea-Antique into Polteageist-Antique when used."
},
"choiceband": {
"name": "Choice Band",
"desc": "Holder's Attack is 1.5x, but it can only select the first move it executes."
},
"choicescarf": {
"name": "Choice Scarf",
"desc": "Holder's Speed is 1.5x, but it can only select the first move it executes."
},
"choicespecs": {
"name": "Choice Specs",
"desc": "Holder's Sp. Atk is 1.5x, but it can only select the first move it executes."
},
"chopleberry": {
"name": "Chople Berry",
"desc": "Halves damage taken from a supereffective Fighting-type attack. Single use."
},
"clawfossil": {
"name": "Claw Fossil",
"desc": "Can be revived into Anorith."
},
"cloversweet": {
"name": "Clover Sweet",
"desc": "Evolves Milcery into Alcremie when held and spun around."
},
"cobaberry": {
"name": "Coba Berry",
"desc": "Halves damage taken from a supereffective Flying-type attack. Single use."
},
"colburberry": {
"name": "Colbur Berry",
"desc": "Halves damage taken from a supereffective Dark-type attack. Single use."
},
"cornnberry": {
"name": "Cornn Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"coverfossil": {
"name": "Cover Fossil",
"desc": "Can be revived into Tirtouga."
},
"crackedpot": {
"name": "Cracked Pot",
"desc": "Evolves Sinistea into Polteageist when used."
},
"custapberry": {
"name": "Custap Berry",
"desc": "Holder moves first in its priority bracket when at 1/4 max HP or less. Single use.",
"activate": " [POKEMON] can act faster than normal, thanks to its Custap Berry!"
},
"damprock": {
"name": "Damp Rock",
"desc": "Holder's use of Rain Dance lasts 8 turns instead of 5."
},
"darkgem": {
"name": "Dark Gem",
"desc": "Holder's first successful Dark-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Dark-type attack will have 1.5x power. Single use."
}
},
"darkmemory": {
"name": "Dark Memory",
"desc": "Holder's Multi-Attack is Dark type."
},
"darkiniumz": {
"name": "Darkinium Z",
"desc": "If holder has a Dark move, this item allows it to use a Dark Z-Move."
},
"dawnstone": {
"name": "Dawn Stone",
"desc": "Evolves male Kirlia into Gallade and female Snorunt into Froslass when used.",
"shortDesc": "Evolves certain species of Pokemon when used."
},
"decidiumz": {
"name": "Decidium Z",
"desc": "If held by a Decidueye with Spirit Shackle, it can use Sinister Arrow Raid."
},
"deepseascale": {
"name": "Deep Sea Scale",
"desc": "If held by a Clamperl, its Sp. Def is doubled. Evolves Clamperl into Gorebyss when traded.",
"shortDesc": "If held by a Clamperl, its Sp. Def is doubled."
},
"deepseatooth": {
"name": "Deep Sea Tooth",
"desc": "If held by a Clamperl, its Sp. Atk is doubled. Evolves Clamperl into Huntail when traded.",
"shortDesc": "If held by a Clamperl, its Sp. Atk is doubled."
},
"destinyknot": {
"name": "Destiny Knot",
"desc": "If holder becomes infatuated, the other Pokemon also becomes infatuated."
},
"diancite": {
"name": "Diancite",
"desc": "If held by a Diancie, this item allows it to Mega Evolve in battle."
},
"diveball": {
"name": "Dive Ball",
"desc": "A Poke Ball that works especially well on Pokemon that live underwater."
},
"domefossil": {
"name": "Dome Fossil",
"desc": "Can be revived into Kabuto."
},
"dousedrive": {
"name": "Douse Drive",
"desc": "Holder's Techno Blast is Water type."
},
"dracoplate": {
"name": "Draco Plate",
"desc": "Holder's Dragon-type attacks have 1.2x power. Judgment is Dragon type."
},
"dragonfang": {
"name": "Dragon Fang",
"desc": "Holder's Dragon-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Dragon-type attacks have 1.1x power."
},
"gen2": {
"desc": "No competitive use."
}
},
"dragongem": {
"name": "Dragon Gem",
"desc": "Holder's first successful Dragon-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Dragon-type attack will have 1.5x power. Single use."
}
},
"dragonmemory": {
"name": "Dragon Memory",
"desc": "Holder's Multi-Attack is Dragon type."
},
"dragonscale": {
"name": "Dragon Scale",
"desc": "Evolves Seadra into Kingdra when traded.",
"gen2": {
"desc": "Holder's Dragon-type attacks have 1.1x power. Evolves Seadra (trade)."
}
},
"dragoniumz": {
"name": "Dragonium Z",
"desc": "If holder has a Dragon move, this item allows it to use a Dragon Z-Move."
},
"dreadplate": {
"name": "Dread Plate",
"desc": "Holder's Dark-type attacks have 1.2x power. Judgment is Dark type."
},
"dreamball": {
"name": "Dream Ball",
"desc": "A Poke Ball that makes it easier to catch wild Pokémon while they're asleep.",
"gen7": {
"desc": "A special Poke Ball that appears out of nowhere in a bag at the Entree Forest."
}
},
"dubiousdisc": {
"name": "Dubious Disc",
"desc": "Evolves Porygon2 into Porygon-Z when traded."
},
"durinberry": {
"name": "Durin Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"duskball": {
"name": "Dusk Ball",
"desc": "A Poke Ball that makes it easier to catch wild Pokemon at night or in caves."
},
"duskstone": {
"name": "Dusk Stone",
"desc": "Evolves Murkrow into Honchkrow, Misdreavus into Mismagius, Lampent into Chandelure, and Doublade into Aegislash when used.",
"shortDesc": "Evolves certain species of Pokemon when used."
},
"earthplate": {
"name": "Earth Plate",
"desc": "Holder's Ground-type attacks have 1.2x power. Judgment is Ground type."
},
"eeviumz": {
"name": "Eevium Z",
"desc": "If held by an Eevee with Last Resort, it can use Extreme Evoboost."
},
"ejectbutton": {
"name": "Eject Button",
"desc": "If holder survives a hit, it immediately switches out to a chosen ally. Single use.",
"end": " [POKEMON] is switched out with the Eject Button!"
},
"ejectpack": {
"name": "Eject Pack",
"desc": "If the holder's stat stages are lowered, it switches to a chosen ally. Single use."
},
"electirizer": {
"name": "Electirizer",
"desc": "Evolves Electabuzz into Electivire when traded."
},
"electricgem": {
"name": "Electric Gem",
"desc": "Holder's first successful Electric-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Electric-type attack will have 1.5x power. Single use."
}
},
"electricmemory": {
"name": "Electric Memory",
"desc": "Holder's Multi-Attack is Electric type."
},
"electricseed": {
"name": "Electric Seed",
"desc": "If the terrain is Electric Terrain, raises holder's Defense by 1 stage. Single use."
},
"electriumz": {
"name": "Electrium Z",
"desc": "If holder has an Electric move, this item allows it to use an Electric Z-Move."
},
"energypowder": {
"name": "Energy Powder",
"desc": "Restores 60 HP to one Pokemon.",
"gen6": {
"desc": "Restores 50 HP to one Pokemon but lowers Happiness."
}
},
"enigmaberry": {
"name": "Enigma Berry",
"desc": "Restores 1/4 max HP after holder is hit by a supereffective move. Single use.",
"gen3": {
"desc": "No competitive use."
}
},
"eviolite": {
"name": "Eviolite",
"desc": "If holder's species can evolve, its Defense and Sp. Def are 1.5x."
},
"expertbelt": {
"name": "Expert Belt",
"desc": "Holder's attacks that are super effective against the target do 1.2x damage."
},
"fairiumz": {
"name": "Fairium Z",
"desc": "If holder has a Fairy move, this item allows it to use a Fairy Z-Move."
},
"fairygem": {
"name": "Fairy Gem",
"desc": "Holder's first successful Fairy-type attack will have 1.3x power. Single use."
},
"fairymemory": {
"name": "Fairy Memory",
"desc": "Holder's Multi-Attack is Fairy type."
},
"fastball": {
"name": "Fast Ball",
"desc": "A Poke Ball that makes it easier to catch Pokemon which are quick to run away."
},
"fightinggem": {
"name": "Fighting Gem",
"desc": "Holder's first successful Fighting-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Fighting-type attack will have 1.5x power. Single use."
}
},
"fightingmemory": {
"name": "Fighting Memory",
"desc": "Holder's Multi-Attack is Fighting type."
},
"fightiniumz": {
"name": "Fightinium Z",
"desc": "If holder has a Fighting move, this item allows it to use a Fighting Z-Move."
},
"figyberry": {
"name": "Figy Berry",
"desc": "Restores 33% max HP at 1/4 max HP or less; confuses if -Atk Nature. Single use.",
"gen7": {
"desc": "Restores 1/2 max HP at 1/4 max HP or less; confuses if -Atk Nature. Single use."
},
"gen6": {
"desc": "Restores 1/8 max HP at 1/2 max HP or less; confuses if -Atk Nature. Single use."
}
},
"firegem": {
"name": "Fire Gem",
"desc": "Holder's first successful Fire-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Fire-type attack will have 1.5x power. Single use."
}
},
"firememory": {
"name": "Fire Memory",
"desc": "Holder's Multi-Attack is Fire type."
},
"firestone": {
"name": "Fire Stone",
"desc": "Evolves Vulpix into Ninetales, Growlithe into Arcanine, Eevee into Flareon, and Pansear into Simisear when used.",
"shortDesc": "Evolves certain species of Pokemon when used."
},
"firiumz": {
"name": "Firium Z",
"desc": "If holder has a Fire move, this item allows it to use a Fire Z-Move."
},
"fistplate": {
"name": "Fist Plate",
"desc": "Holder's Fighting-type attacks have 1.2x power. Judgment is Fighting type."
},
"flameorb": {
"name": "Flame Orb",
"desc": "At the end of every turn, this item attempts to burn the holder."
},
"flameplate": {
"name": "Flame Plate",
"desc": "Holder's Fire-type attacks have 1.2x power. Judgment is Fire type."
},
"floatstone": {
"name": "Float Stone",
"desc": "Holder's weight is halved."
},
"flowersweet": {
"name": "Flower Sweet",
"desc": "Evolves Milcery into Alcremie when held and spun around."
},
"flyinggem": {
"name": "Flying Gem",
"desc": "Holder's first successful Flying-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Flying-type attack will have 1.5x power. Single use."
}
},
"flyingmemory": {
"name": "Flying Memory",
"desc": "Holder's Multi-Attack is Flying type."
},
"flyiniumz": {
"name": "Flyinium Z",
"desc": "If holder has a Flying move, this item allows it to use a Flying Z-Move."
},
"focusband": {
"name": "Focus Band",
"desc": "Holder has a 10% chance to survive an attack that would KO it with 1 HP.",
"gen2": {
"desc": "Holder has a ~11.7% chance to survive an attack that would KO it with 1 HP."
},
"activate": " [POKEMON] hung on using its Focus Band!"
},
"focussash": {
"name": "Focus Sash",
"desc": "If holder's HP is full, will survive an attack that would KO it with 1 HP. Single use.",
"gen4": {
"desc": "If holder's HP is full, survives all hits of one attack with at least 1 HP. Single use."
},
"end": " [POKEMON] hung on using its Focus Sash!"
},
"fossilizedbird": {
"name": "Fossilized Bird",
"desc": "Can revive into Dracozolt with Fossilized Drake or Arctozolt with Fossilized Dino."
},
"fossilizeddino": {
"name": "Fossilized Dino",
"desc": "Can revive into Arctovish with Fossilized Fish or Arctozolt with Fossilized Bird."
},
"fossilizeddrake": {
"name": "Fossilized Drake",
"desc": "Can revive into Dracozolt with Fossilized Bird or Dracovish with Fossilized Fish."
},
"fossilizedfish": {
"name": "Fossilized Fish",
"desc": "Can revive into Dracovish with Fossilized Drake or Arctovish with Fossilized Dino."
},
"friendball": {
"name": "Friend Ball",
"desc": "A Poke Ball that makes caught Pokemon more friendly."
},
"fullincense": {
"name": "Full Incense",
"desc": "Holder moves last in its priority bracket."
},
"galaricacuff": {
"name": "Galarica Cuff",
"desc": "Evolves Galarian Slowpoke into Galarian Slowbro when used."
},
"galaricawreath": {
"name": "Galarica Wreath",
"desc": "Evolves Galarian Slowpoke into Galarian Slowking when used."
},
"galladite": {
"name": "Galladite",
"desc": "If held by a Gallade, this item allows it to Mega Evolve in battle."
},
"ganlonberry": {
"name": "Ganlon Berry",
"desc": "Raises holder's Defense by 1 stage when at 1/4 max HP or less. Single use."
},
"garchompite": {
"name": "Garchompite",
"desc": "If held by a Garchomp, this item allows it to Mega Evolve in battle."
},
"gardevoirite": {
"name": "Gardevoirite",
"desc": "If held by a Gardevoir, this item allows it to Mega Evolve in battle."
},
"gengarite": {
"name": "Gengarite",
"desc": "If held by a Gengar, this item allows it to Mega Evolve in battle."
},
"ghostgem": {
"name": "Ghost Gem",
"desc": "Holder's first successful Ghost-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Ghost-type attack will have 1.5x power. Single use."
}
},
"ghostmemory": {
"name": "Ghost Memory",
"desc": "Holder's Multi-Attack is Ghost type."
},
"ghostiumz": {
"name": "Ghostium Z",
"desc": "If holder has a Ghost move, this item allows it to use a Ghost Z-Move."
},
"glalitite": {
"name": "Glalitite",
"desc": "If held by a Glalie, this item allows it to Mega Evolve in battle."
},
"goldbottlecap": {
"name": "Gold Bottle Cap",
"desc": "Used for Hyper Training. All of a Pokemon's stats are calculated with an IV of 31."
},
"grassgem": {
"name": "Grass Gem",
"desc": "Holder's first successful Grass-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Grass-type attack will have 1.5x power. Single use."
}
},
"grassmemory": {
"name": "Grass Memory",
"desc": "Holder's Multi-Attack is Grass type."
},
"grassiumz": {
"name": "Grassium Z",
"desc": "If holder has a Grass move, this item allows it to use a Grass Z-Move."
},
"grassyseed": {
"name": "Grassy Seed",
"desc": "If the terrain is Grassy Terrain, raises holder's Defense by 1 stage. Single use."
},
"greatball": {
"name": "Great Ball",
"desc": "A high-performance Ball that provides a higher catch rate than a Poke Ball."
},
"grepaberry": {
"name": "Grepa Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"gripclaw": {
"name": "Grip Claw",
"desc": "Holder's partial-trapping moves always last 7 turns."
},
"griseousorb": {
"name": "Griseous Orb",
"desc": "If held by a Giratina, its Ghost- and Dragon-type attacks have 1.2x power.",
"gen4": {
"desc": "Can only be held by Giratina. Its Ghost- & Dragon-type attacks have 1.2x power."
}
},
"groundgem": {
"name": "Ground Gem",
"desc": "Holder's first successful Ground-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Ground-type attack will have 1.5x power. Single use."
}
},
"groundmemory": {
"name": "Ground Memory",
"desc": "Holder's Multi-Attack is Ground type."
},
"groundiumz": {
"name": "Groundium Z",
"desc": "If holder has a Ground move, this item allows it to use a Ground Z-Move."
},
"gyaradosite": {
"name": "Gyaradosite",
"desc": "If held by a Gyarados, this item allows it to Mega Evolve in battle."
},
"habanberry": {
"name": "Haban Berry",
"desc": "Halves damage taken from a supereffective Dragon-type attack. Single use."
},
"hardstone": {
"name": "Hard Stone",
"desc": "Holder's Rock-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Rock-type attacks have 1.1x power."
}
},
"healball": {
"name": "Heal Ball",
"desc": "A remedial Poke Ball that restores the caught Pokemon's HP and status problem."
},
"heatrock": {
"name": "Heat Rock",
"desc": "Holder's use of Sunny Day lasts 8 turns instead of 5."
},
"heavyball": {
"name": "Heavy Ball",
"desc": "A Poke Ball for catching very heavy Pokemon."
},
"heavydutyboots": {
"name": "Heavy-Duty Boots",
"desc": "When switching in, the holder is unaffected by hazards on its side of the field."
},
"helixfossil": {
"name": "Helix Fossil",
"desc": "Can be revived into Omanyte."
},
"heracronite": {
"name": "Heracronite",
"desc": "If held by a Heracross, this item allows it to Mega Evolve in battle."
},
"hondewberry": {
"name": "Hondew Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"houndoominite": {
"name": "Houndoominite",
"desc": "If held by a Houndoom, this item allows it to Mega Evolve in battle."
},
"iapapaberry": {
"name": "Iapapa Berry",
"desc": "Restores 33% max HP at 1/4 max HP or less; confuses if -Def Nature. Single use.",
"gen7": {
"desc": "Restores 1/2 max HP at 1/4 max HP or less; confuses if -Def Nature. Single use."
},
"gen6": {
"desc": "Restores 1/8 max HP at 1/2 max HP or less; confuses if -Def Nature. Single use."
}
},
"icegem": {
"name": "Ice Gem",
"desc": "Holder's first successful Ice-type attack will have 1.3x power. Single use.",
"gen5": {
"desc": "Holder's first successful Ice-type attack will have 1.5x power. Single use."
}
},
"icememory": {
"name": "Ice Memory",
"desc": "Holder's Multi-Attack is Ice type."
},
"icestone": {
"name": "Ice Stone",
"desc": "Evolves Alolan Sandshrew into Alolan Sandslash, Alolan Vulpix into Alolan Ninetales, Eevee into Glaceon, and Galarian Darumaka into Galarian Darmanitan when used.",
"shortDesc": "Evolves certain species of Pokemon when used.",
"gen7": {
"desc": "Evolves Alolan Sandshrew into Alolan Sandslash and Alolan Vulpix into Alolan Ninetales when used."
}
},
"icicleplate": {
"name": "Icicle Plate",
"desc": "Holder's Ice-type attacks have 1.2x power. Judgment is Ice type."
},
"iciumz": {
"name": "Icium Z",
"desc": "If holder has an Ice move, this item allows it to use an Ice Z-Move."
},
"icyrock": {
"name": "Icy Rock",
"desc": "Holder's use of Hail lasts 8 turns instead of 5."
},
"inciniumz": {
"name": "Incinium Z",
"desc": "If held by an Incineroar with Darkest Lariat, it can use Malicious Moonsault."
},
"insectplate": {
"name": "Insect Plate",
"desc": "Holder's Bug-type attacks have 1.2x power. Judgment is Bug type."
},
"ironball": {
"name": "Iron Ball",
"desc": "Holder is grounded, Speed halved. If Flying type, takes neutral Ground damage.",
"gen4": {
"desc": "Holder's Speed is halved and it becomes grounded."
}
},
"ironplate": {
"name": "Iron Plate",
"desc": "Holder's Steel-type attacks have 1.2x power. Judgment is Steel type."
},
"jabocaberry": {
"name": "Jaboca Berry",
"desc": "If holder is hit by a physical move, attacker loses 1/8 of its max HP. Single use."
},
"jawfossil": {
"name": "Jaw Fossil",
"desc": "Can be revived into Tyrunt."
},
"kasibberry": {
"name": "Kasib Berry",
"desc": "Halves damage taken from a supereffective Ghost-type attack. Single use."
},
"kebiaberry": {
"name": "Kebia Berry",
"desc": "Halves damage taken from a supereffective Poison-type attack. Single use."
},
"keeberry": {
"name": "Kee Berry",
"desc": "Raises holder's Defense by 1 stage after it is hit by a physical attack. Single use."
},
"kelpsyberry": {
"name": "Kelpsy Berry",
"desc": "Cannot be eaten by the holder. No effect when eaten with Bug Bite or Pluck."
},
"kangaskhanite": {
"name": "Kangaskhanite",
"desc": "If held by a Kangaskhan, this item allows it to Mega Evolve in battle."
},
"kingsrock": {
"name": "King's Rock",
"desc": "Holder's attacks without a chance to make the target flinch gain a 10% chance to make the target flinch. Evolves Poliwhirl into Politoed and Slowpoke into Slowking when traded.",
"shortDesc": "Holder's attacks without a chance to flinch gain a 10% chance to flinch."
},
"kommoniumz": {
"name": "Kommonium Z",
"desc": "If held by a Kommo-o with Clanging Scales, it can use Clangorous Soulblaze."
},
"laggingtail": {
"name": "Lagging Tail",
"desc": "Holder moves last in its priority bracket."
},
"lansatberry": {
"name": "Lansat Berry",
"desc": "Holder gains the Focus Energy effect when at 1/4 max HP or less. Single use."
},
"latiasite": {
"name": "Latiasite",
"desc": "If held by a Latias, this item allows it to Mega Evolve in battle."
},
"latiosite": {
"name": "Latiosite",
"desc": "If held by a Latios, this item allows it to Mega Evolve in battle."
},
"laxincense": {
"name": "Lax Incense",
"desc": "The accuracy of attacks against the holder is 0.9x.",
"gen3": {
"desc": "The accuracy of attacks against the holder is 0.95x."
}
},
"leafstone": {
"name": "Leaf Stone",
"desc": "Evolves Gloom into Vileplume, Weepinbell into Victreebel, Exeggcute into Exeggutor or Alolan Exeggutor, Eevee into Leafeon, Nuzleaf into Shiftry, and Pansage into Simisage when used.",
"shortDesc": "Evolves certain species of Pokemon when used.",
"gen7": {
"desc": "Evolves Gloom into Vileplume, Weepinbell into Victreebel, Exeggcute into Exeggutor or Alolan Exeggutor, Nuzleaf into Shiftry, and Pansage into Simisage when used."
}
},
"leek": {
"name": "Leek",
"desc": "If held by a Farfetch’d or Sirfetch’d, its critical hit ratio is raised by 2 stages."
},
"leftovers": {
"name": "Leftovers",
"desc": "At the end of every turn, holder restores 1/16 of its max HP.",
"heal": " [POKEMON] restored a little HP using its Leftovers!"
},
"leppaberry": {
"name": "Leppa Berry",
"desc": "Restores 10 PP to the first of the holder's moves to reach 0 PP. Single use.",
"activate": " [POKEMON] restored PP to its move [MOVE] using its Leppa Berry!"
},
"levelball": {
"name": "Level Ball",
"desc": "A Poke Ball for catching Pokemon that are a lower level than your own."
},
"liechiberry": {
"name": "Liechi Berry",
"desc": "Raises holder's Attack by 1 stage when at 1/4 max HP or less. Single use."
},
"lifeorb": {
"name": "Life Orb",
"desc": "Holder's attacks do 1.3x damage, and it loses 1/10 its max HP after the attack.",
"damage": " [POKEMON] lost some of its HP!"
},
"lightball": {
"name": "Light Ball",
"desc": "If held by a Pikachu, its Attack and Sp. Atk are doubled.",
"gen3": {
"desc": "If held by a Pikachu, its Special Attack is doubled."
}
},
"lightclay": {
"name": "Light Clay",
"desc": "Holder's use of Aurora Veil, Light Screen, or Reflect lasts 8 turns instead of 5.",
"gen6": {
"desc": "Holder's use of Light Screen or Reflect lasts 8 turns instead of 5."
}
},
"lopunnite": {
"name": "Lopunnite",
"desc": "If held by a Lopunny, this item allows it to Mega Evolve in battle."
},
"loveball": {
"name": "Love Ball",
"desc": "Poke Ball for catching Pokemon that are the opposite gender of your Pokemon."
},
"lovesweet": {
"name": "Love Sweet",
"desc": "Evolves Milcery into Alcremie when held and spun around."
},
"lucarionite": {
"name": "Lucarionite",
"desc": "If held by a Lucario, this item allows it to Mega Evolve in battle."
},
"luckypunch": {
"name": "Lucky Punch",
"desc": "If held by a Chansey, its critical hit ratio is raised by 2 stages.",
"gen2": {
"desc": "If held by a Chansey, its critical hit ratio is always at stage 2. (25% crit rate)"
}
},
"lumberry": {
"name": "Lum Berry",
"desc": "Holder cures itself if it has a non-volatile status or is confused. Single use."
},
"luminousmoss": {
"name": "Luminous Moss",
"desc": "Raises holder's Sp. Def by 1 stage if hit by a Water-type attack. Single use."
},
"lunaliumz": {
"name": "Lunalium Z",
"desc": "Lunala or Dawn Wings Necrozma with Moongeist Beam can use a special Z-Move."
},
"lureball": {
"name": "Lure Ball",
"desc": "A Poke Ball for catching Pokemon hooked by a Rod when fishing."
},
"lustrousorb": {
"name": "Lustrous Orb",
"desc": "If held by a Palkia, its Water- and Dragon-type attacks have 1.2x power."
},
"luxuryball": {
"name": "Luxury Ball",
"desc": "A comfortable Poke Ball that makes a caught wild Pokemon quickly grow friendly."
},
"lycaniumz": {
"name": "Lycanium Z",
"desc": "If held by a Lycanroc forme with Stone Edge, it can use Splintered Stormshards."
},
"machobrace": {
"name": "Macho Brace",
"desc": "Holder's Speed is halved. The Klutz Ability does not ignore this effect."
},
"magmarizer": {
"name": "Magmarizer",
"desc": "Evolves Magmar into Magmortar when traded."
},
"magnet": {
"name": "Magnet",
"desc": "Holder's Electric-type attacks have 1.2x power.",
"gen3": {
"desc": "Holder's Electric-type attacks have 1.1x power."
}
},
"magoberry": {
"name": "Mago Berry",
"desc": "Restores 33% max HP at 1/4 max HP or less; confuses if -Spe Nature. Single use.",
"gen7": {
"desc": "Restores 1/2 max HP at 1/4 max HP or less; confuses if -Spe Nature. Single use."