-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.json
2797 lines (2797 loc) · 95.6 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
{
"item": [
{
"id": 0,
"name": "Abyssal Scepter",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+10% cooldown reduction",
"+300 health",
"+100% base health regeneration",
"+65 magic resistance"
],
"consume": "undefined",
"file": "Abyssal_Scepter_item_HD.webp"
},
{
"id": 1,
"name": "Adaptive Helm",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: Taking magic damage from a spell or effect reduces all subsequent magic damage taken from that source by 20% for 4 seconds. Multiple sources of magic damage can have this effect active at any one time and the duration is tracked separately per source.",
"stats": [
"+10% cooldown reduction",
"+350 health",
"+100% base health regeneration",
"+55 magic resistance"
],
"consume": "undefined",
"file": "Adaptive_Helm_item_HD.webp"
},
{
"id": 2,
"name": "Ancient Coin",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Favor: Nearby enemy minions killed by an ally (excluding yourself) will sometimes drop a gold coin that can be picked up to either grant 28 or restore 6% missing mana (minimum 10). Coin can only drop if an allied champion is nearby. Siege minions always drop a coin upon death as long as you did not kill them.",
"stats": [
"+5% cooldown reduction",
"+5 movement speed",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Ancient_Coin_item_HD.webp"
},
{
"id": 3,
"name": "Ancient Pocket Watch",
"alternativeName": [],
"active": "Unique: Blinks your champion to the target location (120 second cooldown).",
"passive": "undefined",
"stats": [
"+5 movement speed"
],
"consume": "undefined",
"file": "Ancient_Pocket_Watch_item.webp"
},
{
"id": 4,
"name": "Arcane Helix",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: Heal for 30% of mana spent.",
"stats": [
"+10% cooldown reduction",
"+400 health",
"+300 mana"
],
"consume": "undefined",
"file": "Arcane_Helix_item.webp"
},
{
"id": 5,
"name": "Archangel's Staff",
"alternativeName": [
"Archangel Staff",
"Archangels Staff"
],
"active": "undefined",
"passive": "Unique – Awe: Grants ability haste equal to 0.5% bonus mana.",
"stats": [
"+60 ability power",
"+200 health",
"+500 mana"
],
"consume": "undefined",
"file": "Archangel%27s_Staff_item_old2.webp"
},
{
"id": 6,
"name": "Athene's Unholy Grail",
"alternativeName": [
"Athene Unholy Grail",
"Athenes Unholy Grail"
],
"active": "undefined",
"passive": "Unique: Gain 35% of the pre-mitigation damage dealt to champions as Blood Charges, up to 100 − 250 (based on level). Healing or shielding an ally (excluding yourself) consumes charges equal to 100% of the heal or shield, to heal them, up to the original effect amount.",
"stats": [
"+30 ability power",
"+10% cooldown reduction",
"+100% base mana regeneration",
"+30 magic resistance"
],
"consume": "undefined",
"file": "Athene%27s_Unholy_Grail_item_HD.webp"
},
{
"id": 7,
"name": "Atma's Impaler",
"alternativeName": [
"Atma Impaler",
"Atmas Impaler"
],
"active": "undefined",
"passive": "Unique: Gain bonus attack damage equal to 1.5% of your maximum health.",
"stats": [
"+15% critical strike chance",
"+45 armor"
],
"consume": "undefined",
"file": "Atma%27s_Impaler_item.webp"
},
{
"id": 8,
"name": "Avarice Blade",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Avarice: Gain 3 per 10 seconds",
"stats": [
"+10% critical strike chance"
],
"consume": "undefined",
"file": "Avarice_Blade_item.webp"
},
{
"id": 9,
"name": "B. F. Sword",
"alternativeName": [
"B F Sword"
],
"active": "undefined",
"passive": "undefined",
"stats": [
"+40 attack damage"
],
"consume": "undefined",
"file": "B._F._Sword_item_old.webp"
},
{
"id": 10,
"name": "Bag of Tea",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [],
"consume": "Restores 400 health and 200 mana over 10 seconds. This can only be used after killing a champion.",
"file": "Bag_of_Tea_item.webp"
},
{
"id": 11,
"name": "Bami's Cinder",
"alternativeName": [
"Bami Cinder",
"Bamis Cinder"
],
"active": "undefined",
"passive": "Unique – Immolate: Taking or dealing damage activates this passive for 3 seconds. Deal 12 (+ 1% bonus health) magic damage every second to enemies within 325 (+ 100% bonus size) units, increased by 25% against minions and monsters. This executes minions that would be killed by one more tick of damage.",
"stats": [
"+300 health"
],
"consume": "undefined",
"file": "Bami%27s_Cinder_item_old.webp"
},
{
"id": 12,
"name": "Banner of Command",
"alternativeName": [],
"active": "Unique – Promote: Strengthens the target lane minion, increasing their stats by 100%, granting them 100% bonus damage against turrets, and reducing their damage taken from champions by 40% (120 second cooldown; 1200 range).",
"passive": "Unique – Point Runner: Builds up to 20% bonus movement speed over 2 seconds while near turrets, fallen turrets or Void Gates.",
"stats": [
"+125% base health regeneration",
"+60 armor",
"+30 magic resistance"
],
"consume": "undefined",
"file": "Banner_of_Command_item_HD.webp"
},
{
"id": 13,
"name": "Banshee's Veil",
"alternativeName": [
"Banshee Veil",
"Banshees Veil"
],
"active": "undefined",
"passive": "Unique – Annul: Grants a spell shield that blocks the next hostile ability (40 (restarts upon taking damage from champions) second cooldown).",
"stats": [
"+80 ability power",
"+10 ability haste",
"+45 magic resistance"
],
"consume": "undefined",
"file": "Banshee%27s_Veil_item_old.webp"
},
{
"id": 14,
"name": "Bilgewater Cutlass",
"alternativeName": [],
"active": "Unique: Impairs the target enemy champion, dealing 100 magic damage and slowing them by 25% for 2 seconds (90 second cooldown; 550 range).",
"passive": "undefined",
"stats": [
"+25 attack damage",
"+10% life steal"
],
"consume": "undefined",
"file": "Bilgewater_Cutlass_item.webp"
},
{
"id": 15,
"name": "Blade of the Ruined King",
"alternativeName": [
"Blade of Ruined King",
"Blade of Ruined King"
],
"active": "undefined",
"passive": "Unique – Mist's Edge: Basic attacks deal ( 12% / 8%) of the target's current health bonus physical damage on-hit, with a minimum of 15 against all units and a maximum of 60 against minions and monsters.",
"stats": [
"+40 attack damage",
"+25% attack speed",
"+8% life steal"
],
"consume": "undefined",
"file": "Blade_of_the_Ruined_King_item_old.webp"
},
{
"id": 16,
"name": "Blasting Wand",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+40 ability power"
],
"consume": "undefined",
"file": "Blasting_Wand_item_old.webp"
},
{
"id": 17,
"name": "Blink Dagger",
"alternativeName": [],
"active": "Unique: Blinks your champion to a target location after a cast time. Any damage taken during the cast time will interrupt the cast (120 second cooldown).",
"passive": "undefined",
"stats": [],
"consume": "undefined",
"file": "Blink_Dagger_item.webp"
},
{
"id": 18,
"name": "Bloodthirster",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Ichorshield: Convert the healing received from life steal in excess of maximum health into a shield for up to 50 − 320 (based on level), which slowly decays after not dealing or taking damage for 25 seconds.",
"stats": [
"+55 attack damage",
"+20% critical strike chance",
"+18% life steal"
],
"consume": "undefined",
"file": "Bloodthirster_item_old.webp"
},
{
"id": 19,
"name": "Brawler's Gloves",
"alternativeName": [
"Brawler Gloves",
"Brawlers Gloves"
],
"active": "undefined",
"passive": "undefined",
"stats": [
"+10% critical strike chance"
],
"consume": "undefined",
"file": "Brawler%27s_Gloves_item_HD.webp"
},
{
"id": 20,
"name": "Breathstealer",
"alternativeName": [],
"active": "Unique: Reduces target enemy champion's attack damage and ability power by 70% for 4 seconds (90 second cooldown; 600 range).",
"passive": "Unique: +15% cooldown reduction",
"stats": [
"+95 ability power",
"+70 armor"
],
"consume": "undefined",
"file": "Breathstealer_item.webp"
},
{
"id": 21,
"name": "Catalyst of Aeons",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Eternity: Restore mana equal to 15% of damage taken from champions, and health equal to 20% of mana spent, up to 15 health per cast. Toggled abilities can only heal for up to 15 per second.",
"stats": [
"+225 health",
"+300 mana"
],
"consume": "undefined",
"file": "Catalyst_of_Aeons_item_HD.webp"
},
{
"id": 22,
"name": "Chain Vest",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+40 armor"
],
"consume": "undefined",
"file": "Chain_Vest_item_old2.webp"
},
{
"id": 23,
"name": "Chalice of Harmony",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Harmony: Gain 25% base health regeneration for every additional 25% base mana regeneration.",
"stats": [
"+50% base mana regeneration",
"+30 magic resistance"
],
"consume": "undefined",
"file": "Chalice_of_Harmony_item.webp"
},
{
"id": 24,
"name": "Cloak and Dagger",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+20% attack speed",
"+20% critical strike chance",
"+35% tenacity"
],
"consume": "undefined",
"file": "Cloak_and_Dagger_item.webp"
},
{
"id": 25,
"name": "Cloak of Agility",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+15% critical strike chance"
],
"consume": "undefined",
"file": "Cloak_of_Agility_item_old.webp"
},
{
"id": 26,
"name": "Cloth Armor",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+15 armor"
],
"consume": "undefined",
"file": "Cloth_Armor_item_old2.webp"
},
{
"id": 27,
"name": "Crystalline Bracer",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+200 health",
"+100% base health regeneration"
],
"consume": "undefined",
"file": "Crystalline_Bracer_item_old.webp"
},
{
"id": 28,
"name": "Crystalline Flask",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: Holds 3 charges and refills upon visiting the shop.",
"stats": [],
"consume": "Consumes a charge to restore 120 health and 60 mana over 12 seconds.",
"file": "Crystalline_Flask_item.webp"
},
{
"id": 29,
"name": "Dagger",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+12% attack speed"
],
"consume": "undefined",
"file": "Dagger_item_old2.webp"
},
{
"id": 30,
"name": "Dead Man's Plate",
"alternativeName": [
"Dead Man Plate",
"Dead Mans Plate"
],
"active": "undefined",
"passive": "Unique – Shipwrecker: While moving, generates 7 stacks of Momentum each 0.25 seconds, granting up to 40 bonus movement speed at 100 stacks after 3.75 seconds of moving. Momentum decays by 15 every 0.25 seconds while immobilized. Basic attacks consume all stacks on-hit to deal 0 − 40 (based on Momentum) (+ 0% − 100% (based on Momentum) base AD) bonus physical damage. At maximum stacks, the target is also slowed by 50% for 1 second.",
"stats": [
"+300 health",
"+45 armor",
"+5% movement speed"
],
"consume": "undefined",
"file": "Dead_Man%27s_Plate_item_old.webp"
},
{
"id": 31,
"name": "Deathfire Grasp",
"alternativeName": [],
"active": "Unique: Deals magic damage equal to 15% of the target enemy champion's maximum health and increases all subsequent magic damage taken by the target by 20% for 4 seconds (90 second cooldown; 750 range).",
"passive": "undefined",
"stats": [
"+120 ability power",
"+10% cooldown reduction"
],
"consume": "undefined",
"file": "Deathfire_Grasp_item_HD.webp"
},
{
"id": 32,
"name": "Dervish Blade",
"alternativeName": [],
"active": "Unique – Quicksilver: Removes all debuffs from your champion. Melee champions also gain 50% bonus movement speed for 1 second (90 second cooldown).",
"passive": "undefined",
"stats": [
"+10% cooldown reduction",
"+50% attack speed",
"+45 magic resistance"
],
"consume": "undefined",
"file": "Dervish_Blade_item.webp"
},
{
"id": 33,
"name": "Doran's Blade",
"alternativeName": [
"Doran Blade",
"Dorans Blade"
],
"active": "undefined",
"passive": "Unique – Warmonger: +2.5% omnivamp",
"stats": [
"+8 attack damage",
"+80 health"
],
"consume": "undefined",
"file": "Doran%27s_Blade_item_old.webp"
},
{
"id": 34,
"name": "Doran's Ring",
"alternativeName": [
"Doran Ring",
"Dorans Ring"
],
"active": "undefined",
"passive": "Unique – Focus: Basic attacks deal 5 bonus physical damage on-hit against minions.",
"stats": [
"+15 ability power",
"+70 health"
],
"consume": "undefined",
"file": "Doran%27s_Ring_item_old.webp"
},
{
"id": 35,
"name": "Doran's Shield",
"alternativeName": [
"Doran Shield",
"Dorans Shield"
],
"active": "undefined",
"passive": "Unique – Focus: Basic attacks deal 5 bonus physical damage on-hit against minions.",
"stats": [
"+80 health",
"+6 health per 5 seconds"
],
"consume": "undefined",
"file": "Doran's_Shield_item_old.webp"
},
{
"id": 36,
"name": "Eleisa's Miracle",
"alternativeName": [
"Eleisa Miracle",
"Eleisas Miracle"
],
"active": "undefined",
"passive": "Unique – Aid: Heal, Clarity and Clairvoyance summoner spell cooldowns are reduced by 25%.",
"stats": [
"+10 health per 5 seconds",
"+15 mana per 5 seconds"
],
"consume": "undefined",
"file": "Eleisa%27s_Miracle_item.webp"
},
{
"id": 37,
"name": "Elixir of Agility",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [],
"consume": "Grants 12% − 22% (based on level) bonus attack speed and 8% critical strike chance for 240 seconds.",
"file": "Elixir_of_Agility_item.webp"
},
{
"id": 38,
"name": "Elixir of Brilliance",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [],
"consume": "Grants 25 − 40 (based on level) ability power and 10% cooldown reduction for 180 seconds.",
"file": "Elixir_of_Brilliance_item.webp"
},
{
"id": 39,
"name": "Elixir of Fortitude",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [],
"consume": "Grants 15 attack damage and 120 − 235 (based on level) bonus health for 180 seconds, as well as healing for the same amount of health gained.",
"file": "Elixir_of_Fortitude_item.webp"
},
{
"id": 40,
"name": "Elixir of Ruin",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Siege Commander: Grants nearby minions 15% increased damage to turrets and bonus movement speed based on your movement speed.",
"stats": [],
"consume": "Grants 250 bonus health, 15% increased damage to turrets, and Siege Commander for 180 seconds.",
"file": "Elixir_of_Ruin_item_HD.webp"
},
{
"id": 41,
"name": "Emblem of Valor",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+20 armor"
],
"consume": "undefined",
"file": "Emblem_of_Valor_item.webp"
},
{
"id": 42,
"name": "Essence Reaver",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Spellblade: After using an ability, your next basic attack within 10 seconds deals 100% base AD (+ 40% bonus AD) bonus physical damage on-hit and restores mana equal to 40% base AD (+ 16% bonus AD) (1.5 (begins after using the empowered attack) second cooldown).",
"stats": [
"+45 attack damage",
"+20 ability haste",
"+20% critical strike chance"
],
"consume": "undefined",
"file": "Essence_Reaver_item_old.webp"
},
{
"id": 43,
"name": "Executioner's Calling",
"alternativeName": [
"Executioner Calling",
"Executioners Calling"
],
"active": "undefined",
"passive": "Unique – Rend: Dealing physical damage to enemy champions inflicts them with 25% Grievous Wounds for 3 seconds.",
"stats": [
"+20 attack damage"
],
"consume": "undefined",
"file": "Executioner%27s_Calling_item_old.webp"
},
{
"id": 44,
"name": "Eye of the Equinox",
"alternativeName": [
"Eye of Equinox",
"Eye of Equinox"
],
"active": "Unique – Warding: Consumes a charge to place a Stealth Ward at the target location, which grants sight of the surrounding area. Charges refill upon visiting the shop (4 charges; 600 range).",
"passive": "Unique – Spoils of War: Melee basic attacks execute minions below 340 − 680 (based on level) health. Attacks that trigger Spoils of War gain 150 bonus range and slightly increased attack speed. Killing a minion by any means heals you and the nearest allied champion for 50 (+ 2% of missing health) and grants them the kill gold. These effects require an allied champion within 1050 units of the user (20 seconds recharge time; 4 charges).",
"stats": [
"+10% cooldown reduction",
"+500 health",
"+200% base health regeneration",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Eye_of_the_Equinox_item_HD.webp"
},
{
"id": 45,
"name": "Eye of the Oasis",
"alternativeName": [
"Eye of Oasis",
"Eye of Oasis"
],
"active": "Unique – Warding: Consumes a charge to place a Stealth Ward at the target location, which grants sight of the surrounding area. Charges refill upon visiting the shop (4 charges; 600 range).",
"passive": "Unique – Favor: Nearby enemy minions killed by an ally (excluding yourself) will sometimes drop a gold coin that can be picked up to either grant 40 or restore 6% missing mana (minimum 10). Siege minions always drop a coin upon death as long as you did not kill them.",
"stats": [
"+10% cooldown reduction",
"+200 health",
"+125% base health regeneration",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Eye_of_the_Oasis_item_HD.webp"
},
{
"id": 46,
"name": "Face of the Mountain",
"alternativeName": [
"Face of Mountain",
"Face of Mountain"
],
"active": "Unique – Deadly Phalanx: Shield yourself and an ally equal to 10% of your maximum health for 4 seconds. Afterwards, the shield is consumed to slow nearby enemies by 40% for 2 seconds (60 second cooldown).",
"passive": "Unique – Spoils of War: Melee basic attacks execute minions below 340 − 680 (based on level) health. Attacks that trigger Spoils of War gain 150 bonus range and slightly increased attack speed. Killing a minion by any means heals you and the nearest allied champion for 50 (+ 2% of missing health) and grants them the kill gold. These effects require an allied champion within 1050 units of the user (20 seconds recharge time; 4 charges).",
"stats": [
"+10% cooldown reduction",
"+450 health",
"+100% base health regeneration",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Face_of_the_Mountain_item.webp"
},
{
"id": 47,
"name": "Face of the Mountain",
"alternativeName": [
"Face of Mountain",
"Face of Mountain"
],
"active": "Unique – Deadly Phalanx: Shield yourself and an ally equal to 10% of your maximum health for 4 seconds. Afterwards, the shield is consumed to slow nearby enemies by 40% for 2 seconds (60 second cooldown).",
"passive": "Unique – Spoils of War: Melee basic attacks execute minions below 340 − 680 (based on level) health. Attacks that trigger Spoils of War gain 150 bonus range and slightly increased attack speed. Killing a minion by any means heals you and the nearest allied champion for 50 (+ 2% of missing health) and grants them the kill gold. These effects require an allied champion within 1050 units of the user (20 seconds recharge time; 4 charges).",
"stats": [
"+10% cooldown reduction",
"+450 health",
"+100% base health regeneration",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Face_of_the_Mountain_item_HD.webp"
},
{
"id": 48,
"name": "Feral Flare",
"alternativeName": [],
"active": "Unique: Places a Stealth Ward at the target location that grants sight of the surrounding area and lasts for 180 seconds (180 second cooldown; 1000 range).",
"passive": "Unique – Maim: Gain a Feral stack for each champion takedown scored and large monster killed. Basic attacks deal 25 (+ 1 per Feral stack) bonus magic damage and heal for 10. Minions and monsters take 75 (+ 3 per Feral stack) bonus magic damage.",
"stats": [
"+12 attack damage",
"+30% attack speed"
],
"consume": "undefined",
"file": "Feral_Flare_item.webp"
},
{
"id": 49,
"name": "Fiendish Codex",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+35 ability power",
"+10 ability haste"
],
"consume": "undefined",
"file": "Fiendish_Codex_item_old.webp"
},
{
"id": 50,
"name": "Forbidden Idol",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [
"+50% base mana regeneration",
"+8% heal and shield power"
],
"consume": "undefined",
"file": "Forbidden_Idol_item_old.webp"
},
{
"id": 51,
"name": "Force of Nature",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Absorb: Taking magic damage from champions grants a stack of Steadfast for 7 seconds, stacking up to 6 times with the duration refreshing on subsequent magic damage from them and whenever dealing damage to them. Becoming immobilized by an enemy champion grants 2 stacks and also refreshes the duration. Damaging basic attacks and spells per cast instance can only grant 1 stack of Steadfast every 1 second.",
"stats": [
"+350 health",
"+70 magic resistance",
"+5% movement speed"
],
"consume": "undefined",
"file": "Force_of_Nature_item_old.webp"
},
{
"id": 52,
"name": "Frost Queen's Claim",
"alternativeName": [
"Frost Queen Claim",
"Frost Queens Claim"
],
"active": "Unique: Summon 2 icy ghosts for 6 seconds that seek out enemy champions within a 4500 radius. Ghosts reveal enemies on contact and slow them by 40% for 2 - 5 seconds (90 second cooldown).",
"passive": "Unique – Tribute: Grants a charge every 10 seconds, up to 3 charges. Damaging spells and attacks against champions and buildings consume a charge, up to one per attack or cast. Consuming a charge deals them 18 bonus magic damageand grants 15.",
"stats": [
"+60 ability power",
"+10% cooldown reduction",
"+50% base mana regeneration",
"+ 2 per 10 seconds"
],
"consume": "undefined",
"file": "Frost_Queen%27s_Claim_item.webp"
},
{
"id": 53,
"name": "Frozen Heart",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Rock Solid: Every incoming instance of post-mitigation basic damage is reduced by 7 (+ 3.5 per 1000 maximum health), maximum 40% reduction each.",
"stats": [
"+20 ability haste",
"+400 mana",
"+80 armor"
],
"consume": "undefined",
"file": "Frozen_Heart_item_old.webp"
},
{
"id": 54,
"name": "Frozen Mallet",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Icy: Basic attacks slow the target on-hit by ( 40% / 20%) for 1.5 seconds, refreshing with every hit.",
"stats": [
"+30 attack damage",
"+700 health"
],
"consume": "undefined",
"file": "Frozen_Mallet_item_HD.webp"
},
{
"id": 55,
"name": "Gargoyle Stoneplate",
"alternativeName": [],
"active": "Unique – Monolith: Gain a shield for 100 (+ 90% bonus health), decaying over 2.5 seconds, and 25% increased size while active (90 second cooldown).",
"passive": "Unique – Fortify: Increase your bonus armor and bonus magic resistance by 5% for 6 seconds when a champion deals damage to you, stacks up to 5 times for a maximum of 25%. This stacks once per unique champion.",
"stats": [
"+15 ability haste",
"+60 armor",
"+60 magic resistance"
],
"consume": "undefined",
"file": "Gargoyle_Stoneplate_item_old.webp"
},
{
"id": 56,
"name": "Giant Slayer",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Giant Slayer: Deal 0% − 10% (based on health difference) bonus physical damage against enemy champions with greater maximum health than you.",
"stats": [
"+10 attack damage"
],
"consume": "undefined",
"file": "Giant_Slayer_item_HD.webp"
},
{
"id": 57,
"name": "Glacial Shroud",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: +10% cooldown reduction",
"stats": [
"+250 mana",
"+20 armor"
],
"consume": "undefined",
"file": "Glacial_Shroud_item_HD.webp"
},
{
"id": 58,
"name": "Glacial Shroud",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: +10% cooldown reduction",
"stats": [
"+250 mana",
"+20 armor"
],
"consume": "undefined",
"file": "Glacial_Shroud_item_old2.webp"
},
{
"id": 59,
"name": "Guardian Angel",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Rebirth: Upon taking lethal damage, enter resurrection for 4 seconds, during which you are invulnerable, untargetable, and unable to act, and afterwards heal for 50% of base health and restore 30% of maximum mana (300 (starts after resurrecting) second cooldown).",
"stats": [
"+40 attack damage",
"+40 armor"
],
"consume": "undefined",
"file": "Guardian_Angel_item_old.webp"
},
{
"id": 60,
"name": "Guinsoo's Rageblade",
"alternativeName": [
"Guinsoo Rageblade",
"Guinsoos Rageblade"
],
"active": "undefined",
"passive": "Unique – Wrath: Convert every 1% critical strike chance into 2 bonus physical damage on-hit, capped at 100% critical strike chance, for a maximum of 200 bonus physical damage on-hit. This damage is affected by critical strike modifiers.",
"stats": [
"+45% attack speed",
"+20% critical strike chance"
],
"consume": "undefined",
"file": "Guinsoo%27s_Rageblade_item_old.webp"
},
{
"id": 61,
"name": "Haunting Guise",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Madness: Damaging an enemy champion generates 1 stack every second for the next 4 seconds. Deal 2% increased damage for each stack, up to a maximum of 10%.",
"stats": [
"+35 ability power",
"+200 health"
],
"consume": "undefined",
"file": "Haunting_Guise_item_HD.webp"
},
{
"id": 62,
"name": "Health Potion",
"alternativeName": [],
"active": "undefined",
"passive": "undefined",
"stats": [],
"consume": "Regenerates 4 health every 0.5 seconds over 15 seconds, restoring a total of 120 health.",
"file": "Health_Potion_item.webp"
},
{
"id": 63,
"name": "Heart of Gold",
"alternativeName": [],
"active": "undefined",
"passive": "Unique: + 5 per 10 seconds.",
"stats": [
"+200 health"
],
"consume": "undefined",
"file": "Heart_of_Gold_item.webp"
},
{
"id": 64,
"name": "Heart of Targon",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Spoils of War: Grants a charge every 20 seconds, up to 3 charges. Melee basic attacks can consume one charge to execute minions below 240 − 920 (based on level) (+ 100% AD) health. Killing a minion by any means with a charge heals you and the nearest allied champion for 10 − 60 (based on missing health), reduced by 50% if the user is ranged, and grants them kill gold. These effects require an allied champion within 1050 units of the user.",
"stats": [
"+60 health",
"+50% base health regeneration",
"+ 5 per 10 seconds"
],
"consume": "undefined",
"file": "Heart_of_Targon_item.webp"
},
{
"id": 65,
"name": "Hextech GLP-800",
"alternativeName": [],
"active": "Unique – Frost Bolt: After a 0.25-second delay, fires a spray of five icy bolts in a cone over 0.2 seconds, with each bolt dealing 100 − 200 (based on level) (+ 20% AP) magic damage and slowing by 65%, decaying over 2 seconds (40 (shared with other Hextech items) second cooldown).",
"passive": "Unique – Haste: Grants an additional 10% cooldown reduction.",
"stats": [
"+80 ability power",
"+10% cooldown reduction",
"+600 mana"
],
"consume": "undefined",
"file": "Hextech_GLP-800_item_HD.webp"
},
{
"id": 66,
"name": "Hextech Gunblade",
"alternativeName": [],
"active": "Unique – Lightning Bolt: Shocks the target enemy champion, dealing 175 − 253 (based on level) (+ 30% AP) magic damage and slowing them by 40% for 2 seconds (40 (shared with other Hextech items) second cooldown; 700 range).",
"passive": "Unique: Heals for 15% of all damage dealt (including true damage). Area damage and pet damage only heal 5% for every unit affected.",
"stats": [
"+80 ability power",
"+40 attack damage"
],
"consume": "undefined",
"file": "Hextech_Gunblade_item_HD.webp"
},
{
"id": 67,
"name": "Hextech Protobelt-01",
"alternativeName": [],
"active": "Unique – Fire Bolt: Dash in the target direction, dealing 75 − 150 (based on level) (+ 25% AP) magic damage to enemies in your way and behind you, after which you fire a nova of 7 rockets in a cone, with each one dealing the same magic damage. Against champions and monsters, each instance of damage beyond the first deals 90% reduced damage (40 (shared with other Hextech items) second cooldown).Fire Bolt resets the user's basic attack timer.",
"passive": "undefined",
"stats": [
"+60 ability power",
"+10% cooldown reduction",
"+300 health"
],
"consume": "undefined",
"file": "Hextech_Protobelt-01_item_HD.webp"
},
{
"id": 68,
"name": "Hextech Revolver",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Magic Bolt: Damaging an enemy champion with a basic attack shocks them for 50 − 125 (based on level) bonus magic damage on-hit (40 (shared with other Hextech items) second cooldown).",
"stats": [
"+40 ability power"
],
"consume": "undefined",
"file": "Hextech_Revolver_item_HD.webp"
},
{
"id": 69,
"name": "Hunter's Machete",
"alternativeName": [
"Hunter Machete",
"Hunters Machete"
],
"active": "undefined",
"passive": "Unique – Nail: Basic attacks against monsters deal 35 bonus physical damage on-hit. Healing provided by this item is increased by 50% while below 30% maximum health.",
"stats": [
"+10% life steal vs. monsters"
],
"consume": "undefined",
"file": "Hunter%27s_Machete_item.webp"
},
{
"id": 70,
"name": "Hunter's Potion",
"alternativeName": [
"Hunter Potion",
"Hunters Potion"
],
"active": "undefined",
"passive": "Holds up to 5 charges that refill upon visiting the store. Killing large monsters grants one charge.",
"stats": [],
"consume": "Regenerates 3.75 health and 2.18 mana every 0.5 seconds over 8 seconds, restoring a total of 60 health and 35 mana.",
"file": "Hunter%27s_Potion_item_HD.webp"
},
{
"id": 71,
"name": "Hunter's Talisman",
"alternativeName": [
"Hunter Talisman",
"Hunters Talisman"
],
"active": "undefined",
"passive": "Unique – Tooth: Damaging a monster by most means sets it aflame, dealing an additional 60 magic damage over 5 seconds while causing you to heal for 6 per second for every enemy being burned. Healing provided by this item is increased by 50% when below 30% maximum health. While in the jungle or river, regenerate 0 − 8 (based on missing mana) mana per second.",
"stats": [],
"consume": "undefined",
"file": "Hunter%27s_Talisman_item_HD.webp"
},
{
"id": 72,
"name": "Iceborn Gauntlet",
"alternativeName": [],
"active": "undefined",
"passive": "Unique – Spellblade: After using an ability, your next basic attack within 10 seconds deals 100% base AD bonus physical damage on-hit (1.5 second cooldown).",
"stats": [