This repository has been archived by the owner on May 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitems.json
8915 lines (8915 loc) · 223 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
{
"blink": {
"active": [
{
"name": "Blink",
"desc": "Teleport to a target point up to 1200 units away. \n\nBlink Dagger cannot be used for 3 seconds after taking damage from an enemy hero or Roshan."
}
],
"id": 1,
"img": "/apps/dota2/images/items/blink_lg.png?t=1582327326663",
"dname": "Blink Dagger",
"qual": "component",
"cost": 2250,
"notes": "Self-casting will cause you to teleport in the direction of your team's fountain.\nIf you used Blink to teleport to a distance over the maximum range, you'll be teleported 4/5 of the maximum range instead.",
"attrib": [],
"mc": false,
"cd": 15,
"lore": "The fabled dagger used by the fastest assassin ever to walk the lands.",
"components": null,
"created": false,
"charges": false
},
"blades_of_attack": {
"id": 2,
"img": "/apps/dota2/images/items/blades_of_attack_lg.png?t=1582327326663",
"dname": "Blades of Attack",
"qual": "component",
"cost": 430,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "9",
"footer": "Damage"
}
],
"mc": false,
"cd": false,
"lore": "The damage of these small, concealable blades should not be underestimated.",
"components": null,
"created": false,
"charges": false
},
"broadsword": {
"id": 3,
"img": "/apps/dota2/images/items/broadsword_lg.png?t=1582327326663",
"dname": "Broadsword",
"qual": "component",
"cost": 1200,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "18",
"footer": "Damage"
}
],
"mc": false,
"cd": false,
"lore": "The classic weapon of choice for knights, this blade is sturdy and reliable for slaying enemies.",
"components": null,
"created": false,
"charges": false
},
"chainmail": {
"id": 4,
"img": "/apps/dota2/images/items/chainmail_lg.png?t=1582327326663",
"dname": "Chainmail",
"qual": "component",
"cost": 550,
"notes": "",
"attrib": [
{
"key": "bonus_armor",
"header": "+",
"value": "4",
"footer": "Armor"
}
],
"mc": false,
"cd": false,
"lore": "A medium weave of metal chains.",
"components": null,
"created": false,
"charges": false
},
"claymore": {
"id": 5,
"img": "/apps/dota2/images/items/claymore_lg.png?t=1582327326663",
"dname": "Claymore",
"qual": "component",
"cost": 1400,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "21",
"footer": "Damage"
}
],
"mc": false,
"cd": false,
"lore": "A sword that can cut through armor, it's a commonly chosen first weapon for budding swordsmen.",
"components": null,
"created": false,
"charges": false
},
"helm_of_iron_will": {
"id": 6,
"img": "/apps/dota2/images/items/helm_of_iron_will_lg.png?t=1582327326663",
"dname": "Helm of Iron Will",
"qual": "component",
"cost": 900,
"notes": "",
"attrib": [
{
"key": "bonus_armor",
"header": "+",
"value": "5",
"footer": "Armor"
},
{
"key": "bonus_regen",
"header": "+",
"value": "3.5",
"footer": "HP Regeneration"
}
],
"mc": false,
"cd": false,
"lore": "The helmet of a legendary warrior who fell in battle.",
"components": null,
"created": false,
"charges": false
},
"javelin": {
"passive": [
{
"name": "Pierce",
"desc": "Grants each attack a 25% chance to pierce through evasion and deal 100 bonus magical damage."
}
],
"id": 7,
"img": "/apps/dota2/images/items/javelin_lg.png?t=1582327326663",
"dname": "Javelin",
"qual": "component",
"cost": 1100,
"notes": "",
"attrib": [],
"mc": false,
"cd": false,
"lore": "A rather typical spear that can sometimes pierce through an enemy's armor when used to attack.",
"components": null,
"created": false,
"charges": false
},
"mithril_hammer": {
"id": 8,
"img": "/apps/dota2/images/items/mithril_hammer_lg.png?t=1582327326663",
"dname": "Mithril Hammer",
"qual": "component",
"cost": 1600,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "24",
"footer": "Damage"
}
],
"mc": false,
"cd": false,
"lore": "A hammer forged of pure mithril.",
"components": null,
"created": false,
"charges": false
},
"platemail": {
"id": 9,
"img": "/apps/dota2/images/items/platemail_lg.png?t=1582327326663",
"dname": "Platemail",
"qual": "secret_shop",
"cost": 1400,
"notes": "",
"attrib": [
{
"key": "bonus_armor",
"header": "+",
"value": "10",
"footer": "Armor"
}
],
"mc": false,
"cd": false,
"lore": "Thick metal plates that protect the entire upper body. Avoid dropping on feet.",
"components": null,
"created": false,
"charges": false
},
"quarterstaff": {
"id": 10,
"img": "/apps/dota2/images/items/quarterstaff_lg.png?t=1582327326663",
"dname": "Quarterstaff",
"qual": "component",
"cost": 875,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "10",
"footer": "Damage"
},
{
"key": "bonus_speed",
"header": "+",
"value": "10",
"footer": "Attack Speed"
}
],
"mc": false,
"cd": false,
"lore": "A basic staff that allows you to strike quickly.",
"components": null,
"created": false,
"charges": false
},
"quelling_blade": {
"active": [
{
"name": "Chop Tree",
"desc": "Destroy a target tree. \n\nCast Range: 350"
}
],
"passive": [
{
"name": "Quell",
"desc": "Increases attack damage against non-hero units by 18 for melee heroes, and 5 for ranged."
}
],
"id": 11,
"img": "/apps/dota2/images/items/quelling_blade_lg.png?t=1582327326663",
"dname": "Quelling Blade",
"qual": "component",
"cost": 150,
"notes": "Effects of multiple quelling blades do not stack.",
"attrib": [],
"mc": false,
"cd": 4,
"lore": "The axe of a fallen gnome, it allows you to effectively maneuver the forest.",
"components": null,
"created": false,
"charges": false
},
"faerie_fire": {
"use": [
{
"name": "Imbue",
"desc": "Instantly restores 85 health."
}
],
"id": 237,
"img": "/apps/dota2/images/items/faerie_fire_lg.png?t=1582327326663",
"dname": "Faerie Fire",
"qual": "consumable",
"cost": 70,
"notes": "",
"attrib": [
{
"key": "bonus_damage",
"header": "+",
"value": "2",
"footer": "Damage"
}
],
"mc": false,
"cd": 5,
"lore": "The ethereal flames from the ever-burning ruins of Kindertree ignite across realities.",
"components": null,
"created": false,
"charges": 1
},
"infused_raindrop": {
"passive": [
{
"name": "Magical Damage Block",
"desc": "Consumes a charge to block 120 magic damage from damage instances over 50 damage. \n\nComes with 6 charges. When the charges are gone, the item disappears."
}
],
"id": 265,
"img": "/apps/dota2/images/items/infused_raindrop_lg.png?t=1582327326663",
"dname": "Infused Raindrops",
"qual": "component",
"cost": 225,
"notes": "Uses at most one charge per damage instance.",
"attrib": [
{
"key": "mana_regen",
"header": "+",
"value": "0.75",
"footer": "Mana Regeneration"
}
],
"mc": false,
"cd": 7,
"lore": "Elemental protection from magical assaults.",
"components": null,
"created": false,
"charges": 6
},
"wind_lace": {
"hint": [
"Bonuses from multiple Wind Laces do not stack."
],
"id": 244,
"img": "/apps/dota2/images/items/wind_lace_lg.png?t=1582327326663",
"dname": "Wind Lace",
"qual": "component",
"cost": 250,
"notes": "",
"attrib": [
{
"key": "movement_speed",
"header": "+",
"value": "20",
"footer": "Movement Speed"
}
],
"mc": false,
"cd": false,
"lore": "Hasten to battle on wind-touched heels.",
"components": null,
"created": false,
"charges": false
},
"ring_of_protection": {
"id": 12,
"img": "/apps/dota2/images/items/ring_of_protection_lg.png?t=1582327326663",
"dname": "Ring of Protection",
"qual": "component",
"cost": 150,
"notes": "",
"attrib": [
{
"key": "bonus_armor",
"header": "+",
"value": "2",
"footer": "Armor"
}
],
"mc": false,
"cd": false,
"lore": "A glimmering ring that defends its bearer.",
"components": null,
"created": false,
"charges": false
},
"stout_shield": {
"passive": [
{
"name": "Damage Block",
"desc": "Grants a 50% chance to block 20 damage from incoming attacks on melee heroes, and 8 damage on ranged."
}
],
"id": 182,
"img": "/apps/dota2/images/items/stout_shield_lg.png?t=1582327326663",
"dname": "Stout Shield",
"qual": "component",
"cost": 100,
"notes": "Multiple sources of damage block do not stack.",
"attrib": [],
"mc": false,
"cd": false,
"lore": "One man's wine barrel bottom is another man's shield.",
"components": null,
"created": false,
"charges": false
},
"moon_shard": {
"use": [
{
"name": "Consume",
"desc": "Consume the Moon Shard to permanently gain 60 attack speed and 200 bonus night vision. Max 1 use."
}
],
"passive": [
{
"name": "Shade Sight",
"desc": "Grants 400 bonus night vision."
}
],
"id": 247,
"img": "/apps/dota2/images/items/moon_shard_lg.png?t=1582327326663",
"dname": "Moon Shard",
"qual": "consumable",
"cost": 4000,
"notes": "The bonus night vision works during Night Stalker's Darkness ability.",
"attrib": [
{
"key": "bonus_attack_speed",
"header": "+",
"value": "140",
"footer": "Attack Speed"
}
],
"mc": false,
"cd": false,
"lore": "Said to be a tear from the lunar goddess Selemene.",
"components": [
"hyperstone",
"hyperstone"
],
"created": true,
"charges": false
},
"gauntlets": {
"id": 13,
"img": "/apps/dota2/images/items/gauntlets_lg.png?t=1582327326663",
"dname": "Gauntlets of Strength",
"qual": "component",
"cost": 145,
"notes": "",
"attrib": [
{
"key": "bonus_strength",
"header": "+",
"value": "3",
"footer": "Strength"
}
],
"mc": false,
"cd": false,
"lore": "Studded leather gloves that add brute strength.",
"components": null,
"created": false,
"charges": false
},
"slippers": {
"id": 14,
"img": "/apps/dota2/images/items/slippers_lg.png?t=1582327326663",
"dname": "Slippers of Agility",
"qual": "component",
"cost": 145,
"notes": "",
"attrib": [
{
"key": "bonus_agility",
"header": "+",
"value": "3",
"footer": "Agility"
}
],
"mc": false,
"cd": false,
"lore": "Light boots made from spider skin that tingles your senses.",
"components": null,
"created": false,
"charges": false
},
"mantle": {
"id": 15,
"img": "/apps/dota2/images/items/mantle_lg.png?t=1582327326663",
"dname": "Mantle of Intelligence",
"qual": "component",
"cost": 145,
"notes": "",
"attrib": [
{
"key": "bonus_intellect",
"header": "+",
"value": "3",
"footer": "Intelligence"
}
],
"mc": false,
"cd": false,
"lore": "A beautiful sapphire mantle worn by generations of queens.",
"components": null,
"created": false,
"charges": false
},
"branches": {
"use": [
{
"name": "Plant Tree",
"desc": "Targets the ground to plant a happy little tree that lasts for 20 seconds.\n\nRange: 400"
}
],
"id": 16,
"img": "/apps/dota2/images/items/branches_lg.png?t=1582327326663",
"dname": "Iron Branch",
"qual": "consumable",
"cost": 50,
"notes": "",
"attrib": [
{
"key": "bonus_all_stats",
"header": "+",
"value": "1",
"footer": "All Attributes"
}
],
"mc": false,
"cd": false,
"lore": "A seemingly ordinary branch, its ironlike qualities are bestowed upon the bearer.",
"components": null,
"created": false,
"charges": false
},
"belt_of_strength": {
"id": 17,
"img": "/apps/dota2/images/items/belt_of_strength_lg.png?t=1582327326663",
"dname": "Belt of Strength",
"qual": "component",
"cost": 450,
"notes": "",
"attrib": [
{
"key": "bonus_strength",
"header": "+",
"value": "6",
"footer": "Strength"
}
],
"mc": false,
"cd": false,
"lore": "A valued accessory for improving vitality.",
"components": null,
"created": false,
"charges": false
},
"boots_of_elves": {
"id": 18,
"img": "/apps/dota2/images/items/boots_of_elves_lg.png?t=1582327326663",
"dname": "Band of Elvenskin",
"qual": "component",
"cost": 450,
"notes": "",
"attrib": [
{
"key": "bonus_agility",
"header": "+",
"value": "6",
"footer": "Agility"
}
],
"mc": false,
"cd": false,
"lore": "A tensile fabric often used for its light weight and ease of movement.",
"components": null,
"created": false,
"charges": false
},
"robe": {
"id": 19,
"img": "/apps/dota2/images/items/robe_lg.png?t=1582327326663",
"dname": "Robe of the Magi",
"qual": "component",
"cost": 450,
"notes": "",
"attrib": [
{
"key": "bonus_intellect",
"header": "+",
"value": "6",
"footer": "Intelligence"
}
],
"mc": false,
"cd": false,
"lore": "This robe corrupts the soul of the user, but provides wisdom in return.",
"components": null,
"created": false,
"charges": false
},
"circlet": {
"id": 20,
"img": "/apps/dota2/images/items/circlet_lg.png?t=1582327326663",
"dname": "Circlet",
"qual": "component",
"cost": 155,
"notes": "",
"attrib": [
{
"key": "bonus_all_stats",
"header": "+",
"value": "2",
"footer": "All Attributes"
}
],
"mc": false,
"cd": false,
"lore": "An elegant circlet designed for human princesses.",
"components": null,
"created": false,
"charges": false
},
"crown": {
"id": 261,
"img": "/apps/dota2/images/items/crown_lg.png?t=1582327326663",
"dname": "Crown",
"qual": "component",
"cost": 450,
"notes": "",
"attrib": [
{
"key": "bonus_all_stats",
"header": "+",
"value": "4",
"footer": "All Attributes"
}
],
"mc": false,
"cd": false,
"lore": "",
"components": null,
"created": false,
"charges": false
},
"ogre_axe": {
"id": 21,
"img": "/apps/dota2/images/items/ogre_axe_lg.png?t=1582327326663",
"dname": "Ogre Axe",
"qual": "component",
"cost": 1000,
"notes": "",
"attrib": [
{
"key": "bonus_strength",
"header": "+",
"value": "10",
"footer": "Strength"
}
],
"mc": false,
"cd": false,
"lore": "You grow stronger just by holding it.",
"components": null,
"created": false,
"charges": false
},
"blade_of_alacrity": {
"id": 22,
"img": "/apps/dota2/images/items/blade_of_alacrity_lg.png?t=1582327326663",
"dname": "Blade of Alacrity",
"qual": "component",
"cost": 1000,
"notes": "",
"attrib": [
{
"key": "bonus_agility",
"header": "+",
"value": "10",
"footer": "Agility"
}
],
"mc": false,
"cd": false,
"lore": "A long blade imbued with time magic.",
"components": null,
"created": false,
"charges": false
},
"staff_of_wizardry": {
"id": 23,
"img": "/apps/dota2/images/items/staff_of_wizardry_lg.png?t=1582327326663",
"dname": "Staff of Wizardry",
"qual": "component",
"cost": 1000,
"notes": "",
"attrib": [
{
"key": "bonus_intellect",
"header": "+",
"value": "10",
"footer": "Intelligence"
}
],
"mc": false,
"cd": false,
"lore": "A staff of magical powers passed down from the eldest mages.",
"components": null,
"created": false,
"charges": false
},
"ultimate_orb": {
"id": 24,
"img": "/apps/dota2/images/items/ultimate_orb_lg.png?t=1582327326663",
"dname": "Ultimate Orb",
"qual": "secret_shop",
"cost": 2150,
"notes": "",
"attrib": [
{
"key": "bonus_all_stats",
"header": "+",
"value": "10",
"footer": "All Attributes"
}
],
"mc": false,
"cd": false,
"lore": "A mystical orb containing the essence of life.",
"components": null,
"created": false,
"charges": false
},
"gloves": {
"id": 25,
"img": "/apps/dota2/images/items/gloves_lg.png?t=1582327326663",
"dname": "Gloves of Haste",
"qual": "component",
"cost": 400,
"notes": "",
"attrib": [
{
"key": "bonus_attack_speed",
"header": "+",
"value": "20",
"footer": "Attack Speed"
}
],
"mc": false,
"cd": false,
"lore": "A pair of magical gloves that seems to render weapons weightless.",
"components": null,
"created": false,
"charges": false
},
"lifesteal": {
"passive": [
{
"name": "Lifesteal",
"desc": "Heals the attacker for 15% of attack damage dealt."
}
],
"id": 26,
"img": "/apps/dota2/images/items/lifesteal_lg.png?t=1582327326663",
"dname": "Morbid Mask",
"qual": "component",
"cost": 900,
"notes": "",
"attrib": [],
"mc": false,
"cd": false,
"lore": "A mask that drains the energy of those caught in its gaze.",
"components": null,
"created": false,
"charges": false
},
"ring_of_regen": {
"id": 27,
"img": "/apps/dota2/images/items/ring_of_regen_lg.png?t=1582327326663",
"dname": "Ring of Regen",
"qual": "component",
"cost": 250,
"notes": "",
"attrib": [
{
"key": "bonus_health_regen",
"header": "+",
"value": "2",
"footer": "HP Regeneration"
}
],
"mc": false,
"cd": false,
"lore": "This ring is considered a good luck charm among the Gnomes.",
"components": null,
"created": false,
"charges": false
},
"ring_of_tarrasque": {
"id": 279,
"img": "/apps/dota2/images/items/ring_of_tarrasque_lg.png?t=1582327326663",
"dname": "Ring of Tarrasque",
"qual": "component",
"cost": 700,
"notes": "",
"attrib": [
{
"key": "bonus_health",
"header": "+",
"value": "150",
"footer": "Health"
},
{
"key": "bonus_health_regen",
"header": "+",
"value": "3.75",
"footer": "HP Regeneration"
}
],
"mc": false,
"cd": false,
"lore": "",
"components": null,
"created": false,
"charges": false
},
"sobi_mask": {
"id": 28,
"img": "/apps/dota2/images/items/sobi_mask_lg.png?t=1582327326663",
"dname": "Sage's Mask",
"qual": "component",
"cost": 250,
"notes": "",
"attrib": [
{
"key": "bonus_mana_regen",
"header": "+",
"value": "0.75",
"footer": "Mana Regeneration"
}
],
"mc": false,
"cd": false,
"lore": "A mask commonly used by mages and warlocks for various rituals.",
"components": null,
"created": false,
"charges": false
},
"boots": {
"hint": [
"Movement speed bonuses from multiple pairs of boots do not stack."
],
"id": 29,
"img": "/apps/dota2/images/items/boots_lg.png?t=1582327326663",
"dname": "Boots of Speed",
"qual": "component",
"cost": 500,
"notes": "",
"attrib": [
{
"key": "bonus_movement_speed",
"header": "+",
"value": "15%",
"footer": "Movement Speed"
}
],
"mc": false,
"cd": false,
"lore": "Fleet footwear, increasing movement.",
"components": null,
"created": false,
"charges": false
},
"gem": {
"passive": [
{
"name": "True Sight",
"desc": "Grants the ability to see invisible units and wards to any allied vision within 900 range of its carrier. "
},
{
"name": "Everlasting",
"desc": "Dropped on death, and cannot be destroyed."
}
],
"id": 30,
"img": "/apps/dota2/images/items/gem_lg.png?t=1582327326663",
"dname": "Gem of True Sight",
"qual": "component",
"cost": 900,
"notes": "Disabled while on a courier.",
"attrib": [],
"mc": false,
"cd": false,
"lore": "Not one thrall creature of the depths,\r\nNor spirit bound in drowning's keep,\r\nNor Maelrawn the Tentacular,\r\nShall rest till seas, gem comes to sleep.",
"components": null,
"created": false,
"charges": false
},
"cloak": {
"id": 31,
"img": "/apps/dota2/images/items/cloak_lg.png?t=1582327326663",
"dname": "Cloak",
"qual": "component",
"cost": 550,
"notes": "Stacks multiplicatively with other sources of spell resistance.",
"attrib": [
{
"key": "tooltip_resist",
"header": "+",
"value": "15%",
"footer": "Magic Resistance"
}
],
"mc": false,
"cd": false,
"lore": "A cloak made of a magical material that works to dispel any magic cast on it.",
"components": null,
"created": false,
"charges": false
},
"talisman_of_evasion": {
"id": 32,
"img": "/apps/dota2/images/items/talisman_of_evasion_lg.png?t=1582327326663",
"dname": "Talisman of Evasion",
"qual": "secret_shop",
"cost": 1400,
"notes": "Stacks diminishingly with other sources of Evasion.",
"attrib": [
{
"key": "bonus_evasion",
"header": "+",
"value": "15%",
"footer": "Evasion"
}
],
"mc": false,
"cd": false,
"lore": "A necklace that allows you to anticipate enemy attacks.",
"components": null,
"created": false,
"charges": false
},
"cheese": {
"use": [
{
"name": "Fondue",
"desc": "Instantly restores 2500 health and 1500 mana."
}
],
"id": 33,
"img": "/apps/dota2/images/items/cheese_lg.png?t=1582327326663",
"dname": "Cheese",
"qual": "consumable",
"cost": 1000,
"notes": "Cheese is shareable.",
"attrib": [],
"mc": false,
"cd": 40,
"lore": "Made from the milk of a long lost Furbolg vendor, it restores the vitality of those who taste it.",
"components": null,
"created": false,
"charges": 1
},
"magic_stick": {
"active": [
{
"name": "Energy Charge",
"desc": "Instantly restores 15 health and mana per charge stored.\n\n Max 10 charges. Gains a charge whenever a visible enemy within 1200 range uses an ability."
}
],
"id": 34,
"img": "/apps/dota2/images/items/magic_stick_lg.png?t=1582327326663",
"dname": "Magic Stick",
"qual": "component",
"cost": 200,
"notes": "Gains charges for spells cast by visible enemies in 1200 range.\nCertain abilities and item abilities will not add charges.",
"attrib": [],
"mc": false,
"cd": 13,
"lore": "A simple wand used to channel magic energies, it is favored by apprentice wizards and great warlocks alike.",
"components": null,
"created": false,
"charges": false
},
"recipe_magic_wand": {
"id": 35,
"img": "/apps/dota2/images/items/recipe_lg.png?t=1582327326663",
"dname": "Magic Wand Recipe",
"cost": 150,
"notes": "",
"attrib": [],
"mc": false,
"cd": false,
"lore": "",
"components": null,
"created": false,
"charges": false
},
"magic_wand": {
"active": [
{
"name": "Energy Charge",
"desc": "Instantly restores 15 health and mana per charge stored. \n\nMax 20 charges. Gains a charge whenever a visible enemy within 1200 range uses an ability."
}
],
"id": 36,
"img": "/apps/dota2/images/items/magic_wand_lg.png?t=1582327326663",
"dname": "Magic Wand",
"qual": "common",
"cost": 450,
"notes": "Gains charges for spells cast by visible enemies in 1200 range.\nCertain abilities and item abilities will not add charges.",
"attrib": [
{
"key": "bonus_all_stats",
"header": "+",
"value": "3",
"footer": "All Attributes"
}
],
"mc": false,
"cd": 13,
"lore": "A simple wand used to channel magic energies, it is favored by apprentice wizards and great warlocks alike.",