This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotapedia.js
1910 lines (1910 loc) · 895 KB
/
dotapedia.js
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
var DOTAPEDIA = {
'1': {"cost": "2250", "name": "Blink Dagger", "scepter_mods": [], "scepter": "", "notes": ["Self-casting will cause you to teleport in the direction of your team's fountain.", "If you used Blink to teleport to a distance over the maximum range, you'll be teleported 4/5 of the maximum range instead."], "mana": "0", "cooldown": "14.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Directional Cast", "Disabled By Root"]]], "lore": "The fabled dagger used by the fastest assassin ever to walk the lands.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/blink.png", "description": "<h1>Active: Blink</h1> Teleport to a target point up to 1200 units away. <br><br>Blink Dagger cannot be used for 3.0 seconds after taking damage from an enemy hero or Roshan."},
'10': {"cost": "875", "name": "Quarterstaff", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "10 Damage"], ["+", "10 Attack Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "A basic staff that allows you to strike quickly.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/quarterstaff.png", "description": ""},
'100': {"cost": "2750", "name": "Eul's Scepter of Divinity", "scepter_mods": [], "scepter": "", "notes": ["Cyclones cast on yourself go through spell immunity.", "You cannot cyclone allies.", "Cyclone can purge some buffs and debuffs.", "You cannot cyclone allies.", "Cyclones cast on yourself go through spell immunity."], "mana": "175", "cooldown": "23.0", "details": [["CYCLONE DURATION:", "2.5"], ["+", "2.25 Mana Regeneration"], ["+", "40 Movement Speed"], ["+", "10 Intelligence"], ["CYCLONE CAST RANGE:", "575"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["575"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "A mysterious scepter passed down through the ages, its disruptive winds can be used for good or evil.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/cyclone.png", "description": "<h1>Active: Cyclone</h1> A target unit is swept up in a cyclone and made invulnerable for 2.5 seconds. Cyclone can be cast on yourself. Enemy units take 50 magical damage upon landing."},
'10000': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'10001': {"cost": "", "name": "Summon Roshlings", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "30.0", "details": [["CAST POINT:", ["1.0"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "", "description": "Roshan calls a group of Roshlings to aid him."},
'10002': {"cost": "", "name": "Fireball ", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "25.0", "details": [["CAST POINT:", ["3.0"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["AOE"]]], "lore": "", "icon": "", "description": "Roshan launches a number of slow moving fireballs at all nearby enemies."},
'101': {"cost": "400", "name": "Force Staff Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'102': {"cost": "2250", "name": "Force Staff", "scepter_mods": [], "scepter": "", "notes": ["Self-cast will cause you to use Force on yourself.", "Force Staff doesn't interrupt the target's actions.", "Will not work on a unit inside Chronosphere, Duel, or Black Hole."], "mana": "25", "cooldown": "23.0", "details": [["+", "5 HP Regeneration"], ["+", "10 Intelligence"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Other"]], ["TARGETS:", ["Allies and Enemies", "Other"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Allows you to manipulate others, for good or evil.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/force_staff.png", "description": "<h1>Active: Force</h1>Pushes any target unit 600 units in the direction it is facing.<br><br>Range: 750"},
'1021': {"cost": "0", "name": "River Vial: Chrome", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter.png", "description": "Pour this serum into the river to transform the water into liquid chrome for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1022': {"cost": "0", "name": "River Vial: Dry", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter2.png", "description": "Pour this serum into the river to dry up the water for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect . Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1023': {"cost": "0", "name": "River Vial: Slime", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter3.png", "description": "Pour this serum into the river to transform the water into a green slime for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1024': {"cost": "0", "name": "River Vial: Oil", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter4.png", "description": "Pour this serum into the river to make the water oily for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1025': {"cost": "0", "name": "River Vial: Electrified", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter5.png", "description": "Pour this serum into the river to make the water electric for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1026': {"cost": "0", "name": "River Vial: Potion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter6.png", "description": "Pour this serum into the river to transform the water into a purple bubbling potion for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'1027': {"cost": "0", "name": "River Vial: Blood", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/river_painter7.png", "description": "Pour this serum into the river to transform the water into blood for 15 minutes. <font color='#FF5555'>Using this item on the river will permanently consume one charge from your Armory supply upon expiration of the effect. Charges do not get consumed if the effect is replaced by a stronger vial before expiration.</font> Vials can only be used if at least one charge remains in your Armory. Charges will only be used by successfully enchanting the river, and will not be consumed if the item is sold, dropped, or destroyed during a game. You can only cast a vial on the river if there's not a stronger vial already in effect."},
'103': {"cost": "1250", "name": "Dagon Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'104': {"cost": "2715", "name": "Dagon", "scepter_mods": [], "scepter": "", "notes": ["Instantly kills illusions."], "mana": "180", "cooldown": "35.0 30.0 25.0 20.0 15.0", "details": [["+", "15 18 21 24 27 Intelligence"], ["+", "3 All Attributes"], ["BURST DAMAGE:", "400 500 600 700 800"], ["CAST RANGE:", "600 650 700 750 800"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 650 700 750 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A lesser wand that grows in power the longer it is used, it brings magic to the fingertips of the user.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dagon.png", "description": "<h1>Active: Energy Burst</h1> Emits a powerful burst of magical damage upon a targeted enemy unit. Upgradable.<br><br>Damage: 400 500 600 700 800<br>Range: 600 650 700 750 800<br>Mana Cost: 180"},
'105': {"cost": "1300", "name": "Necronomicon Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'106': {"cost": "2400", "name": "Necronomicon", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "90.0", "details": [["ARCHER AURA ATTACK SPEED:", "5 7 9"], ["+", "10 15 20 Strength"], ["WARRIOR HEALTH:", "700 800 900"], ["+", "1 1.25 1.5 Mana Regeneration"], ["WARRIOR LAST WILL DMG:", "550 675 800"], ["ARCHER DAMAGE:", "60 90 120"], ["WARRIOR MANA BREAK:", "30 40 50"], ["ARCHER HEALTH:", "700 800 900"], ["WARRIOR DAMAGE:", "75 100 125"], ["ARCHER MANA BURN:", "125 175 225"], ["%ARCHER AURA MOVE SPEED:", "5 7 9"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Considered the ultimate in necromancy and demonology, a powerful malefic force is locked within its pages.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/necronomicon.png", "description": "<h1>Active: Demonic Summoning</h1>Summons a Warrior and an Archer to fight for you for 50 seconds.<br><br><h1>Warrior:</h1>Burns mana every hit, and deals magical damage to whoever kills it. Gains True Sight at level 3.<br>Health: 700 800 900<br>Damage: 75 100 125<br>Mana Break Damage: 30 40 50<br>Last Will Damage: 550 675 800<br><br><h1>Archer:</h1>Has a passive movement and attack speed aura. Gains Purge at Level 3.<br>Health: 700 800 900<br>Damage: 60 90 120<br>Aura Move Speed: 5 7 9<br>Aura Attack Speed: 5 7 9<br>Aura Radius: 900"},
'107': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'108': {"cost": "4200", "name": "Aghanim's Scepter", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "175 Health"], ["+", "10 All Attributes"], ["+", "175 Mana"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The scepter of a wizard with demigod-like powers.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ultimate_scepter.png", "description": "<h1>Passive: Ultimate Upgrade</h1>Upgrades the ultimate, and some abilities, of certain heroes."},
'109': {"cost": "1800", "name": "Refresher Orb Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'11': {"cost": "200", "name": "Quelling Blade", "scepter_mods": [], "scepter": "", "notes": ["Chop can be used to destroy Techies' Remote Mines.", "Effects of multiple quelling blades do not stack."], "mana": "0", "cooldown": "4.0", "details": [["CHOP WARD RANGE:", "450"], ["QUELL RANGED DAMAGE:", "7"], ["CHOP TREE RANGE:", "350"], ["QUELL MELEE DAMAGE:", "24"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Tree", "Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The axe of a fallen gnome, it allows you to effectively maneuver the forest.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/quelling_blade.png", "description": "<h1>Active: Chop Tree/Ward</h1> Destroy a target tree or ward. Chop cast range is increased when targeting wards.<br><br>Tree Range: 350<BR>Ward Range: 450<br><h1>Passive: Quell</h1> Increases attack damage against non-hero units by 24 for melee heroes, and 7 for ranged."},
'110': {"cost": "5200", "name": "Refresher Orb", "scepter_mods": [], "scepter": "", "notes": [], "mana": "375", "cooldown": "195.0", "details": [["+", "11 HP Regeneration"], ["+", "3.0 Mana Regeneration"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A powerful artifact created for wizards.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/refresher.png", "description": "<h1>Active: Reset Cooldowns</h1>Resets the cooldowns of all your items and abilities."},
'111': {"cost": "1300", "name": "Assault Cuirass Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'112': {"cost": "5250", "name": "Assault Cuirass", "scepter_mods": [], "scepter": "", "notes": ["Multiple instances of Assault Aura do not stack."], "mana": "", "cooldown": "", "details": [["+", "10 Armor"], ["AURA ATTACK SPEED:", "25"], ["AURA ALLY BONUS ARMOR:", "5"], ["+", "30 Attack Speed"], ["AURA ENEMY ARMOR REDUCTION:", "-5"], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Forged in the depths of the nether reaches, this hellish mail provides an army with increased armor and attack speed.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/assault.png", "description": "<h1>Passive: Assault Aura</h1> Grants 25 attack speed and 5 armor to nearby allied units and structures, and decreases nearby enemy unit and structure armor by -5.<br><br>Radius: 900"},
'113': {"cost": "0", "name": "Heart of Tarrasque Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'114': {"cost": "5200", "name": "Heart of Tarrasque", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "7.0", "details": [["%HEALTH RESTORED PER SECOND:", "7"], ["+", "40 Strength"], ["+", "500 Health"], ["BEHAVIOR:", ["Passive"]]], "lore": "Preserved heart of an extinct monster, it bolsters the bearer's fortitude.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/heart.png", "description": "<h1>Passive: Health Regeneration</h1>Restores 7 of max health per second. <br><br>If damage is taken from an enemy hero or Roshan, this ability is disabled for 5 seconds for melee heroes, or 7 seconds for ranged heroes."},
'115': {"cost": "1375", "name": "Black King Bar Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'116': {"cost": "3975", "name": "Black King Bar", "scepter_mods": [], "scepter": "", "notes": ["Purchasing another Black King Bar will not reset its immunity duration.", "Using Black King Bar may remove some positive buffs."], "mana": "", "cooldown": "70", "details": [["AVATAR DURATION:", "10.0 9.0 8.0 7.0 6.0 5.0"], ["+", "10 Strength"], ["+", "24 Damage"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A powerful staff imbued with the strength of giants.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/black_king_bar.png", "description": ""},
'117': {"cost": "0", "name": "Aegis of the Immortal", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "The Immortal was said to own a shield that protected him from death itself.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/aegis.png", "description": "<h1>Passive: Reincarnation</h1> Brings you to life with full health and mana 5.0 seconds after you die, at the location where you died. <br><br>Reincarnation must be used within 5 minutes or Aegis of the Immortal disappears. If it expires, it will heal you over 5 seconds (dispels on damage)."},
'118': {"cost": "650", "name": "Shiva's Guard Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'119': {"cost": "4750", "name": "Shiva's Guard", "scepter_mods": [], "scepter": "", "notes": ["Multiple instances of Freezing Aura do not stack.", "The Arctic Blast follows its caster.", "The wave extends at a speed of 350 to a max size of 900."], "mana": "100", "cooldown": "30", "details": [["+", "15 Armor"], ["BLAST SLOW DURATION:", "4.0"], ["AURA ATTACK SLOW:", "-45"], ["BLAST DAMAGE:", "200"], ["%BLAST MOVEMENT SLOW:", "-40"], ["+", "30 Intelligence"], ["BLAST RADIUS:", "900"], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "Said to have belonged to a goddess, today it retains much of its former power.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/shivas_guard.png", "description": "<h1>Active: Arctic Blast</h1> Emits a freezing wave that deals 200 magical damage to enemies and slows their movement by -40 for 4.0 seconds.<br><br>Radius: 900<br><h1>Passive: Freezing Aura</h1> Reduces the attack speed of all enemies by -45. <br><br>Radius: 900"},
'12': {"cost": "175", "name": "Ring of Protection", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "2 Armor"], ["BEHAVIOR:", ["Passive"]]], "lore": "A glimmering ring that defends its bearer.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ring_of_protection.png", "description": ""},
'120': {"cost": "0", "name": "Bloodstone Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'121': {"cost": "4900", "name": "Bloodstone", "scepter_mods": [], "scepter": "", "notes": ["Only the first Bloodstone will gain charges."], "mana": "", "cooldown": "300.0", "details": [["+", "425 Mana"], ["+", "2.0 Mana Regeneration"], ["+", "475 Health"], ["+", "7 HP Regeneration"], ["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "The Bloodstone's bright ruby color is unmistakable on the battlefield, as the owner seems to have infinite vitality and spirit.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/bloodstone.png", "description": "<h1>Active: Pocket Deny</h1>Instantly causes you to die.<br><br>Must ground target to cast. Cannot self cast.<br><h1>Passive: Bloodpact</h1>Begins with 14 charges, and gains a charge each time an enemy hero dies within 1600 range. <br><br>Each charge grants 0.35 mana regeneration per second, and reduces respawn time by 3 seconds. <br><br>If the bearer dies, the Bloodstone loses a third of its charges."},
'122': {"cost": "1200", "name": "Linken's Sphere Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'123': {"cost": "5050", "name": "Linken's Sphere", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "13.0", "details": [["+", "15 All Attributes"], ["+", "2.25 Mana Regeneration"], ["+", "5.5 HP Regeneration"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "This magical sphere once protected one of the most famous heroes in history.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/sphere.png", "description": "<h1>Passive: Spellblock</h1>Blocks most targeted spells once every 13.0 seconds.<br><h1>Active: Transfer Spellblock</h1>Temporarily removes Spellblock from the item's owner and transfers it to an allied unit for 13.0 seconds.<br><br>Range: 700"},
'124': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'125': {"cost": "2150", "name": "Vanguard", "scepter_mods": [], "scepter": "", "notes": ["Multiple sources of damage block do not stack."], "mana": "", "cooldown": "", "details": [["+", "5.5 HP Regeneration"], ["BLOCK CHANCE:", "50"], ["BLOCK DAMAGE RANGED:", "35"], ["BLOCK DAMAGE MELEE:", "70"], ["+", "250 Health"], ["BEHAVIOR:", ["Passive"]]], "lore": "A powerful shield that defends its wielder from even the most vicious of attacks.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/vanguard.png", "description": "<h1>Passive: Damage Block</h1> Grants a 50% chance to block 70 damage from incoming attacks on melee heroes, and 35 damage on ranged."},
'126': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'127': {"cost": "2200", "name": "Blade Mail", "scepter_mods": [], "scepter": "", "notes": ["Can pierce Spell Immunity if the original damage type does.", "Returned damage type is the same as it was received.", "Damage Return doesn't reflect damage from other forms of Blade Mail.", "Damage Return is calculated before any kind of reduction."], "mana": "25", "cooldown": "20.0", "details": [["+", "6 Armor"], ["+", "10 Intelligence"], ["DAMAGE RETURN DURATION:", "4.5"], ["+", "22 Damage"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A razor-sharp coat of mail, it is the choice of selfless martyrs in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/blade_mail.png", "description": "<h1>Active: Damage Return</h1>For 4.5 seconds, duplicates any damage taken back to the unit that dealt the damage."},
'128': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'129': {"cost": "3200", "name": "Soul Booster", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "425 Health"], ["+", "425 Mana"], ["BEHAVIOR:", ["Passive"]]], "lore": "Regain lost courage.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/soul_booster.png", "description": ""},
'13': {"cost": "135", "name": "Gauntlets of Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "3 Strength"], ["BEHAVIOR:", ["Passive"]]], "lore": "Studded leather gloves that add brute strength.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/gauntlets.png", "description": ""},
'130': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'131': {"cost": "1700", "name": "Hood of Defiance", "scepter_mods": [], "scepter": "", "notes": ["Stacks multiplicatively with other sources of spell resistance."], "mana": "75", "cooldown": "60.0", "details": [["BARRIER DURATION:", "12.0"], ["+", "25 Magic Resistance"], ["BARRIER BLOCK:", "325"], ["+", "6.5 HP Regeneration"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A furred, magic resistant headpiece that is feared by wizards.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/hood_of_defiance.png", "description": "<h1>Active: Barrier</h1> Creates a spell shield that absorbs up to 325 magical damage. Lasts 12.0 seconds."},
'132': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'133': {"cost": "6000", "name": "Divine Rapier", "scepter_mods": [], "scepter": "", "notes": ["If Divine Rapier is dropped and picked up by an enemy of its original owner, it cannot be dropped again except by death."], "mana": "", "cooldown": "", "details": [["+", "330 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "So powerful, it cannot have a single owner.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/rapier.png", "description": "<h1>Passive: Everlasting</h1> <font color='#e03e2e'>Dropped on death, and cannot be destroyed.</font> <br><br>Becomes unusable if picked up by an ally of its owner until it is returned to its owner. It is immediately usable by anybody if an enemy of the owner picks it up and is killed. A dropped Rapier cannot be picked up by a courier."},
'134': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'135': {"cost": "4200", "name": "Monkey King Bar", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "60 Attack Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "A powerful staff used by a master warrior.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/monkey_king_bar.png", "description": "<h1>Passive: Pierce</h1>Grants each attack a 75% chance to pierce through evasion and deal 60 bonus pure damage."},
'136': {"cost": "1350", "name": "Radiance Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'137': {"cost": "5150", "name": "Radiance", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "65 Damage"], ["BURN DAMAGE PER SECOND:", "60"], ["%BURN MISS CHANCE:", "17"], ["BURN RADIUS:", "700"], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["No Target", "Toggle"]]], "lore": "A divine weapon that causes damage and a bright burning effect that lays waste to nearby enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/radiance.png", "description": "<h1>Toggle: Burn</h1> When active, scorches enemies for 60 magical damage per second, and causes them to miss 17% of their attacks.<br><br>Radius: 700"},
'138': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'139': {"cost": "5525", "name": "Butterfly", "scepter_mods": [], "scepter": "", "notes": ["Stacks diminishingly with other sources of Evasion."], "mana": "", "cooldown": "25.0", "details": [["%FLUTTER BONUS MOVE SPEED:", "35"], ["+", "30 Attack Speed"], ["+", "35 Evasion"], ["+", "25 Damage"], ["+", "35 Agility"], ["FLUTTER DURATION:", "2"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Only the mightiest and most experienced of warriors can wield the Butterfly, but it provides incredible dexterity in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/butterfly.png", "description": "<h1>Active: Flutter</h1> Grants 35 additional movement speed for 2 seconds."},
'14': {"cost": "135", "name": "Slippers of Agility", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "3 Agility"], ["BEHAVIOR:", ["Passive"]]], "lore": "Light boots made from spider skin that tingles your senses.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/slippers.png", "description": ""},
'140': {"cost": "1000", "name": "Daedalus Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'141': {"cost": "5320", "name": "Daedalus", "scepter_mods": [], "scepter": "", "notes": ["Critical Strike does not work against buildings."], "mana": "", "cooldown": "", "details": [["+", "80 Damage"], ["%CRITICAL CHANCE:", "30"], ["%CRITICAL DAMAGE:", "235"], ["BEHAVIOR:", ["Passive"]]], "lore": "A weapon of incredible power that is difficult for even the strongest of warriors to control.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/greater_crit.png", "description": "<h1>Passive: Critical Strike</h1>Grants each attack a 30 chance to deal 235% damage."},
'142': {"cost": "1150", "name": "Skull Basher Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'143': {"cost": "2700", "name": "Skull Basher", "scepter_mods": [], "scepter": "", "notes": ["Does not stack with other sources of Bash, however it will stack with Mini-Bash.", "The following heroes cannot trigger Bash on this item: Spirit Breaker, Faceless Void, Slardar, and Troll Warlord."], "mana": "", "cooldown": "2.3", "details": [["BASH BONUS DAMAGE:", "100"], ["%BASH RANGED CHANCE:", "10"], ["BASH STUN DURATION:", "1.4"], ["+", "10 Strength"], ["%BASH MELEE CHANCE:", "25"], ["DISPELLABLE:", ["Strong Dispels"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A feared weapon in the right hands, this maul's ability to shatter the defenses of its opponents should not be underestimated.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/basher.png", "description": "<h1>Passive: Bash</h1> Grants melee heroes a 25% chance on hit to stun the target for 1.4 seconds and deal 100 bonus magical damage. Bash pierces evasion. Bash chance for ranged heroes is 10."},
'144': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'145': {"cost": "4100", "name": "Battle Fury", "scepter_mods": [], "scepter": "", "notes": ["If multiple sources of Cleave are present, each Cleave's damage is applied separately.", "Chop can be used to destroy Techies' Remote Mines.", "Cleave damage is reduced by armor type but not by armor value.", "Cleave damage goes through spell immunity."], "mana": "", "cooldown": "4.0", "details": [["CHOP TREE CAST RANGE:", "350"], ["+", "2.25 Mana Regeneration"], ["CHOP WARD CAST RANGE:", "450"], ["%QUELL MELEE DAMAGE:", "150"], ["+", "6 HP Regeneration"], ["+", "45 Damage"], ["%QUELL RANGED DAMAGE:", "125"], ["%CLEAVE DAMAGE:", "40"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Tree", "Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The bearer of this mighty axe gains the ability to cut down swaths of enemies at once.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/bfury.png", "description": "<h1>Active: Chop Tree/Ward</h1> Destroy a target tree or ward.<br><br>Tree Cast Range: 350<br>Ward Cast Range: 450 <br><h1>Passive: Quell</h1> Increases attack damage against non-hero units by 60 for melee heroes, and 25 for ranged. <br><h1>Passive: Cleave</h1> Deals 40 of attack damage as physical damage in a cone up to 625 around the target. (Melee Only)"},
'146': {"cost": "900", "name": "Manta Style Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'147': {"cost": "5000", "name": "Manta Style", "scepter_mods": [], "scepter": "", "notes": ["Many effects are removed upon using Manta.", "Has a 0.1 second cast time during which you are invulnerable.", "Yasha based movement speed bonuses from multiple items do not stack."], "mana": "125", "cooldown": "45.0", "details": [["IMAGE DURATION:", "20"], ["+", "8 Movement Speed"], ["%RANGED IMAGE DAMAGE:", "28"], ["%RANGED IMAGE DAMAGE TAKEN:", "400"], ["NUMBER OF IMAGES:", "2"], ["+", "26 Agility"], ["%MELEE IMAGE DAMAGE:", "33"], ["%MELEE IMAGE DAMAGE TAKEN:", "350"], ["+", "10 Intelligence"], ["+", "10 Attack Speed"], ["+", "10 Strength"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Attack"]]], "lore": "An axe made of reflective materials that causes confusion amongst enemy ranks.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/manta.png", "description": ""},
'148': {"cost": "500", "name": "Crystalys Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'149': {"cost": "2120", "name": "Crystalys", "scepter_mods": [], "scepter": "", "notes": ["Critical Strike does not work against buildings."], "mana": "", "cooldown": "", "details": [["+", "30 Damage"], ["%CRITICAL DAMAGE:", "175"], ["%CRITICAL CHANCE:", "20"], ["BEHAVIOR:", ["Passive"]]], "lore": "A blade forged from rare crystals, it seeks weak points in enemy armor.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/lesser_crit.png", "description": "<h1>Passive: Critical Strike</h1>Grants each attack a 20 chance to deal 175% damage."},
'15': {"cost": "135", "name": "Mantle of Intelligence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "3 Intelligence"], ["BEHAVIOR:", ["Passive"]]], "lore": "A beautiful sapphire mantle worn by generations of queens.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/mantle.png", "description": ""},
'150': {"cost": "550", "name": "Armlet of Mordiggian Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'151': {"cost": "2370", "name": "Armlet of Mordiggian", "scepter_mods": [], "scepter": "", "notes": ["Activating or deactivating Unholy Strength does not interrupt channeling.", "The strength change will affect both maximum and current HP, but you cannot die from the change.", "The strength change occurs over 0.6 seconds."], "mana": "", "cooldown": "0.0", "details": [["+", "4 HP Regeneration"], ["+", "9 Damage"], ["+", "5 Armor"], ["+", "25 Attack Speed"], ["BEHAVIOR:", ["No Target", "Toggle", "Doesnt Cancel Channeling"]]], "lore": "Weapon of choice among brutes, the bearer sacrifices his life energy to gain immense strength and power.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/armlet.png", "description": "<h1>Toggle: Unholy Strength</h1>When active, Unholy Strength grants +31 damage, +25 strength and +4 armor, but drains 54 health per second.<br><br> You cannot die from the health drain when Unholy Strength is activated, nor from the strength loss when Unholy Strength is deactivated."},
'152': {"cost": "2700", "name": "Shadow Blade", "scepter_mods": [], "scepter": "", "notes": ["If the invisibility ends without attacking, the bonus damage is lost.", "Has a 0.3 second fade time."], "mana": "75", "cooldown": "28.0", "details": [["SHADOW WALK DURATION:", "14.0"], ["SHADOW WALK DAMAGE:", "175"], ["+", "22 Damage"], ["+", "30 Attack Speed"], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "The blade of a fallen king, it allows you to move unseen and strike from the shadows.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/invis_sword.png", "description": "<h1>Active: Shadow Walk</h1>Makes you invisible for 14.0 seconds, or until you attack or cast a spell. While Shadow Walk is active, you move 20% faster and can move through units. <br><br>If attacking to end the invisibility, you gain 175 bonus physical damage on that attack."},
'153': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'154': {"cost": "3900", "name": "Sange and Yasha", "scepter_mods": [], "scepter": "", "notes": ["Yasha-based movement speed bonuses from multiple items do not stack."], "mana": "", "cooldown": "", "details": [["MAIM DURATION:", "5.0"], ["+", "16 Damage"], ["+", "16 Movement Speed"], ["+", "16 Attack Speed"], ["%MAIM CHANCE:", "40"], ["+", "16 Strength"], ["%MOVEMENT SLOW RANGED:", "-13"], ["ATTACK SLOW MELEE:", "-26"], ["+", "16 Agility"], ["ATTACK SLOW RANGED:", "-13"], ["%MOVEMENT SLOW MELEE:", "-26"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Sange and Yasha, when attuned by the moonlight and used together, become a very powerful combination.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/sange_and_yasha.png", "description": "<h1>Passive: Greater Maim</h1>Each attack has a 40% chance to reduce enemy hero movement speed by -26 and attack speed by -26 when used by a melee hero. Reduces enemy hero movement by -13 and attack speed by -13 when used by a ranged hero. Effect lasts 5.0 seconds."},
'155': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'156': {"cost": "5500", "name": "Satanic", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "35.0", "details": [["%LIFESTEAL:", "25"], ["+", "25 Strength"], ["UNHOLY RAGE DURATION:", "4.5"], ["%UNHOLY RAGE LIFESTEAL:", "200"], ["+", "50 Damage"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Immense power at the cost of your soul.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/satanic.png", "description": "<h1>Active: Unholy Rage</h1>Increases Lifesteal percentage to 200 for 4.5 seconds. <br><h1>Passive: Lifesteal</h1>Heals the attacker for 25% of attack damage dealt."},
'157': {"cost": "900", "name": "Mjollnir Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'158': {"cost": "5700", "name": "Mjollnir", "scepter_mods": [], "scepter": "", "notes": ["Static Charge procs will not bounce to heroes that are invisible or hidden by Fog of War.", "Static Charge cannot trigger more than once per second.", "Static Charge's shock deals magical damage centered on hero with the Static Charge. Static Charge's targets cannot be more than 900 range away."], "mana": "50", "cooldown": "35.0", "details": [["STATIC DURATION:", "15.0"], ["CHAIN TARGETS:", "12"], ["%CHAIN CHANCE:", "25"], ["CHAIN LEAP RADIUS:", "900"], ["%STATIC CHANCE:", "20"], ["CHAIN DAMAGE:", "150"], ["+", "24 Damage"], ["STATIC RELEASE RADIUS:", "900"], ["STATIC DAMAGE:", "200"], ["+", "80 Attack Speed"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Thor's magical hammer, made for him by the dwarves Brok and Eitri.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/mjollnir.png", "description": "<h1>Active: Static Charge</h1>Places a charged shield on a target unit for 15.0 seconds which has a 20% chance to release a 200 magical damage shocking bolt at a nearby attacker and 4 additional enemies.<br><br>Range: 800<br><h1>Passive: Chain Lightning</h1>Grants a 25 chance on attack to release a bolt of electricity that leaps between 12 targets within a 900 radius, dealing 150 magical damage to each."},
'159': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'16': {"cost": "50", "name": "Iron Branch", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["TREE DURATION:", "20"], ["+", "1 All Attributes"], ["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "A seemingly ordinary branch, its ironlike qualities are bestowed upon the bearer.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/branches.png", "description": "<h1>Use: Plant Tree</h1> Targets the ground to plant a happy little tree that lasts for 20 seconds.<br><br>Range: 200"},
'160': {"cost": "5500", "name": "Eye of Skadi", "scepter_mods": [], "scepter": "", "notes": ["Lasts 5 seconds with melee Eye of Skadi, 2.5 seconds with ranged Eye of Skadi."], "mana": "", "cooldown": "", "details": [["%COLD MOVE SLOW:", "-35"], ["COLD RANGED DURATION:", "2.5"], ["+", "250 Mana"], ["+", "25 All Attributes"], ["COLD ATTACK SLOW:", "-45"], ["COLD MELEE DURATION:", "5.0"], ["+", "225 Health"], ["BEHAVIOR:", ["Passive"]]], "lore": "Extremely rare artifact, guarded by the azure dragons.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/skadi.png", "description": "<h1>Passive: Cold Attack</h1> Attacks lower enemy attack speed by -45 and movement speed by -35. <br><br>Lasts 5.0 seconds when used by melee heroes, and 2.5 seconds when used by ranged."},
'161': {"cost": "500", "name": "Sange Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'162': {"cost": "1950", "name": "Sange", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ATTACK SLOW RANGED:", "-10"], ["%MAIM CHANCE:", "30"], ["+", "16 Strength"], ["MAIM DURATION:", "5.0"], ["ATTACK SLOW MELEE:", "-20"], ["%MOVEMENT SLOW RANGED:", "-10"], ["+", "10 Damage"], ["%MOVEMENT SLOW MELEE:", "-20"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Sange is an unusually accurate weapon, seeking weak points automatically.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/sange.png", "description": "<h1>Passive: Lesser Maim</h1>Each attack has a 30% chance to reduce enemy hero movement speed by -20 and attack speed by -20 when used by a melee hero. Reduces enemy hero movement by -10 and attack speed by -10 when used by a ranged hero. Effect lasts 5.0 seconds."},
'163': {"cost": "0", "name": "Helm of the Dominator Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'164': {"cost": "2000", "name": "Helm of the Dominator", "scepter_mods": [], "scepter": "", "notes": ["Cannot dominate more than one unit at a time. If a new unit is dominated, the old one will die.", "Can also Dominate enemy lane creeps and summoned units.", "Selling Helm of the Dominator will cause dominated units to die."], "mana": "0", "cooldown": "60.0", "details": [["+", "5 Attack Speed"], ["AURA ATTACK SPEED:", "20"], ["+", "2 All Attributes"], ["AURA HEALTH REGEN:", "8"], ["DOMINATED HEALTH MINIMUM:", "1500"], ["CREEP MOVEMENT SPEED:", "425"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Creep"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "The powerful headpiece of a dead necromancer.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/helm_of_the_dominator.png", "description": "<h1>Active: Dominate</h1>Takes control of one neutral, non-ancient target unit and sets its movement speed to 425 and max health to a minimum of 1500.<br><br>Dominated units with a max health of greater than 1500 retain their original max health. Dominated unit's bounty is set to 125 gold.<br><br>Range: 700<br><h1>Passive: Dominator Aura</h1> Increases nearby allies' attack speed by 20 and health regen by 8.<br><br>Radius: 900"},
'165': {"cost": "700", "name": "Maelstrom Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'166': {"cost": "2800", "name": "Maelstrom", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CHAIN CHANCE:", "25"], ["+", "24 Damage"], ["CHAIN DAMAGE:", "120"], ["CHAIN TARGETS:", "4"], ["CHAIN LEAP RADIUS:", "900"], ["+", "25 Attack Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "A hammer forged for the gods themselves, Maelstrom allows its user to harness the power of lightning.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/maelstrom.png", "description": "<h1>Passive: Chain Lightning</h1>Grants a 25% chance on attack to release a bolt of electricity that leaps between 4 targets within a 900 radius, dealing 120 magical damage to each."},
'167': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'168': {"cost": "3500", "name": "Desolator", "scepter_mods": [], "scepter": "", "notes": ["Armor reduction works on buildings."], "mana": "", "cooldown": "", "details": [["ARMOR REDUCTION:", "-6"], ["+", "50 Damage"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A wicked weapon, used in torturing political criminals.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/desolator.png", "description": "<h1>Passive: Corruption</h1> Your attacks reduce the target's armor by -6 for 15.0 seconds."},
'169': {"cost": "500", "name": "Yasha Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'17': {"cost": "450", "name": "Belt of Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "6 Strength"], ["BEHAVIOR:", ["Passive"]]], "lore": "A valued accessory for improving vitality.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/belt_of_strength.png", "description": ""},
'170': {"cost": "1950", "name": "Yasha", "scepter_mods": [], "scepter": "", "notes": ["Yasha-based movement speed bonuses from multiple items do not stack."], "mana": "", "cooldown": "", "details": [["+", "10 Attack Speed"], ["+", "16 Agility"], ["+", "8 Movement Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "Yasha is regarded as the swiftest weapon ever created.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/yasha.png", "description": ""},
'171': {"cost": "0", "name": "Mask of Madness Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'172': {"cost": "1975", "name": "Mask of Madness", "scepter_mods": [], "scepter": "", "notes": [], "mana": "25", "cooldown": "22.0", "details": [["BERSERK ATTACK SPEED:", "110"], ["%BERSERK MOVE SPEED:", "12"], ["BERSERK DURATION:", "8.0"], ["%LIFESTEAL:", "15"], ["BERSERK ARMOR REDUCTION:", "8"], ["+", "20 Damage"], ["+", "10 Attack Speed"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "Once this mask is worn, its bearer becomes an uncontrollable aggressive force.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/mask_of_madness.png", "description": "<h1>Active: Berserk</h1>Gives 110 attack speed and 12 movement speed, but reduces your armor by 8 and silences you. Lasts 8.0 seconds.<br><h1>Passive: Lifesteal</h1>Heals the attacker for 15% of attack damage dealt."},
'173': {"cost": "700", "name": "Diffusal Blade Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'174': {"cost": "3150", "name": "Diffusal Blade", "scepter_mods": [], "scepter": "", "notes": ["Does not stack with other manabreak abilities.", "Does not stack with other manabreak abilities."], "mana": "0", "cooldown": "15.0", "details": [["PURGE SLOW DURATION:", "4.0"], ["+", "10 Intelligence"], ["+", "20 Agility"], ["PURGE CAST RANGE:", "600"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "An enchanted blade that allows the user to cut straight into the enemy's soul.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/diffusal_blade.png", "description": "<h1>Active: Inhibit</h1> Targets an enemy, slowing it for 4.0 seconds.<br><br>Range: 600<br><h1>Passive: Manabreak</h1>Each attack burns 50 mana from the target, and deals 0.8 physical damage per burned mana. <br><br>Burns 16 mana per attack from melee illusions and 8 mana per attack from ranged illusions."},
'175': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'176': {"cost": "4700", "name": "Ethereal Blade", "scepter_mods": [], "scepter": "", "notes": ["Using a Town Portal Scroll or Boots of Travel will not dispel Ethereal Form.", "Shares cooldown with Ghost Scepter.", "Lasts an extra second on Self or Allied cast.", "Ethereal units take 40% bonus magic damage."], "mana": "100", "cooldown": "20.0", "details": [["+", "10 Strength"], ["+", "10 Intelligence"], ["%INCREASED MAGIC DAMAGE:", "-40"], ["BLAST ALLY/SELF DURATION:", "4.0"], ["BLAST ENEMY DURATION:", "3.0"], ["%BLAST ENEMY MOVE SLOW:", "-80"], ["+", "40 Agility"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["TARGETS:", ["Enemies", "Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "A flickering blade of a ghastly nature, it is capable of dealing damage in both magical and physical planes.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ethereal_blade.png", "description": "<h1>Active: Ether Blast</h1>Converts the target unit to ethereal form, rendering them immune to physical damage, but unable to attack and -40 more vulnerable to magic damage. Lasts for 4.0 seconds on allies and 3.0 seconds on enemies.<br><br> Enemy targets are also slowed by -80%%, and take 2.0x your primary attribute + 75 as magical damage.<br><br>Range: 800"},
'177': {"cost": "200", "name": "Soul Ring Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'178': {"cost": "770", "name": "Soul Ring", "scepter_mods": [], "scepter": "", "notes": ["If this mana is not used before the duration ends, the extra mana is lost."], "mana": "0", "cooldown": "25.0", "details": [["+", "6 Strength"], ["SACRIFICE DURATION:", "10"], ["+", "2.0 HP Regeneration"], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "A ring that feeds on the souls of those who wear it.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/soul_ring.png", "description": "<h1>Active: Sacrifice</h1> Consume 170 health to temporarily gain 150 mana. Lasts 10 seconds.<br><br>If the mana gained cannot fit in your mana pool, it creates a buffer of mana that will be used before your mana pool."},
'179': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'18': {"cost": "450", "name": "Band of Elvenskin", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "6 Agility"], ["BEHAVIOR:", ["Passive"]]], "lore": "A tensile fabric often used for its light weight and ease of movement.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/boots_of_elves.png", "description": ""},
'180': {"cost": "1400", "name": "Arcane Boots", "scepter_mods": [], "scepter": "", "notes": ["Flat movement speed bonuses from multiple pairs of boots do not stack.", "Does not work on Meepo clones."], "mana": "0", "cooldown": "55.0", "details": [["+", "50 Movement Speed"], ["+", "250 Mana"], ["REPLENISH MANA RESTORE:", "135"], ["REPLENISH CAST RADIUS:", "900"], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Magi equipped with these boots are valued in battle.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/arcane_boots.png", "description": "<h1>Active: Replenish Mana</h1>Restores 135 mana to all nearby allies.<br><br>Radius: 900<br>Flat movement speed bonuses from multiple pairs of boots do not stack."},
'181': {"cost": "275", "name": "Orb of Venom", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["POISON DAMAGE PER SECOND:", "5.0"], ["%POISON MELEE SLOW:", "-12"], ["POISON DURATION:", "3.0"], ["%POISON RANGED SLOW:", "-4"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Envenoms your veapon with the venom of a venomous viper.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/orb_of_venom.png", "description": "<h1>Passive: Poison Attack</h1>Poisons the target, dealing 5.0 magical damage per second for 3.0 seconds and slowing movement by -12% if the equipped hero is melee, or -4 if they are ranged."},
'182': {"cost": "200", "name": "Stout Shield", "scepter_mods": [], "scepter": "", "notes": ["Multiple sources of damage block do not stack."], "mana": "", "cooldown": "", "details": [["MELEE DAMAGE BLOCK:", "18"], ["%BLOCK CHANCE:", "50"], ["RANGED DAMAGE BLOCK:", "9"], ["BEHAVIOR:", ["Passive"]]], "lore": "One man's wine barrel bottom is another man's shield.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/stout_shield.png", "description": "<h1>Passive: Damage Block</h1>Grants a 50% chance to block 18 damage from incoming attacks on melee heroes, and 9 damage on ranged."},
'183': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'184': {"cost": "575", "name": "Drum of Endurance Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'185': {"cost": "1615", "name": "Drum of Endurance", "scepter_mods": [], "scepter": "", "notes": ["Re-purchasing the Drum of Endurance recipe will refresh its charges.", "Multiple instances of Swiftness Aura do not stack."], "mana": "", "cooldown": "30.0", "details": [["AURA/ENDURANCE RADIUS:", "900"], ["ENDURANCE ATTACK SPEED:", "35"], ["+", "6 Intelligence"], ["+", "3 Agility"], ["+", "0.75 Mana Regeneration"], ["+", "7 Strength"], ["AURA MOVE SPEED:", "20"], ["%ENDURANCE MOVE SPEED:", "13"], ["ENDURANCE DURATION:", "6"], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A relic that enchants the bodies of those around it for swifter movement in times of crisis.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ancient_janggo.png", "description": "<h1>Active: Endurance</h1> Gives +35 attack speed and +13% movement speed to nearby allies for 6 seconds. <br><br>Radius: 900<br><h1>Passive: Swiftness Aura</h1>Gives 20 movement speed to nearby allies. <br><br>Radius: 900"},
'186': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'187': {"cost": "1175", "name": "Medallion of Courage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "7.0", "details": [["VALOR DURATION:", "7"], ["+", "0.5 Mana Regeneration"], ["VALOR CAST RANGE:", "1000"], ["VALOR ARMOR REDUCTION:", "-7"], ["+", "7 Armor"], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The bearer has no fear of combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/medallion_of_courage.png", "description": "<h1>Active: Valor</h1> If cast on an ally, grants them the 7 armor, and removing it from the caster. <br><br>If cast on an enemy, reduces 7 armor on both the enemy and the caster. <br><br>Cannot target magic immune enemies.<br><br>Range: 1000"},
'188': {"cost": "80", "name": "Smoke of Deceit", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0", "details": [["%BONUS SPEED:", "15"], ["DURATION:", "35.0"], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["No Target", "Casting Stops Attack"]]], "lore": "The charlatan wizard Myrddin's only true contribution to the arcane arts.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/smoke_of_deceit.png", "description": "<h1>Use: Disguise</h1> Turns the caster and all allied player-controlled units in a 1200 radius invisible, and grants 15 bonus movement speed for 35.0 seconds. <br><br>Attacking, or moving within 1025 range of an enemy hero or tower, will break the invisibility. <br><br>Disguise grants invisibility that is immune to True Sight."},
'189': {"cost": "500", "name": "Veil of Discord Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'19': {"cost": "450", "name": "Robe of the Magi", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "6 Intelligence"], ["BEHAVIOR:", ["Passive"]]], "lore": "This robe corrupts the soul of the user, but provides wisdom in return.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/robe.png", "description": ""},
'190': {"cost": "2330", "name": "Veil of Discord", "scepter_mods": [], "scepter": "", "notes": ["Can be dispelled."], "mana": "50", "cooldown": "20", "details": [["%INCREASED MAGIC DAMAGE:", "-25"], ["+", "5 HP Regeneration"], ["+", "6 Strength"], ["MAGIC WEAKNESS DURATION:", "16.0"], ["+", "6 Armor"], ["+", "6 Agility"], ["+", "14 Intelligence"], ["MAGIC WEAKNESS RADIUS:", "600"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["AOE", "Point Target", "Usable While Moving"]]], "lore": "The headwear of corrupt magi.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/veil_of_discord.png", "description": "<h1>Active: Magic Weakness</h1> Cast a 600 radius blast that decreases enemy magic resistance by -25.<br><br>Range: 1000<br>Duration: 16.0 seconds."},
'191': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'192': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'193': {"cost": "3700", "name": "Necronomicon", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "90.0", "details": [["WARRIOR MANA BREAK:", "30 40 50"], ["ARCHER MANA BURN:", "125 175 225"], ["ARCHER HEALTH:", "700 800 900"], ["WARRIOR DAMAGE:", "75 100 125"], ["WARRIOR LAST WILL DMG:", "550 675 800"], ["+", "10 15 20 Strength"], ["ARCHER DAMAGE:", "60 90 120"], ["%ARCHER AURA SPEED:", "5 10 15"], ["WARRIOR HEALTH:", "700 800 900"], ["+", "1 1.25 1.5 Mana Regeneration"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Considered the ultimate in necromancy and demonology, a powerful malefic force is locked within its pages.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/necronomicon_2.png", "description": "<h1>Active: Demonic Summoning</h1>Summons a Warrior and an Archer to fight for you for 50 seconds.<br><br><h1>Warrior:</h1>Burns mana every hit, and deals magical damage to whoever kills it. Gains True Sight at level 3.<br>Health: 700 800 900<br>Damage: 75 100 125<br>Mana Break Damage: 30 40 50<br>Last Will Damage: 550 675 800<br><br><h1>Archer:</h1>Has a passive movement and attack speed aura. Gains Purge at Level 3.<br>Health: 700 800 900<br>Damage: 60 90 120<br>Aura Move Speed: 5 7 9<br>Aura Attack Speed: 5 10 15<br>Aura Radius: 900"},
'194': {"cost": "5000", "name": "Necronomicon", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "90.0", "details": [["ARCHER MANA BURN:", "125 175 225"], ["WARRIOR LAST WILL DMG:", "550 675 800"], ["+", "10 15 20 Strength"], ["ARCHER DAMAGE:", "60 90 120"], ["+", "1 1.25 1.5 Mana Regeneration"], ["WARRIOR HEALTH:", "700 800 900"], ["WARRIOR MANA BREAK:", "30 40 50"], ["%ARCHER AURA SPEED:", "5 10 15"], ["WARRIOR DAMAGE:", "75 100 125"], ["ARCHER HEALTH:", "700 800 900"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Considered the ultimate in necromancy and demonology, a powerful malefic force is locked within its pages.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/necronomicon_3.png", "description": "<h1>Active: Demonic Summoning</h1>Summons a Warrior and an Archer to fight for you for 50 seconds.<br><br><h1>Warrior:</h1>Burns mana every hit, and deals magical damage to whoever kills it. Gains True Sight at level 3.<br>Health: 700 800 900<br>Damage: 75 100 125<br>Mana Break Damage: 30 40 50<br>Last Will Damage: 550 675 800<br><br><h1>Archer:</h1>Has a passive movement and attack speed aura. Gains Purge at Level 3.<br>Health: 700 800 900<br>Damage: 60 90 120<br>Aura Move Speed: 5 7 9<br>Aura Attack Speed: 5 10 15<br>Aura Radius: 900"},
'197': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'198': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'199': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'2': {"cost": "420", "name": "Blades of Attack", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "9 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "The damage of these small, concealable blades should not be underestimated.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/blades_of_attack.png", "description": ""},
'20': {"cost": "165", "name": "Circlet", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "2 All Attributes"], ["BEHAVIOR:", ["Passive"]]], "lore": "An elegant circlet designed for human princesses.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/circlet.png", "description": ""},
'200': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'201': {"cost": "3965", "name": "Dagon", "scepter_mods": [], "scepter": "", "notes": ["Instantly kills illusions."], "mana": "180", "cooldown": "35.0 30.0 25.0 20.0 15.0", "details": [["+", "3 All Attributes"], ["BURST DAMAGE:", "400 500 600 700 800"], ["CAST RANGE:", "600 650 700 750 800"], ["+", "15 18 21 24 27 Intelligence"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 650 700 750 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A lesser wand that grows in power the longer it is used, it brings magic to the fingertips of the user.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dagon_2.png", "description": "<h1>Active: Energy Burst</h1> Emits a powerful burst of magical damage upon a targeted enemy unit. Upgradable.<br><br>Damage: 400 500 600 700 800<br>Range: 600 650 700 750 800<br>Mana Cost: 180"},
'202': {"cost": "5215", "name": "Dagon", "scepter_mods": [], "scepter": "", "notes": ["Instantly kills illusions."], "mana": "180", "cooldown": "35.0 30.0 25.0 20.0 15.0", "details": [["+", "3 All Attributes"], ["+", "15 18 21 24 27 Intelligence"], ["CAST RANGE:", "600 650 700 750 800"], ["BURST DAMAGE:", "400 500 600 700 800"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 650 700 750 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A lesser wand that grows in power the longer it is used, it brings magic to the fingertips of the user.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dagon_3.png", "description": "<h1>Active: Energy Burst</h1> Emits a powerful burst of magical damage upon a targeted enemy unit. Upgradable.<br><br>Damage: 400 500 600 700 800<br>Range: 600 650 700 750 800<br>Mana Cost: 180"},
'203': {"cost": "6465", "name": "Dagon", "scepter_mods": [], "scepter": "", "notes": ["Instantly kills illusions."], "mana": "180", "cooldown": "35.0 30.0 25.0 20.0 15.0", "details": [["BURST DAMAGE:", "400 500 600 700 800"], ["+", "15 18 21 24 27 Intelligence"], ["CAST RANGE:", "600 650 700 750 800"], ["+", "3 All Attributes"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 650 700 750 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A lesser wand that grows in power the longer it is used, it brings magic to the fingertips of the user.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dagon_4.png", "description": "<h1>Active: Energy Burst</h1> Emits a powerful burst of magical damage upon a targeted enemy unit. Upgradable.<br><br>Damage: 400 500 600 700 800<br>Range: 600 650 700 750 800<br>Mana Cost: 180"},
'204': {"cost": "7715", "name": "Dagon", "scepter_mods": [], "scepter": "", "notes": ["Instantly kills illusions."], "mana": "180", "cooldown": "35.0 30.0 25.0 20.0 15.0", "details": [["BURST DAMAGE:", "400 500 600 700 800"], ["CAST RANGE:", "600 650 700 750 800"], ["+", "3 All Attributes"], ["+", "15 18 21 24 27 Intelligence"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 650 700 750 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A lesser wand that grows in power the longer it is used, it brings magic to the fingertips of the user.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dagon_5.png", "description": "<h1>Active: Energy Burst</h1> Emits a powerful burst of magical damage upon a targeted enemy unit.<br><br>Damage: 400 500 600 700 800<br>Range: 600 650 700 750 800<br>Mana Cost: 180"},
'205': {"cost": "1100", "name": "Rod of Atos Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'206': {"cost": "3030", "name": "Rod of Atos", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "16", "details": [["+", "20 Intelligence"], ["CRIPPLE DURATION:", "2.0"], ["+", "6 Agility"], ["+", "15 Strength"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1150"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Atos, the Lord of Blight, has his essence stored in this deceptively simple wand.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/rod_of_atos.png", "description": "<h1>Active: Cripple</h1>Roots the target for 2.0 seconds.<br><br>Range: 1150"},
'207': {"cost": "1550", "name": "Abyssal Blade Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'208': {"cost": "6400", "name": "Abyssal Blade", "scepter_mods": [], "scepter": "", "notes": ["The stun is melee range.", "Multiple sources of damage block do not stack.", "Does not stack with other bashes.", "The following heroes cannot trigger Bash on this item: Spirit Breaker, Faceless Void, Slardar, and Troll Warlord."], "mana": "75", "cooldown": "35", "details": [["+", "250 Health"], ["BLOCK DAMAGE RANGED:", "35"], ["%BASH RANGED CHANCE:", "10"], ["BASH BONUS DAMAGE:", "100"], ["+", "10 Strength"], ["BASH STUN DURATION:", "1.4"], ["+", "7 HP Regeneration"], ["OVERWHELM STUN DURATION:", "2"], ["BLOCK CHANCE:", "50"], ["BLOCK DAMAGE MELEE:", "70"], ["%BASH MELEE CHANCE:", "25"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["140"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The lost blade of the Commander of the Abyss, this edge cuts into an enemy's soul.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/abyssal_blade.png", "description": "<h1>Active: Overwhelm</h1> Stuns a target enemy unit for 2 seconds. <br><br>Pierces Spell Immunity.<br><br>Range: 140<br><h1>Passive: Bash</h1> Grants melee heroes a 25% chance on hit to stun the target for 1.4 seconds and deal 100 bonus magical damage. Bash pierces evasion. Bash chance for ranged heroes is 10.<br><h1>Passive: Damage Block</h1> Grants a 50 chance to block 70 damage from incoming attacks on melee heroes, and 35 damage on ranged."},
'209': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'21': {"cost": "1000", "name": "Ogre Axe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "10 Strength"], ["BEHAVIOR:", ["Passive"]]], "lore": "You grow stronger just by holding it.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ogre_axe.png", "description": ""},
'210': {"cost": "3400", "name": "Heaven's Halberd", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "18", "details": [["+", "20 Strength"], ["ATTACK SLOW MELEE:", "-20"], ["+", "25 Damage"], ["DISARM RANGED DURATION:", "5.0"], ["DISARM CAST RANGE:", "600"], ["%MAIM CHANCE:", "35"], ["ATTACK SLOW RANGED:", "-10"], ["+", "25 Evasion"], ["%MOVEMENT SLOW RANGED:", "-10"], ["%MOVEMENT SLOW MELEE:", "-20"], ["DISARM MELEE DURATION:", "3.0"], ["MAIM DURATION:", "5.0"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "This halberd moves with the speed of a smaller weapon, allowing the bearer to win duels that a heavy edge would not.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/heavens_halberd.png", "description": "<h1>Active: Disarm</h1>Prevents a target from attacking for 3.0 seconds on melee targets, and 5.0 seconds on ranged targets.<br><br>Range: 600 <br><h1>Passive: Lesser Maim</h1>Each attack has a 35% chance to reduce enemy hero movement speed by -20 and attack speed by -20 if the user is melee. Reduces enemy hero movement by -10 and attack speed by -10 if the user is ranged. Effect lasts 5.0 seconds."},
'211': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'212': {"cost": "965", "name": "Ring of Aquila", "scepter_mods": [], "scepter": "", "notes": ["Multiple instances of Aquila Aura do not stack.", "Does not stack with armor auras from Ring of Basilius or Ring of Aquila."], "mana": "", "cooldown": "", "details": [["+", "3 Intelligence"], ["AURA BONUS ARMOR:", "2"], ["+", "3 Strength"], ["+", "10 Damage"], ["AURA MANA REGEN:", "0.5"], ["+", "9 Agility"], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Toggle"]]], "lore": "The ring of the fallen Warlord Aquila continues to support armies in battle.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ring_of_aquila.png", "description": "<h1>Passive: Aquila Aura</h1>Grants 0.5 mana regeneration and 2 armor to nearby allies.<br><br>Radius: 900<br><h1>Toggle: Aura</h1> Deactivate to stop affecting non-hero units."},
'213': {"cost": "0", "name": "Tranquil Boots Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'214': {"cost": "1050", "name": "Tranquil Boots", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "13.0", "details": [["+", "13 HP Regeneration"], ["+", "90 Movement Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "While they increase the longevity of the wearer, this boot is not particularly reliable.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/tranquil_boots.png", "description": "<h1>Passive: Break</h1> Whenever you attack or are attacked, the bonus 13 HP regen is lost and the movement speed bonus is reduced to 65 for 13 seconds.<br>Flat movement speed bonuses from multiple pairs of boots do not stack."},
'215': {"cost": "1300", "name": "Shadow Amulet", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "7.0", "details": [["+", "20 Attack Speed"], ["FADE TIME:", "1.25"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Other (Immediate)", "Targets Units", "Doesnt Cancel Channeling", "Casting Stops Movement"]]], "lore": "A small talisman that clouds the senses of one's enemies when held perfectly still.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/shadow_amulet.png", "description": "<h1>Active: Fade</h1>Grants invisibility to you or a target allied hero as long as the target unit remains still. <br><br>Has a 1.25 second fade time, and breaks instantly upon moving. <br><br>There is no cooldown when using this item on yourself.<br><br>Range: 600"},
'216': {"cost": "100", "name": "Enchanted Mango", "scepter_mods": [], "scepter": "", "notes": ["Hold Control to use on a nearby allied hero."], "mana": "", "cooldown": "", "details": [["+", "1.0 HP Regeneration"], ["MANA RESTORED:", "175"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Usable On Others", "Casting Stops Attack"]]], "lore": "The bittersweet flavors of Jidi Isle are irresistible to amphibians.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/enchanted_mango.png", "description": "<h1>Use: Eat Mango</h1> Instantly restores 175 mana.<br><br>Range: 400"},
'217': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'218': {"cost": "180", "name": "Observer and Sentry Wards", "scepter_mods": [], "scepter": "", "notes": ["Hold Control to give one ward to an allied hero."], "mana": "", "cooldown": "0", "details": [["SENTRY TRUE SIGHT RANGE:", "850"], ["OBSERVER VISION RANGE:", "1600"], ["OBSERVER DURATION (MINUTES):", "6"], ["SENTRY DURATION (MINUTES):", "4"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "AOE", "Usable On Others"]]], "lore": "Advancements in stacking efficiency have made wards easier to carry than ever.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ward_dispenser.png", "description": "<h1>Use: Plant</h1> Plant the currently active ward. Double-Click to switch the currently active ward.<br><br>Range: 500"},
'219': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'22': {"cost": "1000", "name": "Blade of Alacrity", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "10 Agility"], ["BEHAVIOR:", ["Passive"]]], "lore": "A long blade imbued with time magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/blade_of_alacrity.png", "description": ""},
'220': {"cost": "4500", "name": "Boots of Travel", "scepter_mods": [], "scepter": "", "notes": ["Movement speed bonuses from boots do not stack."], "mana": "75", "cooldown": "45.0", "details": [["+", "100 Movement Speed"], ["TARGET TYPE:", ["Hero", "Creep"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Point Target", "Channeled", "Targets Units", "No Target", "Casting Stops Attack"]]], "lore": "Winged boots that grant omnipresence.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/travel_boots_2.png", "description": "<h1>Active: Teleport</h1> Teleports you to any allied structure or unit, including heroes. Teleporting to a unit is interrupted if the target unit dies.<br><br>Shares a cooldown with Town Portal Scroll.<br>Flat movement speed bonuses from multiple pairs of boots do not stack."},
'221': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'222': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'223': {"cost": "2625", "name": "Meteor Hammer", "scepter_mods": [], "scepter": "", "notes": [], "mana": "125", "cooldown": "28", "details": [["+", "12 Strength"], ["+", "4.0 HP Regeneration"], ["+", "12 Intelligence"], ["+", "1.5 Mana Regeneration"], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Point Target", "AOE", "Channeled"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/meteor_hammer.png", "description": "<h1>Active: Meteor Hammer</h1> CHANNELED - After a successful channel, summons a meteor that strikes a 300 AoE, stunning enemies for 2.0 seconds and dealing impact damage. Continues to deal damage over time to enemies units and buildings for 6 seconds.<BR><BR>Building Impact Damage: 75 <BR>Building Over Time Damage: 50 <BR><BR>Non-Building Impact Damage: 150 <BR>Non-Building Over Time Damage: 90 <BR><BR>Channel Duration: 2.5 seconds.<BR>Landing Time: .5 seconds."},
'224': {"cost": "0", "name": "Nullifier Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'225': {"cost": "4700", "name": "Nullifier", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "13.0", "details": [["+", "5 Armor"], ["+", "65 Damage"], ["+", "5 HP Regeneration"], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/nullifier.png", "description": ""},
'226': {"cost": "4000", "name": "Lotus Orb", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "15.0", "details": [["+", "250 Mana"], ["ECHO CAST RANGE:", "900"], ["ECHO DURATION:", "6"], ["+", "5.5 HP Regeneration"], ["+", "10 Armor"], ["+", "1.75 Mana Regeneration"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The jewel at its center still reflects a pale image of its creator.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/lotus_orb.png", "description": ""},
'227': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'228': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'229': {"cost": "2625", "name": "Solar Crest", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "7.0", "details": [["SHINE DURATION:", "7"], ["SHINE CAST RANGE:", "1000"], ["+", "1.0 Mana Regeneration"], ["+", "10 Armor"], ["%ACCURACY:", "40"], ["+", "20 Evasion"], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A talisman forged to honor the daytime sky.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/solar_crest.png", "description": "<h1>Active: Shine</h1>When cast on an ally, grants them 10 armor and 20% evasion. When cast on an enemy, removes 10 of their armor and grants your allies 40 Accuracy on the target. <br><br>Removes the armor and evasion from the caster when used. <br><br> Cannot target magic immune enemies.<br><br>Range: 1000"},
'23': {"cost": "1000", "name": "Staff of Wizardry", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "10 Intelligence"], ["BEHAVIOR:", ["Passive"]]], "lore": "A staff of magical powers passed down from the eldest mages.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/staff_of_wizardry.png", "description": ""},
'230': {"cost": "1700", "name": "Guardian Greaves Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'231': {"cost": "5450", "name": "Guardian Greaves", "scepter_mods": [], "scepter": "", "notes": ["The aura boost only applies to heroes."], "mana": "0", "cooldown": "40", "details": [["MEND HEAL:", "250"], ["AURA BOOST ARMOR:", "15"], ["+", "55 Movement Speed"], ["AURA HEALTH REGEN:", "3.5"], ["AURA ARMOR:", "2"], ["AURA/MEND RADIUS:", "900"], ["AURA BOOST HEALTH REGEN:", "12"], ["+", "5 Armor"], ["+", "250 Mana"], ["+", "5 All Attributes"], ["MEND MANA RESTORE:", "160"], ["%AURA BOOST THRESHOLD:", "20"], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "One of many holy instruments constructed to honor the Omniscience.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/guardian_greaves.png", "description": ""},
'232': {"cost": "2350", "name": "Aether Lens", "scepter_mods": [], "scepter": "", "notes": ["Passive does not stack."], "mana": "", "cooldown": "", "details": [["+", "250 Cast Range"], ["+", "450 Mana"], ["+", "1.25 Mana Regeneration"], ["BEHAVIOR:", ["Passive"]]], "lore": "Polished with the incantation of his final breath, the gift of a dying mage to his sickly son.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/aether_lens.png", "description": "<h1>Passive: Aethereal Focus</h1> Increases targeted spell and item cast range by 250."},
'233': {"cost": "600", "name": "Aether Lens Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'234': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'235': {"cost": "5900", "name": "Octarine Core", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%COOLDOWN REDUCTION:", "25"], ["%HERO SPELL LIFESTEAL:", "25"], ["+", "425 Health"], ["+", "425 Mana"], ["%CREEP SPELL LIFESTEAL:", "5"], ["+", "25 Intelligence"], ["BEHAVIOR:", ["Passive"]]], "lore": "At the core of spellcraft are spectrums only the very gifted can sense.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/octarine_core.png", "description": "<h1>Passive: Cooldown Reduction</h1>Reduces the cooldown time of all spells and items by 25.<br><h1>Passive: Spell Lifesteal</h1>25% of spell damage dealt to enemy heroes is returned to the caster as health, regardless of spell damage type. <br><br>Lifesteal reduced to 5% against creeps."},
'236': {"cost": "1900", "name": "Dragon Lance", "scepter_mods": [], "scepter": "", "notes": ["Passive does not stack."], "mana": "", "cooldown": "", "details": [["+", "12 Strength"], ["+", "140 Attack Range <font color='#7d7d7d'>(Ranged Only)</font>"], ["+", "12 Agility"], ["BEHAVIOR:", ["Passive"]]], "lore": "The forward charge of the wyvern host grants no quarter.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dragon_lance.png", "description": "<h1>Passive: Dragon's Reach</h1> Increases attack range of ranged heroes by 140."},
'237': {"cost": "70", "name": "Faerie Fire", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "5.0", "details": [["+", "2 Damage"], ["HEALTH RESTORED:", "85"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "The ethereal flames from the ever-burning ruins of Kindertree ignite across realities.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/faerie_fire.png", "description": "<h1>Use: Imbue</h1> Instantly restores 85 health."},
'238': {"cost": "0", "name": "Iron Talon Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'239': {"cost": "0", "name": "Iron Talon", "scepter_mods": [], "scepter": "", "notes": ["Has a 4 second cooldown on Trees.", "Cannot target ancients."], "mana": "0", "cooldown": "20.0", "details": [["QUELL RANGED DAMAGE:", "7"], ["CAST RANGE ON WARDS:", "450"], ["+", "2 HP Regeneration"], ["QUELL MELEE DAMAGE:", "24"], ["CAST RANGE:", "350"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Tree", "Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A simple but effective weapon devised to quell a great Hellbear uprising.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/iron_talon.png", "description": "<h1>Active: Chop</h1>Targets a non-player enemy unit to remove 40 of its current HP.<br><br>If cast on a tree or ward, instantly destroys it.<br><br>Unit Range: 350<br>Tree Range: 350<BR>Ward Range: 450<br><h1>Passive: Quell</h1>Increases attack damage against non-hero units by 24 for melee heroes, and 7 for ranged."},
'24': {"cost": "2150", "name": "Ultimate Orb", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "10 All Attributes"], ["BEHAVIOR:", ["Passive"]]], "lore": "A mystical orb containing the essence of life.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ultimate_orb.png", "description": ""},
'240': {"cost": "300", "name": "Blight Stone", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ARMOR REDUCTION:", "-2"], ["DURATION:", "8.0"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "An unnerving stone unearthed beneath the Fields of Endless Carnage.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/blight_stone.png", "description": "<h1>Passive: Lesser Corruption</h1> Your attacks reduce the target's armor by -2 for 8.0 seconds."},
'241': {"cost": "30", "name": "Tango (Shared)", "scepter_mods": [], "scepter": "", "notes": ["Heals for double duration when used on a Ironwood Tree or Wards."], "mana": "", "cooldown": "60.0", "details": [["HEAL DURATION:", "16.0"], ["EAT WARD CAST RANGE:", "450"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Tree", "Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["165"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Om nom nom.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/tango_single.png", "description": "<h1>Use: Devour</h1> Consumes a target tree to gain 7.0 health regeneration for 16.0 seconds. Consuming a ward or Ironwood Tree doubles the heal amount.<br><br>Range: 165<br>Ward Range: 450"},
'242': {"cost": "3550", "name": "Crimson Guard", "scepter_mods": [], "scepter": "", "notes": ["Multiple sources of damage block do not stack."], "mana": "", "cooldown": "46.0", "details": [["+", "6 HP Regeneration"], ["+", "250 Health"], ["GUARD DURATION:", "12"], ["GUARD RADIUS:", "900"], ["GUARD DAMAGE BLOCK:", "60"], ["+", "2 All Attributes"], ["BLOCK DAMAGE MELEE:", "70"], ["GUARD ARMOR:", "2"], ["BLOCK CHANCE:", "50"], ["BLOCK DAMAGE RANGED:", "35"], ["+", "5 Armor"], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A cuirass originally built to protect against the dreaded Year Beast.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/crimson_guard.png", "description": "<h1>Active: Guard</h1> For 12 seconds, grant nearby allied heroes and buildings +2 armor, and a 100% chance to block 60 damage from each incoming attack.<br><br>Units may only be affected by Guard once every 46 seconds.<br><br>Radius: 900<br><h1>Passive: Damage Block</h1> Grants a 50 chance to block 70 damage from incoming attacks on melee heroes, and 35 damage on ranged."},
'243': {"cost": "600", "name": "Crimson Guard Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'244': {"cost": "250", "name": "Wind Lace", "scepter_mods": [], "scepter": "", "notes": ["Multiple instances do not stack."], "mana": "", "cooldown": "", "details": [["+", "20 Movement Speed"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Hasten to battle on wind-touched heels.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/wind_lace.png", "description": "Bonuses from multiple Wind Laces do not stack."},
'245': {"cost": "1000", "name": "Bloodthorn Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'246': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'247': {"cost": "4000", "name": "Moon Shard", "scepter_mods": [], "scepter": "", "notes": ["The bonus night vision works during Night Stalker's Darkness ability."], "mana": "", "cooldown": "", "details": [["CONSUME ATTACK SPEED:", "60"], ["SHADE BONUS NIGHT VISION:", "300"], ["+", "120 Attack Speed"], ["CONSUME NIGHT VISION:", "150"], ["TARGET TYPE:", ["Hero", "Other"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Targets Units", "Other (Immediate)"]]], "lore": "Said to be a tear from the lunar goddess Selemene.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/moon_shard.png", "description": "<h1>Use: Consume</h1> Consume the Moon Shard to permanently gain 60 attack speed and 150 bonus night vision. Max 1 use.<br><h1>Passive: Shade Sight</h1>Grants 300 bonus night vision."},
'248': {"cost": "700", "name": "Silver Edge Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'249': {"cost": "5550", "name": "Silver Edge", "scepter_mods": [], "scepter": "", "notes": ["Backstab does not pierce spell immunity.", "Backstab cannot miss."], "mana": "75", "cooldown": "24.0", "details": [["+", "30 Attack Speed"], ["SHADOW WALK DURATION:", "14.0"], ["+", "15 All Attributes"], ["+", "30 Damage"], ["REDUCTION DURATION:", "5"], ["BONUS ATTACK DAMAGE:", "175"], ["%ENEMY DAMAGE REDUCTION:", "-50"], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "Once used to slay an unjust king, only to have the kingdom erupt into civil war in the aftermath.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/silver_edge.png", "description": "<h1>Active: Shadow Walk</h1>Makes you invisible for 14.0 seconds, or until you attack or cast a spell. While invisible, you move 25 faster and can move through units. <br><br>Attacking to end the invisibility will deal 175 bonus physical damage to the target, and for 5 seconds, disable their passive abilities."},
'25': {"cost": "500", "name": "Gloves of Haste", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "20 Attack Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "A pair of magical gloves that seems to render weapons weightless.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/gloves.png", "description": ""},
'250': {"cost": "7195", "name": "Bloodthorn", "scepter_mods": [], "scepter": "", "notes": ["Critical Strike does not work against buildings."], "mana": "100", "cooldown": "18.0", "details": [["%CRITICAL DAMAGE:", "175"], ["+", "25 Intelligence"], ["+", "60 Damage"], ["%CRITICAL CHANCE:", "20"], ["%SILENCE CRITICAL DAMAGE:", "140"], ["+", "2.25 Mana Regeneration"], ["%SILENCE INCREASED DAMAGE:", "30"], ["+", "30 Attack Speed"], ["SILENCE DURATION:", "5"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A reviled blade that bites deeper with each wriggle of its victim's final throes.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/bloodthorn.png", "description": "<h1>Active: Soul Rend</h1> Silences a target for 5 seconds. At the end of the silence, an additional 30% of all damage taken during the silence will be dealt to the target as magical damage.<br><br>All attacks on the silenced target will have True Strike and 100 chance to crit for 140 damage.<br><br>Range: 900<br><h1>Passive: Critical Strike</h1> Grants a 20% chance for attacks to inflict 175 damage."},
'251': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'252': {"cost": "2650", "name": "Echo Sabre", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "5.0", "details": [["+", "15 Damage"], ["+", "10 Strength"], ["+", "10 Attack Speed"], ["SLOW DURATION:", "0.7"], ["+", "0.75 Mana Regeneration"], ["+", "10 Intelligence"], ["%MOVEMENT SLOW:", "100"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A deceptively swift blade imbued with resonant magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/echo_sabre.png", "description": "<h1>Passive: Echo Strike</h1> Causes melee attacks to attack twice in quick succession. The double attacks apply a 100% movement slow for 0.7 seconds on each strike."},
'253': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'254': {"cost": "1850", "name": "Glimmer Cape", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90", "cooldown": "14.0", "details": [["+", "15 Magic Resistance"], ["+", "20 Attack Speed"], ["%GLIMMER MAGIC RESISTANCE:", "45"], ["GLIMMER DURATION:", "5"], ["GLIMMER FADE TIME:", "0.6"], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Other (Immediate)", "Targets Units", "Doesnt Cancel Channeling", "Casting Stops Movement"]]], "lore": "The stolen cape of a master illusionist.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/glimmer_cape.png", "description": "<h1>Active: Glimmer</h1> After a 0.6 second delay, grants invisibility and 45% magic resistance to you or a target allied unit for 5 seconds.<br><br>Range: 800<br><br>Can be cast while channelling."},
'255': {"cost": "1350", "name": "Aeon Disk Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'256': {"cost": "3350", "name": "Aeon Disk", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "90.0", "details": [["+", "250 Health"], ["+", "250 Mana"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/aeon_disk.png", "description": "<h1>Passive: Combo Breaker</h1> When you take damage and your health falls below 70%, a strong dispel is applied and you gain a 2.5 second buff that causes all damage you deal and are dealt to be reduced to zero. Only triggers on player based damage. <br><br><h1>Passive: Status Resistance</h1> Reduces status effect durations by 25."},
'257': {"cost": "150", "name": "Tome of Knowledge", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0", "details": [["XP BONUS BASE:", "700"], ["XP BONUS PER USE:", "135"], ["BEHAVIOR:", ["No Target", "Casting Stops Attack"]]], "lore": "That which raises beast to man and man to god.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/tome_of_knowledge.png", "description": "<h1>Use: Enlighten</h1>Grants you 700 experience plus 135 per tome consumed by your team.<br><br>Tomes Used By Team: %customval_team_tomes_used%"},
'258': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'259': {"cost": "1950", "name": "Kaya", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "16 Intelligence"], ["%+Manacost and Manaloss Reduction", "10"], ["%+Spell Amplification", "10"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/kaya.png", "description": ""},
'26': {"cost": "1100", "name": "Morbid Mask", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%LIFESTEAL:", "15"], ["+", "10 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "A mask that drains the energy of those caught in its gaze.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/lifesteal.png", "description": "<h1>Passive: Lifesteal</h1>Heals the attacker for 15% of attack damage dealt."},
'260': {"cost": "1000", "name": "Refresher Shard", "scepter_mods": [], "scepter": "", "notes": ["Refresher Shard is shareable."], "mana": "", "cooldown": "200.0", "details": [["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/refresher_shard.png", "description": "<h1>Use: Reset Cooldowns</h1>Resets the cooldowns of all your items and abilities."},
'262': {"cost": "0", "name": "Hurricane Pike Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'263': {"cost": "4615", "name": "Hurricane Pike", "scepter_mods": [], "scepter": "", "notes": ["Will not work on a unit inside Chronosphere, Duel, or Black Hole.", "Self-cast will use Hurricane Pike on yourself.", "Hurricane Pike doesn't interrupt the target's actions."], "mana": "25", "cooldown": "23.0", "details": [["+", "5.5 HP Regeneration"], ["UNLIMITED RANGE ATTACKS:", "4"], ["CAST RANGE ON ENEMY:", "400"], ["+", "13 Intelligence"], ["+", "20 Agility"], ["UNLIMITED RANGE DURATION:", "5"], ["+", "15 Strength"], ["+", "140 Attack Range <font color='#7d7d7d'>(Ranged Only)</font>"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Other"]], ["TARGETS:", ["Allies and Enemies", "Other"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "A legendary pike once held as royal sigil of the ancient wyvern riders.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/hurricane_pike.png", "description": "<h1>Active: Hurricane Thrust</h1> Pushes you and target enemy 450 units away from each other, and for 5 seconds, allows you to make 4 attacks against the target without range restrictions and with +100 attack speed.<br><br>Works like Force Staff when used on self or allies.<br><br>Allied Range: 800<br>Enemy Range: 400<br><h1>Passive: Dragon's Reach</h1> Increases attack range of ranged heroes by 140."},
'265': {"cost": "225", "name": "Infused Raindrops", "scepter_mods": [], "scepter": "", "notes": ["Uses at most one charge per damage instance."], "mana": "", "cooldown": "7.0", "details": [["+", "0.5 Mana Regeneration"], ["MAGIC DAMAGE BLOCK:", "120"], ["INITIAL CHARGES:", "5"], ["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Elemental protection from magical assaults.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/infused_raindrop.png", "description": "<h1>Passive: Magical Damage Block</h1> Consumes a charge to block 120 magic damage from damage instances over 50 damage. <br><br>Comes with 5 charges. When the charges are gone, the item disappears."},
'266': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'267': {"cost": "2975", "name": "Spirit Vessel", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "7.0", "details": [["+", "1.0 Mana Regeneration"], ["+", "2 All Attributes"], ["+", "250 Health"], ["+", "30 Movement Speed"], ["+", "2 Armor"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["950"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/items/spirit_vessel.png", "description": "<h1>Active: Soul Release</h1> When used against enemies, it reduces health by 3.0 of current health per second, and reduces HP regeneration and healing by 70. Deals 20 damage per second. <br><br>When used on allies, it increases health by 1.0% of current health per second, and increases HP regeneration and healing by 20. Provides 35 health regeneration per second. <br><br>Lasts 8.0 seconds. <br><br>Gains charges every time an enemy hero dies within 1400 units. Only the closest Spirit Vessel to the dying hero will gain a charge.<br><br>Cast Range: 950 "},
'27': {"cost": "300", "name": "Ring of Regen", "scepter_mods": [], "scepter": "", "notes": ["Ring of Regen is shareable."], "mana": "", "cooldown": "", "details": [["+", "1.5 HP Regeneration"], ["BEHAVIOR:", ["Passive"]]], "lore": "This ring is considered a good luck charm among the Gnomes.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ring_of_regen.png", "description": ""},
'275': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'276': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'28': {"cost": "325", "name": "Sage's Mask", "scepter_mods": [], "scepter": "", "notes": ["Sage's Mask is shareable."], "mana": "", "cooldown": "", "details": [["+", "0.5 Mana Regeneration"], ["BEHAVIOR:", ["Passive"]]], "lore": "A mask commonly used by mages and warlocks for various rituals.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/sobi_mask.png", "description": ""},
'29': {"cost": "500", "name": "Boots of Speed", "scepter_mods": [], "scepter": "", "notes": ["Movement speed bonuses from multiple pairs of boots do not stack."], "mana": "", "cooldown": "", "details": [["+", "50 Movement Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "Fleet footwear, increasing movement.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/boots.png", "description": "Flat movement speed bonuses from multiple pairs of boots do not stack."},
'3': {"cost": "1200", "name": "Broadsword", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "18 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "The classic weapon of choice for knights, this blade is sturdy and reliable for slaying enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/broadsword.png", "description": ""},
'30': {"cost": "900", "name": "Gem of True Sight", "scepter_mods": [], "scepter": "", "notes": ["Disabled while on a courier."], "mana": "", "cooldown": "", "details": [["TRUE SIGHT RADIUS:", "900"], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Not one thrall creature of the depths,<br>Nor spirit bound in drowning's keep,<br>Nor Maelrawn the Tentacular,<br>Shall rest till seas, gem comes to sleep.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/gem.png", "description": "<h1>Passive: True Sight</h1> Grants the ability to see invisible units and wards to any allied vision within 900 range of its carrier. <br><h1>Passive: Everlasting</h1><font color='#e03e2e'>Dropped on death, and cannot be destroyed.</font>"},
'31': {"cost": "550", "name": "Cloak", "scepter_mods": [], "scepter": "", "notes": ["Stacks multiplicatively with other sources of spell resistance."], "mana": "", "cooldown": "", "details": [["+", "15 Magic Resistance"], ["BEHAVIOR:", ["Passive"]]], "lore": "A cloak made of a magical material that works to dispel any magic cast on it.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/cloak.png", "description": ""},
'32': {"cost": "1450", "name": "Talisman of Evasion", "scepter_mods": [], "scepter": "", "notes": ["Stacks diminishingly with other sources of Evasion."], "mana": "", "cooldown": "", "details": [["+", "20 Evasion"], ["BEHAVIOR:", ["Passive"]]], "lore": "A necklace that allows you to anticipate enemy attacks.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/talisman_of_evasion.png", "description": ""},
'33': {"cost": "1000", "name": "Cheese", "scepter_mods": [], "scepter": "", "notes": ["Cheese is shareable."], "mana": "", "cooldown": "40.0", "details": [["HEALTH RESTORED:", "2500"], ["MANA RESTORED:", "1500"], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "Made from the milk of a long lost Furbolg vendor, it restores the vitality of those who taste it.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/cheese.png", "description": "<h1>Use: Fondue</h1> Instantly restores 2500 health and 1500 mana."},
'34': {"cost": "200", "name": "Magic Stick", "scepter_mods": [], "scepter": "", "notes": ["Gains charges for spells cast by visible enemies in 1200 range.", "Certain abilities and item abilities will not add charges."], "mana": "", "cooldown": "13.0", "details": [["HEALTH/MANA PER CHARGE:", "15"], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A simple wand used to channel magic energies, it is favored by apprentice wizards and great warlocks alike.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/magic_stick.png", "description": "<h1>Active: Energy Charge</h1> Instantly restores 15 health and mana per charge stored.<br><br> Max 10 charges. Gains a charge whenever a visible enemy within 1200 range uses an ability."},
'35': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'36': {"cost": "400", "name": "Magic Wand", "scepter_mods": [], "scepter": "", "notes": ["Certain abilities and item abilities will not add charges.", "Gains charges for spells cast by visible enemies in 1200 range."], "mana": "", "cooldown": "13.0", "details": [["HEALTH/MANA PER CHARGE:", "15"], ["+", "1.5 HP Regeneration"], ["+", "2 All Attributes"], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "A simple wand used to channel magic energies, it is favored by apprentice wizards and great warlocks alike.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/magic_wand.png", "description": "<h1>Active: Energy Charge</h1>Instantly restores 15 health and mana per charge stored. <br><br>Max 17 charges. Gains a charge whenever a visible enemy within 1200 range uses an ability."},
'37': {"cost": "1500", "name": "Ghost Scepter", "scepter_mods": [], "scepter": "", "notes": ["Shares cooldown with Ethereal Blade.", "Ends if you become Spell Immune, and will have no effect if you are already Spell Immune."], "mana": "", "cooldown": "20.0", "details": [["+", "5 All Attributes"], ["GHOST DURATION:", "4.0"], ["%GHOST ADDED MAGIC DAMAGE:", "-40"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Imbues the wielder with a ghostly presence, allowing them to evade physical damage.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ghost.png", "description": "<h1>Active: Ghost Form</h1> You enter ghost form for 4.0 seconds, becoming immune to physical damage, but are unable to attack and -40 more vulnerable to magic damage."},
'38': {"cost": "50", "name": "Clarity", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DURATION:", "50"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["250"]], ["BEHAVIOR:", ["Targets Units", "Other (Immediate)", "Casting Stops Attack"]]], "lore": "Clear water that enhances the ability to meditate.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/clarity.png", "description": "<h1>Use: Replenish</h1> Grants 3.2 mana regeneration to the target for 50 seconds.<br><br>If the unit is attacked by an enemy hero or Roshan, the effect is lost.<br><br>Range: 250"},
'39': {"cost": "110", "name": "Healing Salve", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DURATION:", "8"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["250"]], ["BEHAVIOR:", ["Targets Units", "Other (Immediate)", "Casting Stops Attack"]]], "lore": "A magical salve that can quickly mend even the deepest of wounds.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/flask.png", "description": "<h1>Use: Salve</h1> Grants 50 health regeneration to the target for 8 seconds.<br><br>If the unit is attacked by an enemy hero or Roshan, the effect is lost.<br><br>Range: 250"},
'4': {"cost": "550", "name": "Chainmail", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "5 Armor"], ["BEHAVIOR:", ["Passive"]]], "lore": "A medium weave of metal chains.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/chainmail.png", "description": ""},
'40': {"cost": "180", "name": "Dust of Appearance", "scepter_mods": [], "scepter": "", "notes": ["Places a debuff on enemy units in the area that reveals them when they are invisible."], "mana": "0", "cooldown": "30.0", "details": [["RADIUS:", "1050"], ["%SLOW:", "-20"], ["DURATION:", "12"], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["1050"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "One may hide visage, but never volume.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/dust.png", "description": "<h1>Use: Reveal</h1>Reveals and slows invisible heroes by -20% in a 1050 radius around the caster for 12 seconds."},
'41': {"cost": "650", "name": "Bottle", "scepter_mods": [], "scepter": "", "notes": ["Bottle is shareable. Stored runes cannot be shared.", "If Bottle does not have full charges and is placed on a courier, the courier's movespeed will be slowed by 30%."], "mana": "", "cooldown": "0.5", "details": [["DURATION:", "2.5"], ["MANA RESTORED:", "40"], ["HEALTH RESTORED:", "80"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Usable On Others"]]], "lore": "An old bottle that survived the ages, the contents placed inside become enchanted.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/bottle.png", "description": "<h1>Active: Regenerate</h1>Consumes a charge to restore 80 health and 40 mana over 2.5 seconds. If the hero is attacked by an enemy hero or Roshan, the effect is lost.<br><br>The Bottle automatically refills at the fountain.<br><br>Hold Control to use on an allied hero.<br><br>Range: 350<br><h1>Passive: Store Rune</h1>Runes can be stored in the bottle for later use by right-clicking them. Unused runes will automatically activate after 2 minutes.<br><br>Using a stored rune fully refills the Bottle. Stored Bounty Runes replenish 2/3 charges."},
'42': {"cost": "80", "name": "Observer Ward", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0", "details": [["VISION RANGE:", "1600"], ["DURATION (MINUTES):", "6"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "AOE", "Usable On Others"]]], "lore": "A form of half-sentient plant, often cultivated by apprentice wizards.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ward_observer.png", "description": "<h1>Use: Plant</h1>Plants an Observer Ward, an invisible watcher that gives ground vision in a 1600 radius to your team. Lasts 6 minutes.<br><br>Hold Control to give one Observer Ward to an allied hero.<br><br>Range: 500"},
'43': {"cost": "100", "name": "Sentry Ward", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0", "details": [["DURATION (MINUTES):", "4"], ["TRUE SIGHT RANGE:", "850"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "AOE", "Usable On Others"]]], "lore": "A form of plant originally grown in the garden of a fearful king.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ward_sentry.png", "description": "<h1>Use: Plant</h1> Plants a Sentry Ward, an invisible watcher that grants True Sight, the ability to see invisible enemy units and wards, to any existing allied vision within a 850 radius.<br>Lasts 4 minutes.<br><br>Does not grant ground vision.<br>Hold Control to give one Sentry Ward to an allied hero.<br><br>Range: 500"},
'44': {"cost": "90", "name": "Tango", "scepter_mods": [], "scepter": "", "notes": ["Heals for double duration when used on a Ironwood Tree or Wards."], "mana": "", "cooldown": "", "details": [["HEAL DURATION:", "16.0"], ["EAT WARD CAST RANGE:", "450"], ["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Tree", "Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["165"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Forage to survive on the battlefield.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/tango.png", "description": "<h1>Use: Devour</h1> Consumes a target tree to gain 7.0 health regeneration for 16.0 seconds. Consuming a ward or Ironwood Tree doubles the heal amount.<br><br>Comes with 3 charges. Can be used on an allied hero to give them one Tango.<br><br>Range: 165<br>Ward Range: 450"},
'45': {"cost": "50", "name": "Animal Courier", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target"]]], "lore": "Losing the courier is punishable by death.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/courier.png", "description": "<h1>Use: Deploy Courier</h1> Deploys a creature to carry items to and from your team's base."},
'46': {"cost": "50", "name": "Town Portal Scroll", "scepter_mods": [], "scepter": "", "notes": ["If multiple heroes teleport to the same location in succession, the channeling time will be increased for each successive hero."], "mana": "75", "cooldown": "80.0", "details": [["CAST POINT:", ["0.0"]], ["TARGET TYPE:", ["Building"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Channeled", "Other (No Assist)", "Casting Stops Attack", "Doesnt Cancel Channeling"]]], "lore": "What a hero truly needs.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/tpscroll.png", "description": "<h1>Use: Teleport</h1>After channeling for 3.0 seconds, teleports you to a target friendly building. <br><br>Double-click to teleport to your team's base fountain."},
'47': {"cost": "2000", "name": "Boots of Travel Recipe", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'48': {"cost": "2500", "name": "Boots of Travel", "scepter_mods": [], "scepter": "", "notes": ["Movement speed bonuses from boots do not stack."], "mana": "75", "cooldown": "45.0", "details": [["+", "100 Movement Speed"], ["TARGET TYPE:", ["Hero", "Creep"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Point Target", "Channeled", "Targets Units", "No Target", "Casting Stops Attack"]]], "lore": "Winged boots that grant omnipresence.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/travel_boots.png", "description": "<h1>Active: Teleport</h1>Teleports you to an allied non-hero unit or structure. Teleporting to a unit is interrupted if the target unit dies.<br><br>Shares a cooldown with Town Portal Scroll.<br>Flat movement speed bonuses from multiple pairs of boots do not stack."},
'49': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5': {"cost": "1400", "name": "Claymore", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "21 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "A sword that can cut through armor, it's a commonly chosen first weapon for budding swordsmen.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/claymore.png", "description": ""},
'50': {"cost": "1340", "name": "Phase Boots", "scepter_mods": [], "scepter": "", "notes": ["Flat movement speed bonuses from multiple pairs of boots do not stack."], "mana": "", "cooldown": "8.0", "details": [["+", "24 Damage"], ["PHASE DURATION:", "2.5"], ["%PHASE MOVE BOOST MELEE:", "24"], ["+", "50 Movement Speed"], ["%PHASE MOVE BOOST RANGED:", "20"], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "Boots that allow the wearer to travel between the ether.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/phase_boots.png", "description": "<h1>Active: Phase</h1> Gives 24 increased movement speed on melee heroes, and 20 on ranged heroes, and lets you move through units for 2.5 seconds.<br>Flat movement speed bonuses from multiple pairs of boots do not stack."},
'5001': {"cost": "", "name": "Attacks", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": "Damage done by direct attacks."},
'5002': {"cost": "", "name": "Attribute Bonus", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/attribute_bonus.png", "description": "Improves all attributes per point spent"},
'5003': {"cost": "", "name": "Mana Break", "scepter_mods": [], "scepter": "", "notes": ["You can lifeleech the damage dealt by this skill with a Lifesteal aura.", "Mana Burn is blocked by spell immunity."], "mana": "", "cooldown": "", "details": [["MANA BURNED PER HIT:", "28 40 52 64"], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A modified technique of the Turstarkuri monks' peaceful ways is to turn magical energies on their owner.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/antimage_mana_break.png", "description": "Burns an opponent's mana on each attack. Mana Break deals 50% of the mana burned as damage to the target."},
'5004': {"cost": "", "name": "Blink", "scepter_mods": [], "scepter": "", "notes": ["You can use Blink to dodge incoming projectiles."], "mana": "60", "cooldown": "15 12 9 6", "details": [["RANGE:", "925 1000 1075 1150"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["BEHAVIOR:", ["Point Target", "Disabled By Root"]]], "lore": "In his encounter with the Dead Gods, Anti-Mage learned the value of being elusive.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/antimage_blink.png", "description": "Short distance teleportation that allows Anti-Mage to move in and out of combat."},
'5005': {"cost": "", "name": "Spell Shield", "scepter_mods": [], "scepter": "Causes Spell Shield to passively block and reflect a targeted spell once every 12 seconds.", "notes": ["Stacks multiplicatively with other spell resistance sources."], "mana": "", "cooldown": "", "details": [["%RESISTANCE:", "20 30 40 50"], ["BEHAVIOR:", ["Passive"]]], "lore": "Years of meditation and obsession with revenge have hardened Anti-Mage's skin against mystical opponents.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/antimage_spell_shield.png", "description": "Increases Anti-Mage's resistance to magic damage.<br><br>Upgradable by Aghanim's Scepter."},
'5006': {"cost": "", "name": "Mana Void", "scepter_mods": [], "scepter": "", "notes": ["Damage is calculated based on the primary target's mana, but applied to all enemies within the area of effect.", "The stun passes through spell immunity."], "mana": "125 200 275", "cooldown": "70.0 70.0 70.0", "details": [["STUN DURATION:", "0.3"], ["RADIUS:", "500"], ["DAMAGE:", "0.6 0.85 1.1"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "After bringing enemies to their knees, Anti-Mage punishes them for their use of the arcane arts.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/antimage_mana_void.png", "description": "For each point of mana missing by the target unit, damage is dealt to it and surrounding enemies. The main target is also mini-stunned."},
'5007': {"cost": "", "name": "Berserker's Call", "scepter_mods": [], "scepter": "", "notes": ["Affects units with spell immunity."], "mana": "80 90 100 110", "cooldown": "16 14 12 10", "details": [["DURATION:", "2.0 2.4 2.8 3.2"], ["RADIUS:", "300"], ["BONUS ARMOR:", "40"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["0 0 0 0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement"]]], "lore": "Mogul Khan's warcry taunts opponents into engaging in an unconquerable battle with the Axe.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/axe_berserkers_call.png", "description": "Axe taunts nearby enemy units, forcing them to attack him, while he gains bonus armor during the duration."},
'5008': {"cost": "", "name": "Battle Hunger", "scepter_mods": [["%SCEPTER DAMAGE REDUCTION:", "30"]], "scepter": "Battle Hunger provides -30% damage output reduction. Applies Battle Hunger on nearby enemies after a successful Culling Blade.", "notes": ["Destroying buildings will also remove the debuff.", "Units affected by Battle Hunger cannot be denied."], "mana": "75", "cooldown": "20.0 15.0 10.0 5.0", "details": [["%SPEED BONUS:", "12"], ["%MOVEMENT SLOW:", "-12"], ["DURATION:", "10.0"], ["DAMAGE PER SECOND:", "16 24 32 40"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Ordinary heroes cannot withstand Mogul Khan's rage for battle, such that it injures them until it is satisfied.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/axe_battle_hunger.png", "description": "Enrages an enemy unit, causing it to be slowed and take damage over time until it kills another unit or the duration ends. Axe gains movement speed for each unit affected with Battle Hunger.<br><br>Upgradable by Aghanim's Scepter."},
'5009': {"cost": "", "name": "Counter Helix", "scepter_mods": [], "scepter": "", "notes": ["Counter Helix triggers when the attack hits."], "mana": "", "cooldown": "0.45 0.4 0.35 0.3", "details": [["%CHANCE TO HELIX:", "20"], ["RADIUS:", "275"], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["75 110 145 180"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Axe is the only reinforcement this army needs.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/axe_counter_helix.png", "description": "When attacked, Axe performs a helix counter attack, dealing pure damage to all nearby enemies."},
'5010': {"cost": "", "name": "Culling Blade", "scepter_mods": [], "scepter": "", "notes": [], "mana": "60 120 180", "cooldown": "75.0 65.0 55.0", "details": [["KILL SPEED DURATION:", "6"], ["KILL ATTACK SPEED BONUS:", "30"], ["%KILL MOVE SPEED BONUS:", "30"], ["KILL THRESHOLD:", "250 325 400"], ["KILL SPEED RADIUS:", "900"], ["DAMAGE:", "150 250 300"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Mogul Khan is the embodiment of battle and fury, launching into a gruesome fatality against those who dare engage the Axe in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/axe_culling_blade.png", "description": "Axe spots a weakness and strikes, instantly killing an enemy unit with low health, or dealing moderate damage otherwise. When an enemy hero is killed with Culling Blade, its cooldown is reset, and Axe and nearby allied units gain bonus movement speed."},
'5011': {"cost": "", "name": "Brain Sap", "scepter_mods": [["SCEPTER COOLDOWN:", "1.5"]], "scepter": "Decreases cooldown and makes Brain Sap pierce Spell Immunity.", "notes": [], "mana": "70 100 130 160", "cooldown": "14 13 12 11", "details": [["DAMAGE:", "75 150 225 300"], ["HEAL AMOUNT:", "75 150 225 300"], ["CAST POINT:", ["0.4"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Atropos finds no greater pleasure than to harvest the fear he creates.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bane_brain_sap.png", "description": "Feasts on the vital energies of an enemy unit, healing Bane and dealing damage.<br><br>Upgradable by Aghanim's Scepter."},
'5012': {"cost": "", "name": "Enfeeble", "scepter_mods": [], "scepter": "", "notes": ["Enfeeble cannot be purged."], "mana": "95", "cooldown": "8", "details": [["DURATION:", "14 16 18 20"], ["REDUCTION:", "30 60 90 120"], ["DURATION:", ["14 16 18 20"]], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Even the mightiest of warriors crumble before the terror of Atropos.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bane_enfeeble.png", "description": "Weakens an enemy unit, reducing its physical damage."},
'5013': {"cost": "", "name": "Fiend's Grip", "scepter_mods": [], "scepter": "", "notes": ["Fiend's Grip will disable and drain mana from Spell Immune units, but not damage them."], "mana": "200 300 400", "cooldown": "100.0 100.0 100.0", "details": [["DAMAGE:", "100 155 215"], ["%MANA DRAIN:", "5"], ["DURATION:", "5.0 5.0 5.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["625"]], ["BEHAVIOR:", ["Targets Units", "Channeled"]]], "lore": "Victims of Atropos are frequently torn apart by vivid conjurations of their own nightmares.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bane_fiends_grip.png", "description": "CHANNELED - Grips an enemy unit, disabling it and causing heavy damage over time, while stealing mana every 0.5 seconds based on the unit's maximum mana."},
'5014': {"cost": "", "name": "Nightmare", "scepter_mods": [], "scepter": "", "notes": ["In the first second of Nightmare, the unit is invulnerable.", "Bane can wake himself up from Nightmare."], "mana": "165 165 165 165", "cooldown": "22 19 16 13", "details": [["CAST RANGE:", "425 500 575 650"], ["DURATION:", "4.0 5.0 6.0 7.0"], ["DURATION:", ["4.0 5.0 6.0 7.0"]], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["425 500 575 650"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "A stolen prowess from the goddess Nyctasha is to put his prey into forever sleep.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bane_nightmare.png", "description": "Puts the target enemy or friendly Hero to sleep. Sleeping units are awakened when attacked, but the Nightmare passes to the attacking unit. Bane can attack nightmared targets freely."},
'5015': {"cost": "", "name": "Bloodrage", "scepter_mods": [], "scepter": "", "notes": ["Bloodrage can be cast on enemy and allied units, as well as Bloodseeker himself.", "Only amplifies for half values when the damage dealer and the receiver are over 2200 range apart."], "mana": "0", "cooldown": "12 10 8 6", "details": [["DURATION:", "9 10 11 12"], ["%KILL HEAL PERCENTAGE:", "19 21 23 25"], ["%DAMAGE INCREASE:", "25 30 35 40"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Strygwyr shares his animalistic thirst for bloodshed.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bloodseeker_bloodrage.png", "description": "Drives a unit into a bloodthirsty rage during which a unit deals, and takes, increased damage. Units affected by Bloodrage will be healed for a percentage of the max health of any units they kill. Units affected by Bloodrage when killed will heal a percentage of their max health to their killer. If you do not get the last hit, but are within 300 AoE of the dying hero, you will take 50% of the heal."},
'5016': {"cost": "", "name": "Blood Rite", "scepter_mods": [], "scepter": "", "notes": ["Total time is a 2.6 second delay plus a 0.4 second cast time."], "mana": "100", "cooldown": "18 16 14 12", "details": [["RITUAL AREA:", "600"], ["SILENCE DURATION:", "3 4 5 6"], ["DAMAGE:", "120 160 200 240"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "The Flayed Twins are ever willing to aid those who spill blood upon the field of battle.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bloodseeker_blood_bath.png", "description": "Bloodseeker baptizes an area in sacred blood. After 3.0 seconds the ritual completes, causing any enemies caught in the area to take damage and become silenced."},
'5017': {"cost": "", "name": "Thirst", "scepter_mods": [], "scepter": "", "notes": ["Not triggered by Illusions.", "Max movement speed and attack damage bonuses occur when an enemy's health is at or below 25%.", "Affects linger for 2 seconds if a target dies."], "mana": "", "cooldown": "", "details": [["%MAX THIRST MOVE SPEED:", "16 24 32 40"], ["%THIRST HEALTH THRESHHOLD:", "75"], ["MAX THIRST DAMAGE:", "16 24 32 40"], ["%VISIBILITY HEALTH THRESHHOLD:", "25"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Strygwyr becomes frenzied when blood is spilled.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bloodseeker_thirst.png", "description": "Bloodseeker is invigorated by the wounds of his enemies, gaining bonus movement speed and attack damage whenever an enemy hero's health falls below 75%%, with the bonuses increasing as their health falls further. If an enemy hero's health falls below 25%%, he will also gain vision and True Sight of that hero. Bonuses stack per hero."},
'5018': {"cost": "", "name": "Rupture", "scepter_mods": [["SCEPTER CHARGES:", "2"], ["SCEPTER REPLENISH TIME:", "40"]], "scepter": "Grants 2 charges to Rupture with a 40 seconds replenish time.", "notes": [], "mana": "200 225 250", "cooldown": "60", "details": [["%MOVE DAMAGE:", "30 45 60"], ["DURATION:", "12.0"], ["CAST RANGE:", "1000"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "When the Bloodseeker hunts you, injuries become fatalities.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bloodseeker_rupture.png", "description": "Causes an enemy unit's skin to rupture. If the unit moves, it takes a percentage of the distance traveled as damage. The damage is dealt through spell immunity.<br><br>Upgradable by Aghanim's Scepter."},
'5019': {"cost": "", "name": "Frost Arrows", "scepter_mods": [], "scepter": "", "notes": ["The slow duration is refreshed on successive casts."], "mana": "12 12 12 12", "cooldown": "0.0 0.0 0.0 0.0", "details": [["CREEP DURATION:", "7.0"], ["HERO DURATION:", "1.5"], ["%MOVEMENT SLOW:", "-16 -32 -48 -64"], ["DURATION:", ["1.5 1.5 1.5 1.5"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["625"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "Ice-encased arrows pierce the silence, chilling their victims to the core.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/drow_ranger_frost_arrows.png", "description": "Adds a freezing effect to Drow's attacks, slowing enemy movement. Lasts 1.5 seconds on Heroes, and 7.0 seconds on creeps."},
'5020': {"cost": "", "name": "Silence", "scepter_mods": [], "scepter": "", "notes": ["Doesn't stop usage of items."], "mana": "90 90 90 90", "cooldown": "16 15 14 13", "details": [["DURATION:", "3.0 4.0 5.0 6.0"], ["RADIUS:", "300"], ["DURATION:", ["3.0 4.0 5.0 6.0"]], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "Traxex is rather fond of the tranquility of physical combat, calling on her Drow heritage to end the incantations of opposing magi.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/drow_ranger_silence.png", "description": "Stops all enemy units in a target area from casting spells."},
'5021': {"cost": "", "name": "Precision Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "100", "details": [["%RANGE DAMAGE BONUS:", "10 18 26 34"], ["DURATION:", ["30.0"]], ["CAST POINT:", ["0 0 0 0"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Traxex' time spent alone in the forests of her Drow home has allowed her to teach other archers how to improve their bow skills.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/drow_ranger_trueshot.png", "description": "Adds bonus damage to the physical attack of allied, ranged Hero units based on a percentage of Drow's agility. Affects creeps for 30 seconds when cast."},
'5022': {"cost": "", "name": "Marksmanship", "scepter_mods": [["SCEPTER SPLIT COUNT:", "2"], ["%DAMAGE REDUCTION:", "50"]], "scepter": "Causes Drow Ranger's attacks to splinter on the target, hitting nearby units with normal attacks that deal reduced damage.", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS AGILITY:", "40 60 80"], ["SEARCH RANGE:", "375"], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The Drow Ranger is the epitome of archery prowess.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/drow_ranger_marksmanship.png", "description": "Drow's experiences in battle improve her accuracy and effectiveness in combat, providing a passive bonus to Agility. Grants no bonus if there are enemy heroes within 400 range.<br><br>Upgradable by Aghanim's Scepter."},
'5023': {"cost": "", "name": "Fissure", "scepter_mods": [], "scepter": "", "notes": ["Creeps will wait for Fissure to disappear. They will not attempt to walk around it.", "Fissure is not blocked by Linken's Sphere."], "mana": "125 140 155 170", "cooldown": "18 17 16 15", "details": [["FISSURE DURATION:", "8.0"], ["FISSURE RANGE:", "1400"], ["STUN DURATION:", "1.0 1.25 1.5 1.75"], ["DURATION:", ["1.0 1.25 1.5 1.75"]], ["CAST POINT:", ["0.69 0.69 0.69 0.69"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["110 160 210 260"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1400"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "The Nishian totem splits the world to its core with tectonic force.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earthshaker_fissure.png", "description": "Slams the ground with a mighty totem, creating an impassable ridge of stone while stunning and damaging enemy units along its line."},
'5024': {"cost": "", "name": "Enchant Totem", "scepter_mods": [["SCEPTER JUMP DISTANCE:", "900"]], "scepter": "Enchant Totem becomes a 900 range ground target ability, causing Earthshaker to jump in the air and land at the target spot, casting Enchant Totem there. Self-casting the ability will behave in the original form, without jumping.", "notes": ["Self-cast with Scepter will make it behave in the non-Scepter form, without jumping.", "Bonus damage is based on base damage and that given by primary attribute.", "Enchant Totem has True Strike."], "mana": "35 40 45 50", "cooldown": "5.0", "details": [["DURATION:", "14.0 14.0 14.0 14.0"], ["%BONUS:", "100 200 300 400"], ["DURATION:", ["14"]], ["CAST POINT:", ["0.69 0.69 0.69 0.69"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE:", ["0 0 0 0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Raigor's gorilla strength can destroy mountains.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earthshaker_enchant_totem.png", "description": "Empowers Earthshaker's totem, causing it to deal extra damage on the next attack.<br><br>Upgradable by Aghanim's Scepter."},
'5025': {"cost": "", "name": "Aftershock", "scepter_mods": [], "scepter": "", "notes": ["Using items does not trigger Aftershock."], "mana": "", "cooldown": "", "details": [["DURATION:", "0.6 0.9 1.2 1.5"], ["RADIUS:", "300"], ["DURATION:", ["0.6 0.9 1.2 1.5"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 100 125 150"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The earth trembles beneath the mighty footsteps of Raigor.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earthshaker_aftershock.png", "description": "Causes the earth to shake underfoot, adding additional damage and stuns to nearby enemy units when Earthshaker casts his abilities."},
'5026': {"cost": "", "name": "Echo Slam", "scepter_mods": [], "scepter": "", "notes": [], "mana": "145 205 265", "cooldown": "150.0 130.0 110.0", "details": [["ECHO DAMAGE:", "60 85 110"], ["RADIUS:", "600"], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Tectonic plates crack, mountains fold, and foes are crushed by the Echo Slam.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earthshaker_echo_slam.png", "description": "Shockwaves travel through the ground, damaging enemy units. Each enemy hit causes an echo to damage nearby units. Real heroes cause two echoes."},
'5027': {"cost": "", "name": "Blade Dance", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CRITICAL CHANCE:", "20 25 30 35"], ["%CRITICAL DAMAGE:", "180"], ["BEHAVIOR:", ["Passive"]]], "lore": "The last remnant of his heritage's commitment to bladework, Yurnero ensures that the style is remembered.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/juggernaut_blade_dance.png", "description": "Gives Juggernaut a chance to deal double damage on each attack."},
'5028': {"cost": "", "name": "Blade Fury", "scepter_mods": [], "scepter": "", "notes": ["Deals a total of 400/525/650/775 damage.", "Juggernaut can still perform attacks while in Blade Fury. However, only units that are not affected by Blade Fury, such as wards or structures, will take damage from these attacks.", "You can use items during Blade Fury.", "This skill doesn't affect mechanical units."], "mana": "120 110 100 90", "cooldown": "42 34 26 18", "details": [["DURATION:", "5.0"], ["RADIUS:", "250"], ["DAMAGE:", "80 105 130 155"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "Yurnero's renowned katana techniques are feared by warriors and sorcerors alike.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/juggernaut_blade_fury.png", "description": "Causes a bladestorm of destructive force around Juggernaut, rendering him immune to magic and dealing damage to nearby enemy units. <br><br>DISPEL TYPE: Basic Dispel"},
'5029': {"cost": "", "name": "Healing Ward", "scepter_mods": [], "scepter": "", "notes": ["Multiple healing wards do not stack.", "The healing ward can be controlled."], "mana": "140", "cooldown": "60.0 60.0 60.0 60.0", "details": [["%MAX HEALTH PER SECOND:", "2 3 4 5"], ["DURATION:", ["25.0 25.0 25.0 25.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "Of the rituals learned at the Isle of Masks, tending wounds with a bit of voodoo magic has proven to be quite useful.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/juggernaut_healing_ward.png", "description": "Summons a Healing Ward which heals all nearby allied units, based on their max health. The Healing Ward moves at 420 movement speed after being summoned. Lasts 25 seconds."},
'5030': {"cost": "", "name": "Omnislash", "scepter_mods": [["SCEPTER SLASHES:", "6 9 12"], ["SCEPTER COOLDOWN:", "70"]], "scepter": "Increases number of slashes and decreases cooldown.", "notes": ["Creeps are killed in one hit of omnislash.", "Slashes happen on an interval of 0.4 seconds.", "Can target Spell Immune units.", "You can use items during Omnislash."], "mana": "200 275 350", "cooldown": "130.0 120.0 110.0", "details": [["SLASHES:", "3 6 9"], ["SLASH JUMP RADIUS:", "425"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "'The fruits of discipline; with practice comes strength.'", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/juggernaut_omni_slash.png", "description": "Juggernaut leaps towards the target enemy unit with a damaging attack, and then slashes other nearby enemy units, dealing between 200-225 damage per slash. Juggernaut is invulnerable for the duration.<br><br>Upgradable by Aghanim's Scepter."},
'5031': {"cost": "", "name": "Torrent", "scepter_mods": [], "scepter": "", "notes": ["The initial bubble effect is only visible to allies.", "Units tossed in the air will be stunned and still able to be attacked."], "mana": "90 100 110 120", "cooldown": "16 14 12 10", "details": [["DAMAGE:", "75 150 225 300"], ["%MOVE SLOW:", "-35"], ["STUN DURATION:", "1.6"], ["DELAY:", "1.6 1.6 1.6 1.6"], ["RADIUS:", "225"], ["SLOW DURATION:", "1.75 2.5 3.25 4.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "An ancestral rush of water explodes from the center of the world, called upon by the Admiral.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kunkka_torrent.png", "description": "Summons a rising torrent that, after a short delay, hurls enemy units into the sky, stunning, dealing damage and slowing movement speed."},
'5032': {"cost": "", "name": "Tidebringer", "scepter_mods": [], "scepter": "", "notes": ["Cleave damage goes through spell immunity.", "Cleave damage is reduced by armor type but not by armor value."], "mana": "", "cooldown": "13.0 10.0 7.0 4.0", "details": [["%CLEAVE DAMAGE:", "100"], ["DAMAGE BONUS:", "25 50 75 100"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "A lost Claddish soul inhabits Kunkka's trusty Tidebringer, empowering it to destroy demons of the Cataract.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kunkka_tidebringer.png", "description": "Kunkka's legendary sword grants increased damage and cleaves a large area of effect in front of him for a single strike."},
'5033': {"cost": "", "name": "X Marks the Spot", "scepter_mods": [], "scepter": "", "notes": ["Interrupts channeling spells.", "If the target becomes Spell Immune after the cast, the target will not return to the X after the duration."], "mana": "50", "cooldown": "26 20 14 8", "details": [["ALLIED DELAY:", "8.0"], ["ENEMY DELAY:", "4.0"], ["RANGE:", "400 600 800 1000"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["400 600 800 1000"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "The Admiral's set of arcane abilities includes some that can be used for battle as well as entertainment.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kunkka_x_marks_the_spot.png", "description": "Targets a friendly or enemy Hero, marks their position with an X, and returns them to it after several seconds. Kunkka can trigger the return at any time during the duration. Lasts twice as long on allied heroes."},
'5034': {"cost": "", "name": "Return", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "1.0", "details": [["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kunkka_return.png", "description": "Returns the marked hero to the X."},
'5035': {"cost": "", "name": "Ghostship", "scepter_mods": [], "scepter": "Drags enemies with the Ghostship towards the crash site. Enemies are still able to perform actions while being dragged.", "notes": ["Damage dealt after Rum wears off is non-lethal and can never kill a hero.", "Actual area of effect of ship's collision is larger than the boat itself.", "The boat has a movement speed of 650."], "mana": "125 175 225", "cooldown": "60 50 40", "details": [["IMPACT DELAY:", "3.1"], ["%DAMAGE DELAYED:", "40 45 50"], ["STUN DURATION:", "1.4 1.4 1.4"], ["RUM DURATION:", "10"], ["%RUM BONUS SPEED:", "10 10 10"], ["WIDTH:", "425 425 425"], ["RANGE:", "2000"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["400 500 600"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Directional Cast", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The final ship of the Claddish Navy is nothing but a phantom, but it is all too real to the enemies of the Admiral.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kunkka_ghostship.png", "description": "Summons a ghostly ship that sails through the battle before smashing apart, damaging and stunning all enemies caught near the wreckage. Allied heroes touched by the Ghostship are given a swig of The Admiral's Rum, receiving bonus movement speed and a delayed reaction to incoming damage.<br><br>Upgradeable by Aghanim's Scepter."},
'5040': {"cost": "", "name": "Dragon Slave", "scepter_mods": [], "scepter": "", "notes": ["Dragon Slave can hit units up to 1225 units away."], "mana": "100 115 130 145", "cooldown": "8.0", "details": [["DURATION:", ["0.6875 0.6875 0.6875 0.6875"]], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["85 160 235 310"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1075"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "In the scorched barren of Misrule, Lina learned to manipulate the fiery breath of the Desert Wyrm as a form of entertainment.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lina_dragon_slave.png", "description": "Lina channels the breath of a dragon, sending out a wave of fire that scorches every enemy in its path."},
'5041': {"cost": "", "name": "Light Strike Array", "scepter_mods": [], "scepter": "", "notes": ["Light Strike Array will destroy trees in its area of effect."], "mana": "100 110 120 130", "cooldown": "7.0 7.0 7.0 7.0", "details": [["CAST DELAY:", "0.5"], ["RADIUS:", "225"], ["DAMAGE:", "80 120 160 200"], ["STUN DURATION:", "1.6 1.9 2.2 2.5"], ["DURATION:", ["1.6 1.9 2.2 2.5"]], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["625"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Lina's essence allows her to focus the sun's energies, causing air to combust at will.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lina_light_strike_array.png", "description": "Summons a column of flames that damages and stuns enemies."},
'5042': {"cost": "", "name": "Fiery Soul", "scepter_mods": [], "scepter": "", "notes": ["Using items does not trigger Fiery Soul.", "Duration refreshes each time a new spell is cast."], "mana": "", "cooldown": "", "details": [["ATTACK SPEED BONUS:", "40 55 70 85"], ["MAX STACKS:", "3"], ["%MOVE SPEED BONUS:", "5 6 7 8"], ["DURATION:", "10"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Dancing flames embody Lina's playful nature, bringing out her true blazing self.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lina_fiery_soul.png", "description": "Grants bonus attack and movement speed each time Lina casts a spell. Stacks with itself. Lasts 10 seconds."},
'5043': {"cost": "", "name": "Laguna Blade", "scepter_mods": [], "scepter": "Changes Laguna Blade's damage type to Pure, and allows it to slice through spell immunity.", "notes": ["Laguna Blade has a 0.25 delay before the damage is applied after the spell is cast, allowing certain abilities to avoid the damage."], "mana": "280 420 680", "cooldown": "70 60 50", "details": [["DAMAGE:", "450 650 850"], ["CAST POINT:", ["0.45 0.45 0.45"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The air around Lina becomes so intensely torrid that it scorches a foe that comes too close with white-hot lightning.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lina_laguna_blade.png", "description": "Fires off a bolt of lightning at a single enemy unit, dealing massive damage.<br><br>Upgradable by Aghanim's Scepter."},
'5044': {"cost": "", "name": "Earth Spike", "scepter_mods": [], "scepter": "", "notes": ["The spikes move at 1600 units per second."], "mana": "100 120 140 160", "cooldown": "12.0 12.0 12.0 12.0", "details": [["STUN DURATION:", "1.4 1.8 2.2 2.6"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["80 140 200 260"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "Targets Units", "Other (Ignore Backswing)"]]], "lore": "The Demon Witch exercises his demonic covenant, opening a fissure from hell.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lion_impale.png", "description": "Rock spikes burst from the earth along a straight path. Enemy units are hurled into the air, then are stunned and take damage when they fall."},
'5045': {"cost": "", "name": "Hex", "scepter_mods": [], "scepter": "", "notes": ["Instantly destroys illusions.", "The target will have a base movement speed of 140, but buffs granting maximum movement speed won't be disabled."], "mana": "125 150 175 200", "cooldown": "30.0 24.0 18.0 12.0", "details": [["DURATION:", "2.5 3 3.5 4"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Lion is compelled to share his transfiguration, twisting the essence of those who oppose him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lion_voodoo.png", "description": "Transforms an enemy unit into a harmless beast, with all special abilities disabled."},
'5046': {"cost": "", "name": "Mana Drain", "scepter_mods": [], "scepter": "", "notes": ["Destroys illusions."], "mana": "10 10 10 10", "cooldown": "16 12 8 4", "details": [["%MOVEMENT SLOW:", "16 19 22 25"], ["MANA PER SECOND:", "20 40 60 120"], ["BREAK DISTANCE:", "1200"], ["CHANNEL TIME:", "5.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["850"]], ["BEHAVIOR:", ["Targets Units", "Channeled", "Other (Ignore Backswing)"]]], "lore": "Lesser magi are nothing more than a source of magical restoration for the Demon Witch.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lion_mana_drain.png", "description": "CHANNELED - Absorbs the magical energies of a target enemy unit by taking mana from it every second."},
'5047': {"cost": "", "name": "Finger of Death", "scepter_mods": [["SCEPTER MANA COST:", "200 420 625"], ["SCEPTER COOLDOWN:", "100.0 60.0 20.0"], ["SCEPTER AREA OF EFFECT:", "325"], ["SCEPTER DAMAGE:", "725 875 1025"]], "scepter": "Increases damage. Decreases cooldown. Finger of Death hits all units in a small area.", "notes": ["Finger of Death has a 0.25 delay before the damage is applied after the spell is cast, allowing certain abilities to avoid the damage."], "mana": "200 420 650", "cooldown": "160.0 100.0 40.0", "details": [["DAMAGE:", "600 725 850"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "Lion's disfigured hand is also the source of his greatest power, capable of flooding victims with malefic force.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lion_finger_of_death.png", "description": "Rips at an enemy unit, trying to turn it inside-out. Deals massive damage.<br><br>Upgradable by Aghanim's Scepter."},
'5048': {"cost": "", "name": "Sacred Arrow", "scepter_mods": [], "scepter": "", "notes": ["For every 150 distance the arrow travels, the stun duration upon impact increases by 0.5 seconds, and the bonus damage added increases by 14.", "Sacred Arrow can hit invisible units."], "mana": "100 100 100 100", "cooldown": "17.0", "details": [["RANGE:", "3000"], ["MAXIMUM STUN:", "5.0"], ["MAXIMUM BONUS DAMAGE:", "140"], ["MINIMUM STUN:", "0.01"], ["DURATION:", ["3.11 3.11 3.11 3.11"]], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["50 140 230 320"]], ["CAST RANGE:", ["3000"]], ["BEHAVIOR:", ["Directional Cast", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Lunar energies make the Princess of the Moon's arrows more deadly than most.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mirana_arrow.png", "description": "Fires a long-range arrow with deadly precision, which stuns and damages the first enemy unit it strikes. The stun duration ranges from 0.01 to 5.0 seconds, with bonus damage up to 140 added, based on the distance the arrow travels to its target. Instantly kills the first non-ancient creep it hits."},
'5049': {"cost": "", "name": "Moonlight Shadow", "scepter_mods": [], "scepter": "", "notes": ["Units affected will not auto attack enemies.", "Spell Immune allies will be affected."], "mana": "75", "cooldown": "140.0 120.0 100.0", "details": [["DURATION:", "15.0"], ["FADE DELAY:", "2.5 2.0 1.5"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Attack", "Other (Ignore Backswing)"]]], "lore": "Her tenure with Selemene allows Mirana to eclipse the ground, wrapping her allies in a cloak of shadows.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mirana_invis.png", "description": "Turns Mirana and all allied heroes invisible. If a hero is revealed, invisibility will restore after the fade delay as long as Moonlight Shadow's duration has not expired."},
'5050': {"cost": "", "name": "Leap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "40", "cooldown": "0", "details": [["CHARGE REPLENISH TIME:", "60 50 40 30"], ["DISTANCE:", "550"], ["ATTACK SPEED BONUS:", "25 50 75 100"], ["MAX CHARGES:", "3"], ["%MOVEMENT BONUS:", "8 16 24 32"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "None can fail to recognize Mirana's iconic white beast in the heat of battle.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mirana_leap.png", "description": "Mirana leaps forward into battle, empowering herself with a ferocious roar that grants bonus attack and movement speed. Speed bonus lasts 2.0 seconds."},
'5051': {"cost": "", "name": "Starstorm", "scepter_mods": [["SCEPTER INTERVAL:", "10.0"]], "scepter": "Passively triggers Starstorm every 10 seconds. Does not trigger if the enemy doesn't see Mirana.", "notes": ["Starstorm cannot hit invisible units.", "Starstorm is not blocked by Linken's Sphere.", "Starstorm will choose a new target for the second star if the first died before impact."], "mana": "80 105 130 155", "cooldown": "12.0 12.0 12.0 12.0", "details": [["RADIUS:", "650"], ["DURATION:", ["10.0 10.0 10.0 10.0"]], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 150 225 300"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "The Goddess breaks the strata to empower her Princess in the time of need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mirana_starfall.png", "description": "Calls down a wave of meteors to damage nearby enemy units. The closest enemy unit to Mirana in a 425 radius will be struck a second time for 75% of the damage.<br><br>Upgradable by Aghanim's Scepter."},
'5052': {"cost": "", "name": "Waveform", "scepter_mods": [], "scepter": "", "notes": [], "mana": "140 155 160 165", "cooldown": "11.0 11.0 11.0 11.0", "details": [["CAST POINT:", ["0.25"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 150 225 300"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "A torrential flood takes enemies by force.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_waveform.png", "description": "Morphling dissolves into liquid and surges forward, damaging enemy units in his path. Morphling is invulnerable during Waveform."},
'5053': {"cost": "", "name": "Adaptive Strike (Agility)", "scepter_mods": [], "scepter": "", "notes": ["Projectile moves at 1150 speed."], "mana": "80", "cooldown": "10", "details": [["DAMAGE MAX AGI MULTIPLIER:", "1.0 1.5 2.0 2.5"], ["DAMAGE MIN AGI MULTIPLIER:", "0.5"], ["CAST RANGE:", "600 700 800 900"], ["BASE DAMAGE:", "100"], ["CAST POINT:", ["0.25"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 700 800 900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Morphling calls upon his elements to crush his opponents with waves.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_adaptive_strike_agi.png", "description": "Launches a surge of water toward an enemy unit, dealing base damage plus additional damage based on Morphling's agility times a multiplier. If Morphling's agility is 50% higher than strength, the maximum damage is dealt."},
'5054': {"cost": "", "name": "Attribute Shift (Agility Gain)", "scepter_mods": [], "scepter": "", "notes": ["Attribute Shift works while Morphling is disabled, but not when silenced.", "Attribute Shift can't convert stats from items.", "Can't convert stats from items."], "mana": "", "cooldown": "", "details": [["BONUS AGILITY:", "4 5 6 7"], ["BEHAVIOR:", ["Other (Hidden)"]]], "lore": "Shifting water makes it difficult to discern the nature of Morphling.", "icon": "", "description": "Morphling switches into his replication, instantly taking its position."},
'5055': {"cost": "", "name": "Attribute Shift (Agility Gain)", "scepter_mods": [], "scepter": "", "notes": ["Can't convert stats from items."], "mana": "", "cooldown": "0.0", "details": [["SHIFT RATE:", "1 4 10 25"], ["BONUS AGILITY:", "4 5 6 7"], ["BEHAVIOR:", ["No Target", "Toggle"]]], "lore": "Shifting water makes it difficult to discern the nature of Morphling.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_morph_agi.png", "description": "Morphling shifts its form, pulling points from Strength and pouring them into Agility. The process is reversible. Additional points in Attribute Shift increase the rate of stat change. Passively grants bonus Agility."},
'5056': {"cost": "", "name": "Attribute Shift (Strength Gain)", "scepter_mods": [], "scepter": "", "notes": ["Attribute Shift works while Morphling is disabled, but not when silenced.", "Attribute Shift can't convert stats from items."], "mana": "", "cooldown": "0.0", "details": [["SHIFT RATE:", "1 4 10 25"], ["BONUS STRENGTH:", "4 5 6 7"], ["BEHAVIOR:", ["No Target", "Toggle"]]], "lore": "Shifting water makes it difficult to discern the nature of Morphling.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_morph_str.png", "description": "Morphling shifts its form, pulling points from Agility and pouring them into Strength. The process is reversible. Additional points in Attribute Shift increase the rate of stat change. Passively grants bonus Strength."},
'5057': {"cost": "", "name": "Morph", "scepter_mods": [], "scepter": "", "notes": ["You can't target yourself with Morph."], "mana": "50", "cooldown": "160 100 40", "details": [["DURATION:", "20"], ["CAST POINT:", ["0.25"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Staring into Morphling produces a reflection that mimics the beholder.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_replicate.png", "description": "Morphling changes his form to match the targeted enemy, gaining their basic abilities. Can be toggled for the duration of the ability. <br><br>DISPEL TYPE: Basic Dispel"},
'5058': {"cost": "", "name": "Morph Replicate", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "1", "details": [["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "Casting Stops Movement", "Casting Stops Attack", "Other (Immediate)", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_morph_replicate.png", "description": "Morphling switches into his replication, instantly taking its position."},
'5059': {"cost": "", "name": "Shadowraze", "scepter_mods": [], "scepter": "", "notes": ["Stack duration refreshes on stack gain."], "mana": "90", "cooldown": "10", "details": [["BASE DAMAGE:", "90 160 230 300"], ["RANGE:", "200"], ["STACK DURATION:", "8"], ["BONUS PER STACK:", "50 60 70 80"], ["CAST POINT:", ["0.55"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "Nevermore's trademark for harvesting souls.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_shadowraze1.png", "description": "Shadow Fiend razes the ground directly in front of him, dealing damage to enemy units in the area. Adds a stacking damage amplifier on the target that causes the enemy to take bonus Shadow Raze damage per stack."},
'5060': {"cost": "", "name": "Shadowraze", "scepter_mods": [], "scepter": "", "notes": ["Stack duration refreshes on stack gain."], "mana": "90", "cooldown": "10", "details": [["BASE DAMAGE:", "90 160 230 300"], ["STACK DURATION:", "8"], ["RANGE:", "450"], ["BONUS PER STACK:", "50 60 70 80"], ["CAST POINT:", ["0.55"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "Nevermore's trademark for harvesting souls.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_shadowraze2.png", "description": "Shadow Fiend razes the ground a short distance away from him, dealing damage to enemy units in the area. Adds a stacking damage amplifier on the target that causes the enemy to take bonus Shadow Raze damage per stack."},
'5061': {"cost": "", "name": "Shadowraze", "scepter_mods": [], "scepter": "", "notes": ["Stack duration refreshes on stack gain."], "mana": "90", "cooldown": "10", "details": [["BONUS PER STACK:", "50 60 70 80"], ["RANGE:", "700"], ["BASE DAMAGE:", "90 160 230 300"], ["STACK DURATION:", "8"], ["CAST POINT:", ["0.55"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "Nevermore's trademark for harvesting souls.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_shadowraze3.png", "description": "Shadow Fiend razes the ground a longer distance away from him, dealing damage to enemy units in the area. Adds a stacking damage amplifier on the target that causes the enemy to take bonus Shadow Raze damage per stack."},
'5062': {"cost": "", "name": "Necromastery", "scepter_mods": [["SCEPTER MAX SOULS:", "22 30 38 46"]], "scepter": "Increases max souls.", "notes": ["Denies and neutral creeps also provide bonus damage through Necromastery."], "mana": "", "cooldown": "", "details": [["DAMAGE PER SOUL:", "2"], ["MAX SOULS:", "12 20 28 36"], ["BEHAVIOR:", ["Passive"]]], "lore": "Harvested souls swirl in and out of the Abysm, empowering the Shadow Fiend to increase the size of his collection.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_necromastery.png", "description": "Shadow Fiend steals the soul from units he kills, gaining bonus damage. If the killed unit is a hero, he gains 12 souls. On death, he releases half of them from bondage.<br><br>Upgradable by Aghanim's Scepter."},
'5063': {"cost": "", "name": "Presence of the Dark Lord", "scepter_mods": [], "scepter": "", "notes": ["Stacks fully with other armor reduction abilities and aura."], "mana": "", "cooldown": "", "details": [["REDUCTION:", "-3 -4 -5 -6"], ["RADIUS:", "900"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "Even being near Nevermore eats away at one's soul.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_dark_lord.png", "description": "Shadow Fiend's presence reduces the armor of nearby enemies."},
'5064': {"cost": "", "name": "Requiem of Souls", "scepter_mods": [["%SCEPTER DAMAGE ON RETURN:", "40"], ["%SCEPTER HEAL ON RETURN:", "100"]], "scepter": "Increases Necromastery Max Souls and causes Requiem of Souls to return back to Shadow Fiend. The wave back to Shadow Fiend deals less damage, but heals Shadow Fiend for all the damage it dealt.", "notes": ["The movement and attack damage reductions from Requiem of Souls go through spell immunity.", "One line is generated from Shadow Fiend for every 2 souls in his possession, for a maximum of 18 lines (23 lines with Scepter)."], "mana": "150 175 200", "cooldown": "120 110 100", "details": [["REDUCTION DURATION:", "5.0"], ["%DAMAGE REDUCTION:", "-50"], ["%MOVEMENT REDUCTION:", "-25"], ["CAST DELAY:", "1.67"], ["DURATION:", ["5.0 5.0 5.0"]], ["CAST POINT:", ["1.67 1.67 1.67"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["80 120 160"]], ["BEHAVIOR:", ["No Target", "Other (Normal When Stolen)"]]], "lore": "The captured souls of those past slain are released to ravage their former allies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nevermore_requiem.png", "description": "Shadow Fiend gathers his captured souls to release them as lines of demonic energy. Units near Shadow Fiend when the souls are released can be damaged by several lines of energy. Any unit damaged by Requiem of Souls will have its movement speed and attack damage reduced. Lines of energy are created for every 2 souls captured through Necromastery. Requiem of Souls is automatically cast whenever Shadow Fiend dies, regardless of its cooldown.<br><br>Upgradable by Aghanim's Scepter."},
'5065': {"cost": "", "name": "Spirit Lance", "scepter_mods": [], "scepter": "Causes Spirit Lance to bounce on nearby enemies.", "notes": ["Nearby illusions will mimic the cast animation."], "mana": "125 130 135 140", "cooldown": "7.0 7.0 7.0 7.0", "details": [["LANCE DAMAGE:", "100 150 200 250"], ["%MOVEMENT SLOW:", "-10 -20 -30 -40"], ["SLOW DURATION:", "3.25"], ["SCEPTER BOUNCE RADIUS:", "400"], ["SCEPTER BOUNCES:", "5"], ["%ILLUSION DAMAGE TAKEN:", "400 400 400 400"], ["ILLUSION DURATION:", "2.0 4.0 6.0 8.0"], ["%ILLUSION DAMAGE:", "20"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Azwraith's proficiency at spearing his family's meal of fish is proving quite useful in the battlefield.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_lancer_spirit_lance.png", "description": "Sends a magical spirit lance to a target enemy unit that damages and slows, while summoning an illusory phantom to attack the unit.<br><br>Upgradable by Aghanim's Scepter."},
'5066': {"cost": "", "name": "Doppelganger", "scepter_mods": [], "scepter": "", "notes": ["This ability can be used to dodge projectiles, and dispell debuffs.", "Trees near a reappearing unit will be destroyed.", "Phantom Lancer and his allies can see which illusion is the 100% damage illusion."], "mana": "50", "cooldown": "25 20 15 10", "details": [["ILLUSION GATHER RANGE:", "900"], ["ILLUSION DURATION EXTENSION:", "2"], ["REAPPEAR DELAY:", "1"], ["TARGET AREA SIZE:", "325"], ["DOPPELGANGER DURATION:", "8"], ["CAST POINT:", ["0.1"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Dread Magus Vorn's death imbued the Phantom Lancer with the ability to bend and fracture all spectrums of light.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_lancer_doppelwalk.png", "description": "Phantom Lancer briefly vanishes from the battlefield. After 1 second, Phantom Lancer and any of his nearby illusions reappear at a random position within the targeted location, along with two additional doppelgangers. Extends duration of all illusions. The two added doppelgangers have different properties: one takes normal damage and deals none, while the other takes 600% damage and deals 20% damage.<br><br>DISPEL TYPE: Basic Dispel"},
'5067': {"cost": "", "name": "Juxtapose", "scepter_mods": [], "scepter": "", "notes": ["Illusions created by Juxtapose will attack the target that the ability was triggered upon."], "mana": "", "cooldown": "", "details": [["MAX ILLUSIONS:", "6 8 10"], ["%ILLUSION DAMAGE:", "16"], ["%ILLUSION DAMAGE TAKEN:", "500"], ["%ILLUSION TRIGGER CHANCE:", "8"], ["%HERO TRIGGER CHANCE:", "40 45 50"], ["BEHAVIOR:", ["Passive"]]], "lore": "Each of Azwraith's lance attacks feels like two from a normal warrior; or three; or four...", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_lancer_juxtapose.png", "description": "Phantom Lancer has a chance to fracture his presence, creating an illusion of himself. Illusions also have a chance to fracture further. Illusions created from Phantom Lancer last for 8 seconds, while illusions created from other illusions last 4 seconds."},
'5068': {"cost": "", "name": "Phantom Rush", "scepter_mods": [], "scepter": "", "notes": ["If the attack order is cancelled, the movement speed bonus is lost.", "Rush movement speed is 800."], "mana": "", "cooldown": "16 12 8 4", "details": [["MIN RUSH DISTANCE:", "250"], ["BONUS AGILITY:", "6 14 22 30"], ["MAX RUSH DISTANCE:", "600 700 800 900"], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Toggle"]]], "lore": "Azwraith knows that on the field of battle, speed can mean everything.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_lancer_phantom_edge.png", "description": "When targetting an enemy for an attack, Phantom Lancer quickly charges into range, gaining a temporary agility boost upon reaching the target. Phantom Lancer's illusions also have this ability."},
'5069': {"cost": "", "name": "Illusory Orb", "scepter_mods": [], "scepter": "", "notes": ["The Illusory Orb grants unobstructed vision around its location while it travels.", "Jaunting to the Orb will disjoint projectiles."], "mana": "80 100 120 140", "cooldown": "14 13 12 11", "details": [["MAX DISTANCE:", "1950"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["70 140 210 280"]], ["CAST RANGE:", ["3000"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "The playful Faerie Dragon delights in confusing others, vanishing and reappearing where unexpected.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/puck_illusory_orb.png", "description": "Puck launches a magic orb that floats in a straight path, damaging enemy units along the way. At any point, Puck may teleport to the orb's location using Ethereal Jaunt."},
'5070': {"cost": "", "name": "Ethereal Jaunt", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/puck_ethereal_jaunt.png", "description": "Teleports Puck to a flying Illusory Orb."},
'5071': {"cost": "", "name": "Waning Rift", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 110 120 130", "cooldown": "16 15 14 13", "details": [["DAMAGE:", "100 160 220 280"], ["DURATION:", "0.75 1.5 2.25 3.0"], ["RADIUS:", "400 400 400 400"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "With a mischievous grin, Puck spreads its enchanted powder which disrupts magical flow.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/puck_waning_rift.png", "description": "Puck releases a burst of faerie dust that deals damage and silences enemy units nearby."},
'5072': {"cost": "", "name": "Phase Shift", "scepter_mods": [], "scepter": "", "notes": ["Puck retains collision size while under the effects of Phase Shift.", "Issuing any action will cancel Phase Shift.", "Puck is invulnerable during Phase Shift."], "mana": "0 0 0 0", "cooldown": "6", "details": [["DURATION:", "0.75 1.50 2.25 3.25"], ["CAST POINT:", ["0 0 0 0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Channeled", "Casting Stops Attack", "Disabled By Root"]]], "lore": "With a quip and flash, Puck returns to the alien dimension from whence it came.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/puck_phase_shift.png", "description": "Puck briefly shifts into another dimension where it is immune from harm."},
'5073': {"cost": "", "name": "Dream Coil", "scepter_mods": [["SCEPTER BREAK STUN DURATION:", "1.5 3 4.5"], ["SCEPTER BREAK DAMAGE:", "400 550 700"], ["SCEPTER COIL DURATION:", "8"]], "scepter": "Increases damage from coil breaks, increases coil duration, coil break stun goes through spell immunity.", "notes": [], "mana": "100 150 200", "cooldown": "70 65 60", "details": [["COIL DURATION:", "6.0 6.0 6.0"], ["BREAK RADIUS:", "600 600 600"], ["BREAK STUN DURATION:", "1.5 2.25 3.0"], ["BREAK DAMAGE:", "300 400 500"], ["CAST POINT:", ["0.1 0.1 0.1"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "The Faerie Dragon sows confusion by forcing its enemies to vividly dream about their own mortality.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/puck_dream_coil.png", "description": "Creates a coil of volatile magic that latches onto enemy Heroes, stunning them for 0.5 seconds and damaging them. If the enemy hero stretches the coil by moving too far away, it snaps, stunning and dealing additional damage.<br><br>Upgradable by Aghanim's Scepter."},
'5074': {"cost": "", "name": "Flesh Heap", "scepter_mods": [], "scepter": "", "notes": ["Stacks multiplicatively with other spell resistance sources."], "mana": "", "cooldown": "", "details": [["%MAGIC RESISTANCE:", "6 8 10 12"], ["STRENGTH BONUS:", "1 1.5 2 2.5"], ["RANGE:", "450"], ["BEHAVIOR:", ["Passive"]]], "lore": "The Butcher gives new meaning to the words 'meat shield.'", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pudge_flesh_heap.png", "description": "Gives Pudge resistance to magic damage, as well as bonus strength that increases each time Pudge kills an enemy Hero or it dies in his vicinity. Flesh Heap is retroactive, meaning it can gain charges before it is skilled, which then become active."},
'5075': {"cost": "", "name": "Meat Hook", "scepter_mods": [["SCEPTER COOLDOWN:", "4.0"], ["SCEPTER DAMAGE:", "180 270 360 450"]], "scepter": "Reduces cooldown and increases damage.", "notes": ["Meat Hook can drag friendly units, but they won't be damaged.", "Meat Hook can go through trees, cliffs and buildings.", "Interrupts channeling spells of the primary target if it's an enemy.", "Meat Hook hits invisible units."], "mana": "140", "cooldown": "14 13 12 11", "details": [["RANGE:", "1000 1100 1200 1300"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["90 180 270 360"]], ["CAST RANGE:", ["1000 1100 1200 1300"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "The Butcher's hook is a symbolic nightmare, its curved blade a frightening reminder of his slaughterous intent.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pudge_meat_hook.png", "description": "Launches a bloody hook toward a unit or location. The hook will snag the first unit it encounters, dragging the unit back to Pudge and dealing damage if it is an enemy.<br><br>Upgradable by Aghanim's Scepter."},
'5076': {"cost": "", "name": "Rot", "scepter_mods": [], "scepter": "", "notes": ["Pudge can deny himself with this ability.", "Using Rot doesn't interrupt channeling.", "Rot hits invisible units.", "If Pudge is silenced, he can't deactivate Rot if it's activated."], "mana": "", "cooldown": "", "details": [["DAMAGE:", "30 60 90 120"], ["%MOVE SLOW:", "-17 -22 -27 -32"], ["RADIUS:", "250"], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Toggle", "Doesnt Cancel Channeling", "Other (Ignore Backswing)"]]], "lore": "A foul odor precedes a toxic, choking gas, emanating from the Butcher's putrid, ever-swelling mass.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pudge_rot.png", "description": "A toxic cloud that deals intense damage and slows movement--harming not only enemy units but Pudge himself."},
'5077': {"cost": "", "name": "Dismember", "scepter_mods": [], "scepter": "", "notes": ["If a unit becomes invisible while Dismembered, it will still be under the effects of Dismember.", "Dismember will disable Spell Immune units, but not damage them."], "mana": "100 130 170", "cooldown": "30 25 20", "details": [["STRENGTH MULTIPLIER:", "0.3 0.45 0.6"], ["DAMAGE PER SECOND:", "60 90 120"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["160"]], ["BEHAVIOR:", ["Targets Units", "Channeled", "Other (Ignore Backswing)"]]], "lore": "'When I'm through with these vermin, they'll be fit for a pie!'", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pudge_dismember.png", "description": "CHANNELED - Pudge chows down on an enemy unit, disabling it and dealing damage over time. Pudge gets healed for the same amount he damages. Lasts 3 seconds on Heroes, 6 seconds on creeps."},
'5078': {"cost": "", "name": "Ether Shock", "scepter_mods": [], "scepter": "", "notes": ["Can hit secondary targets up to 1000 distance away."], "mana": "95 105 135 160", "cooldown": "14 12 10 8", "details": [["DAMAGE:", "140 200 260 320"], ["TARGETS:", "1 3 5 7"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Originally used to open shows with the travelling con-man, Rhasta's lightning display shocks adversaries in more ways than one.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_shaman_ether_shock.png", "description": "Creates a cone of ethereal energy that strikes multiple enemy units."},
'5079': {"cost": "", "name": "Hex", "scepter_mods": [], "scepter": "", "notes": ["Instantly destroys illusions.", "The target will have a base movement speed of 100, but buffs granting maximum movement speed won't be disabled.", "Hex disables damage block."], "mana": "110 140 170 200", "cooldown": "13", "details": [["DURATION:", "1.25 2.0 2.75 3.5"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Rhasta often ended performances by turning himself into a chicken - now, the humiliation is shared.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_shaman_voodoo.png", "description": "Transforms an enemy unit into a harmless creature, disabling their attacks and abilities."},
'5080': {"cost": "", "name": "Shackles", "scepter_mods": [], "scepter": "", "notes": [], "mana": "140 150 160 170", "cooldown": "10", "details": [["MAX DURATION:", "2.75 3.5 4.25 5.0"], ["TOTAL DAMAGE:", "60 160 260 360"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units", "Channeled"]]], "lore": "A self-defense incantation, Rhasta developed shackles after his master was slain in the Bleeding Hills.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_shaman_shackles.png", "description": "CHANNELED - Magically binds an enemy unit so that it cannot move or attack, while dealing damage over time."},
'5081': {"cost": "", "name": "Mass Serpent Ward", "scepter_mods": [], "scepter": "Causes Serpent Wards to have split shot, attacking two units for full damage. Increases attack range of Serpent Wards.", "notes": [], "mana": "200 350 600", "cooldown": "120", "details": [["SCEPTER BONUS ATTACK RANGE:", "225"], ["DURATION:", "45.0 45.0 45.0"], ["ATTACK DAMAGE:", "40 70 100"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Snake charming was a big part of the Shadow Shaman's act; now Rhasta can empower the snakes to do his bidding.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_shaman_mass_serpent_ward.png", "description": "Summons 10 Serpent Wards to attack enemy units and structures. The Wards are immune to magic. It takes two hits to destroy a single Ward.<br><br>Upgradable by Aghanim's Scepter."},
'5082': {"cost": "", "name": "Plasma Field", "scepter_mods": [], "scepter": "", "notes": [], "mana": "125 125 125 125", "cooldown": "14", "details": [["DAMAGE MAX:", "160 230 300 370"], ["RADIUS:", "700"], ["DAMAGE MIN:", "30 50 70 90"], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The Lightning Revenant rules the Underscape with plasmatic power.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/razor_plasma_field.png", "description": "Releases a wave of energetic plasma that grows in power as it expands, but also zaps on contraction, dealing damage to enemy units caught in its path. Damage increases with distance from Razor."},
'5083': {"cost": "", "name": "Static Link", "scepter_mods": [], "scepter": "", "notes": ["The link is broken when either unit dies or the distance between them becomes greater than 800 (1020 with Aether Lens).", "Can target Spell Immune units."], "mana": "65", "cooldown": "40 35 30 25", "details": [["LINK DURATION:", "8"], ["DAMAGE DRAIN RATE:", "7 14 21 28"], ["BUFF DURATION:", "18.0 18.0 18.0 18.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Razor's polarity channels electricity into his being, draining the power of his opposition.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/razor_static_link.png", "description": "Creates a charged link between Razor and an enemy Hero, stealing damage from the target and giving it to Razor."},
'5084': {"cost": "", "name": "Unstable Current", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "5", "details": [["%BONUS SPEED:", "4 8 12 16"], ["CURRENT INTERVAL:", "5"], ["SLOW AMOUNT:", "-40"], ["SLOW DURATION:", "0.5 1.0 1.5 2.0"], ["RADIUS:", "350"], ["DAMAGE:", "100 130 160 190"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Merely approaching the Lightning Revenant is rewarded with shock therapy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/razor_unstable_current.png", "description": "Razor moves with increased speed, and hits a random nearby unit with a jolt of electricity every %hit_interval% seconds. The jolt deals damages, slows, and purges buffs from enemies.<br><br>DISPEL TYPE: Basic Dispel"},
'5085': {"cost": "", "name": "Eye of the Storm", "scepter_mods": [["SCEPTER STRIKE INTERVAL:", "0.6 0.5 0.4"]], "scepter": "Causes faster strikes that can damage structures as well. When striking buildings, it will only target towers, barracks, and the Ancient.", "notes": ["Each blast targets the lowest health enemy unit within range.", "Eye of the Storm will prioritize striking static linked heroes."], "mana": "100 150 200", "cooldown": "80 70 60", "details": [["RADIUS:", "500 500 500"], ["ARMOR REDUCTION:", "1 1 1"], ["DURATION:", "30.0"], ["STRIKE INTERVAL:", "0.7 0.6 0.5"], ["DAMAGE:", "40 55 70"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Ride the lightning.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/razor_eye_of_the_storm.png", "description": "A powerful lightning storm strikes out at enemy units with the lowest health, dealing damage and reducing their armor.<br><br>Upgradable by Aghanim's Scepter."},
'5086': {"cost": "", "name": "Wraithfire Blast", "scepter_mods": [], "scepter": "", "notes": ["Deals 80 / 160 / 230 / 300 total damage.", "If Wraith King has summoned skeletons, casting Wraithfire Blast on a target will order all of the skeletons to attack that target."], "mana": "140", "cooldown": "8.0 8.0 8.0 8.0", "details": [["DAMAGE PER SECOND:", "20 35 50 65"], ["%MOVEMENT SLOW:", "-20"], ["SLOW DURATION:", "2"], ["STUN DURATION:", "2.0"], ["CAST POINT:", ["0.35 0.35 0.35 0.35"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["50 100 150 200"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["525"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Ostarion calls on his damned lineage, laying waste to his opponents.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skeleton_king_hellfire_blast.png", "description": "Wraith King sears an enemy unit with spectral fire, dealing damage and stunning, then dealing damage over time and slowing the target."},
'5087': {"cost": "", "name": "Vampiric Aura", "scepter_mods": [], "scepter": "", "notes": ["Stacks additively with other sources of Lifesteal.", "Can be toggled to make heroes only."], "mana": "", "cooldown": "", "details": [["%LIFESTEAL:", "15 20 25 30"], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Toggle", "Aura"]]], "lore": "Wraith King's blade drains his enemy's essence to feed his aura.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skeleton_king_vampiric_aura.png", "description": "Nearby friendly units restore health based on the damage they deal when attacking enemy units."},
'5088': {"cost": "", "name": "Mortal Strike", "scepter_mods": [], "scepter": "", "notes": ["Summoned skeletons will automatically attack any unit targeted by Wraithfire Blast."], "mana": "75", "cooldown": "50", "details": [["%CRITICAL CHANCE:", "9 11 13 15"], ["SKELETON DURATION:", "90"], ["%CRITICAL DAMAGE:", "300"], ["MAX CHARGES:", "4 5 6 7"], ["CAST POINT:", ["0.1"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["No Target"]]], "lore": "One blow to crush a foe.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skeleton_king_mortal_strike.png", "description": "Wraith King passively gains a chance to deal bonus damage on an attack. Kill non-player units when it triggers and convert them into a skeleton army."},
'5089': {"cost": "", "name": "Reincarnation", "scepter_mods": [["SCEPTER DEATH DELAY RADIUS:", "1200"]], "scepter": "If a nearby allied hero is slain, they will be transformed into a wraith and have their death delayed for 7 seconds.", "notes": ["Revives with full HP and Mana.", "Credit for allies whose death was delayed will go to whoever struck the original killing blow.", "Wraith King won't revive if he doesn't have enough mana.", "If Wraith King has an Aegis and Reincarnation off cooldown, Reincarnation will trigger first.", "Wraith Delay affects Wraith King's actual deaths, not Reincarnate deaths."], "mana": "160", "cooldown": "200 120 40", "details": [["ATTACK SPEED SLOW:", "-75"], ["SCEPTER ALLY DEATH DELAY:", "7"], ["%MOVEMENT SLOW:", "-75"], ["SLOW DURATION:", "5.0"], ["REINCARNATION TIME:", "3.0 3.0 3.0"], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Conspirators against the Wraith King wonder why he never stays dead.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skeleton_king_reincarnation.png", "description": "Wraith King's form regroups after death, allowing him to resurrect when killed in battle. Upon death, enemy units in a 900 radius will be slowed.<br><br>Upgradable by Aghanim's Scepter."},
'5090': {"cost": "", "name": "Crypt Swarm", "scepter_mods": [], "scepter": "", "notes": ["Can hit units up to 1110 range away."], "mana": "105 120 140 165", "cooldown": "8 7 6 5", "details": [["RANGE:", "810 810 810 810"], ["CAST POINT:", ["0.5"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 150 225 300"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "Krobelus' many trips to the grave gather a flock of the damned.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/death_prophet_carrion_swarm.png", "description": "Sends a swarm of winged beasts to savage enemy units in front of Death Prophet."},
'5091': {"cost": "", "name": "Silence", "scepter_mods": [], "scepter": "", "notes": ["Doesn't prevent usage of items."], "mana": "80 80 80 80", "cooldown": "15 14 13 12", "details": [["RADIUS:", "425"], ["DURATION:", "3.0 4.0 5.0 6.0"], ["DURATION:", ["3.0 4.0 5.0 6.0"]], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "Peering into the veil of her opponent's demise, Krobelus sees a silent future.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/death_prophet_silence.png", "description": "Prevents enemy units in a target area from casting spells."},
'5092': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5093': {"cost": "", "name": "Exorcism", "scepter_mods": [], "scepter": "", "notes": ["Radius represents the area in which the spirits will acquire targets around Death Prophet.", "Spirit damage isn't reduced by damage block abilities."], "mana": "200 300 400", "cooldown": "145.0", "details": [["RADIUS:", "700 700 700"], ["SPIRIT DAMAGE:", "58"], ["SPIRITS:", "8 16 24"], ["%LIFE DRAIN:", "25 25 25"], ["DURATION:", ["35"]], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Over time, the banshee remnants of her previous lives return to haunt the present.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/death_prophet_exorcism.png", "description": "Unleashes evil spirits to drain the life of nearby enemy units and structures. At the end of the spell's duration, Death Prophet is healed in proportion to the damage dealt. Lasts 35 seconds."},
'5094': {"cost": "", "name": "Storm Hammer", "scepter_mods": [], "scepter": "", "notes": [], "mana": "140", "cooldown": "13.0", "details": [["DURATION:", "1.7 1.8 1.9 2.0"], ["RADIUS:", "255"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["100 175 250 325"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "AOE", "Other (Ignore Backswing)"]]], "lore": "The Rogue Knight's iron gauntlet, taken from the school of his father, strikes his foes to their core.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sven_storm_bolt.png", "description": "Sven unleashes his magical gauntlet that deals damage and stuns enemy units."},
'5095': {"cost": "", "name": "Great Cleave", "scepter_mods": [], "scepter": "", "notes": ["The cleave damages a circular area in front of Sven.", "Cleave damage is reduced by armor type but not by armor value.", "Cleave damage goes through spell immunity."], "mana": "", "cooldown": "", "details": [["%CLEAVE DAMAGE:", "30 42 54 66"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The Vigil Knights still seek to reclaim the stolen Outcast Blade from Sven, a weapon capable of cutting wide swaths through lesser warriors.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sven_great_cleave.png", "description": "Sven strikes with great force, cleaving all nearby enemy units with his attack."},
'5096': {"cost": "", "name": "Warcry", "scepter_mods": [], "scepter": "", "notes": ["Fully stacks with other armor and speed granting abilities."], "mana": "25 25 25 25", "cooldown": "35 30 25 20", "details": [["DURATION:", "8"], ["RADIUS:", "900"], ["BONUS ARMOR:", "5 10 15 20"], ["%BONUS SPEED:", "12"], ["DURATION:", ["8.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Calling a few lines from the Vigil Codex fortifies Sven's obedience to his rogue code. So poetic!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sven_warcry.png", "description": "Sven's Warcry heartens his allies for battle, increasing their movement speed and armor. Lasts 8 seconds."},
'5097': {"cost": "", "name": "God's Strength", "scepter_mods": [["%SCEPTER ALLY BONUS DAMAGE:", "75 100 125"], ["SCEPTER ALLY AURA RADIUS:", "900"]], "scepter": "God's Strength grants bonus damage to allies in a 900 radius.", "notes": ["The bonus damage is based on base damage and the primary attribute of Sven."], "mana": "100 150 200", "cooldown": "80", "details": [["BONUS STRENGTH:", "10 20 30"], ["%BONUS DAMAGE:", "80 120 160"], ["DURATION:", ["25.0 25.0 25.0"]], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "With the strength that shattered the Sacred Helm, the Rogue Knight stands unopposed in melee combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sven_gods_strength.png", "description": "Sven channels his rogue strength, granting bonus damage for 25 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5098': {"cost": "", "name": "Static Remnant", "scepter_mods": [], "scepter": "", "notes": ["Remnants grant unobstructed vision for their duration.", "Remnants take 1 second to materialize after the spell is cast.", "The explosion actually hits units in a 260 radius, but will only be triggered in 235."], "mana": "100", "cooldown": "3.5", "details": [["DAMAGE:", "140 180 220 260"], ["RADIUS:", "260"], ["DURATION:", ["12.0 12.0 12.0 12.0"]], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Raijin Thunderkeg's duality allows him to admire himself in shocking fashion.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/storm_spirit_static_remnant.png", "description": "Creates an explosively charged image of Storm Spirit that lasts 12 seconds and will detonate and deal damage if an enemy unit comes near it."},
'5099': {"cost": "", "name": "Electric Vortex", "scepter_mods": [["SCEPTER RADIUS:", "475"]], "scepter": "Electric Vortex affects all enemies within a radius around Storm Spirit.", "notes": [], "mana": "85", "cooldown": "21 20 19 18", "details": [["DURATION:", "1.0 1.5 2.0 2.5"], ["SELF SLOW DURATION:", "3.0"], ["%SELF SLOW:", "-50"], ["DURATION:", ["1.0 1.5 2.0 2.5"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Raijin's thunderous, boisterous energy often draws others into an electrifying situation.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/storm_spirit_electric_vortex.png", "description": "A vortex that pulls an enemy unit to Storm Spirit's location, it also slows the Storm Spirit by 50% for 3 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'51': {"cost": "2200", "name": "Demon Edge", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "42 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "One of the oldest weapons forged by the Demon-Smith Abzidian, it killed its maker when he tested its edge.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/demon_edge.png", "description": ""},
'5100': {"cost": "", "name": "Overload", "scepter_mods": [], "scepter": "", "notes": ["Using items doesn't trigger Overload."], "mana": "", "cooldown": "", "details": [["RADIUS:", "300"], ["%MOVEMENT SLOW:", "-80"], ["DURATION:", "0.6 0.6 0.6 0.6"], ["ATTACK SLOW:", "-50"], ["DURATION:", ["0.6 0.6 0.6 0.6"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["40 60 80 100"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Pow! Zip! Zap!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/storm_spirit_overload.png", "description": "Casting a spell creates an electrical charge, which is released in a burst on his next attack, dealing damage and slowing nearby enemies."},
'5101': {"cost": "", "name": "Ball Lightning", "scepter_mods": [], "scepter": "", "notes": ["Storm Spirit is invulnerable during Ball Lightning.", "This ability will destroy trees.", "Instant cast abilities can be used while traveling."], "mana": "30", "cooldown": "", "details": [["%MANA DRAIN PER UNIT:", "0.7"], ["SPEED:", "1250 1875 2500"], ["RADIUS:", "200"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["8 12 16"]], ["BEHAVIOR:", ["Point Target", "Disabled By Root"]]], "lore": "The Storm is coming in.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/storm_spirit_ball_lightning.png", "description": "Storm Spirit becomes volatile electricity, charging across the battlefield until he depletes his mana or reaches his target. The activation mana cost is 30+8 of his total mana pool, and the cost per 100 units traveled is 12+0.7 of his total mana pool. Damage is expressed in damage per 100 units traveled."},
'5102': {"cost": "", "name": "Burrowstrike", "scepter_mods": [["SCEPTER RANGE:", "700 900 1100 1300"]], "scepter": "Adds Caustic Finale poison to heroes hit by your Burrowstrike and doubles its cast range. Does not apply Caustic Finale to illusions.", "notes": [], "mana": "110 120 130 140", "cooldown": "11.0 11.0 11.0 11.0", "details": [["STUN DURATION:", "2.17"], ["RANGE:", "350 450 550 650"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["85 150 215 280"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["350 450 550 650"]], ["BEHAVIOR:", ["Point Target", "Targets Units", "Disabled By Root"]]], "lore": "Crixalis often lies in wait, burrowing under the surface to ambush his adversaries.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sandking_burrowstrike.png", "description": "Sand King burrows into the ground and tunnels forward, damaging and stunning enemy units above him as he resurfaces.<br><br>Upgradable by Aghanim's Scepter."},
'5103': {"cost": "", "name": "Sand Storm", "scepter_mods": [], "scepter": "", "notes": ["Sand Storm can be used to dodge projectiles."], "mana": "60 50 40 30", "cooldown": "34 26 18 10", "details": [["DURATION:", "50"], ["INVISIBILITY DELAY:", "0.9 1.1 1.3 1.5"], ["SAND STORM DAMAGE:", "40 60 80 100"], ["RADIUS:", "525"], ["DURATION:", ["50"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Channeled", "Casting Stops Attack"]]], "lore": "Some say Crixalis is a mirage; his carapace appearing then vanishing between the whirling sands of the Scintillant Waste.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sandking_sand_storm.png", "description": "CHANNELED - Sand King creates a fearsome sandstorm that damages enemy units while hiding him from vision. The invisibility remains for a short duration after the sandstorm ends."},
'5104': {"cost": "", "name": "Caustic Finale", "scepter_mods": [], "scepter": "", "notes": ["Units afflicted with the debuff will explode even if Sand King did not deliver the killing blow.", "The buff is not placed on allied units."], "mana": "", "cooldown": "", "details": [["SLOW DURATION:", "3"], ["EXPLODE RADIUS:", "400"], ["EXPLODE TIMER:", "6"], ["EXPLODE TIMER DAMAGE:", "20 50 80 110"], ["EXPLODE DEATH DAMAGE:", "90 130 170 220"], ["%MOVE SLOW:", "-30"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "An injection from Crixalis makes one brittle and as dry as the arid wastes, subject to implosive demise.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sandking_caustic_finale.png", "description": "Sand King's attacks inject a venom that causes enemy units to violently explode when its timer expires, or when the unit dies, damaging and slowing nearby enemies. Deals less damage if its timer expires."},
'5105': {"cost": "", "name": "Epicenter", "scepter_mods": [], "scepter": "", "notes": ["The pulses have gradually inreasing radius: 275 / 325 / 375 / 425 / 475 / 525 / 575 / 650 / 675 / 700.", "The pulses are centered on Sand King, not where he first casted the spell."], "mana": "150 225 300", "cooldown": "120 110 100", "details": [["DAMAGE PER PULSE:", "110 110 110"], ["ATTACK SLOW:", "-30"], ["%MOVEMENT SLOW:", "-30 -30 -30"], ["PULSES:", "6 8 10"], ["SLOW DURATION:", "3"], ["DURATION:", ["3.0 3.0 3.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Channeled", "No Target", "Other (Ignore Backswing)"]]], "lore": "Many an explorer was lost to the quicksands of the Scintillant Waste.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sandking_epicenter.png", "description": "CHANNELED - After channeling for 2 seconds, Sand King sends a disturbance into the earth, causing it to shudder violently. All enemies caught within range will take damage and become slowed. Each subsequent pulse increases the radius of damage dealt."},
'5106': {"cost": "", "name": "Avalanche", "scepter_mods": [], "scepter": "", "notes": ["Deals damage over a 1 second duration."], "mana": "120 120 120 120", "cooldown": "17.0 17.0 17.0 17.0", "details": [["RADIUS:", "275 275 275 275"], ["DAMAGE:", "120 180 240 300"], ["STUN DURATION:", "1.0"], ["DURATION:", ["2.0 2.0 2.0 2.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "Inanimate rock becomes animate when called by the Stone Giant.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tiny_avalanche.png", "description": "Bombards an area with rocks, stunning and damaging enemy land units."},
'5107': {"cost": "", "name": "Toss", "scepter_mods": [], "scepter": "", "notes": ["You can toss allies, but they don't take damage.", "If a unit is hit by Avalanche then Tossed, it can be hit a second time by Avalanche if it lands in the area of effect before Avalanche ends.", "Toss deals 33% of its damage to buildings."], "mana": "90 100 110 120", "cooldown": "11", "details": [["RADIUS:", "275"], ["DAMAGE:", "75 150 225 300"], ["RANGE:", "1300"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["1300"]], ["BEHAVIOR:", ["Targets Units", "AOE", "Can Target Runes"]]], "lore": "Even enemies can share in Tiny's arbor ardor.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tiny_toss.png", "description": "Grabs the nearest unit in a 275 radius around Tiny, ally or enemy, and launches it at the target unit or rune to deal damage where they land. If the tossed unit is an enemy, it will take an extra 30% damage."},
'5108': {"cost": "", "name": "Tree Grab", "scepter_mods": [], "scepter": "", "notes": ["The cooldown begins when the charges are expended."], "mana": "20 30 40 50", "cooldown": "24 20 16 12", "details": [["%BONUS BUILDING DAMAGE:", "60 80 100 120"], ["ATTACK COUNT:", "5"], ["%BONUS DAMAGE:", "10 20 30 40"], ["ATTACK RANGE:", "350"], ["CAST POINT:", ["0.2"]], ["TARGET TYPE:", ["Tree", "Other"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["165"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tiny_craggy_exterior.png", "description": "Grabs a tree to whack enemies on the head for a limited number of times. Grants bonus attack range. Attacks deal more damage (increased vs. buildings) and fully splash on units along the way. The tree can be thrown, expending all the charges, to deal your attack to a unit at a distance."},
'5109': {"cost": "", "name": "Grow", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE:", "30 45 60"], ["BONUS ARMOR:", "5 10 15"], ["ATTACK SPEED REDUCTION:", "20 35 50"], ["%STATUS RESISTANCE:", "20 30 40"], ["BEHAVIOR:", ["Passive"]]], "lore": "Watching a hill become a mountain is awe-inspiring - especially if the mountain begins laying waste to adversaries.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tiny_grow.png", "description": "Tiny gains craggy mass, increases his power and causes him to shrug off debuffs."},
'5110': {"cost": "", "name": "Arc Lightning", "scepter_mods": [], "scepter": "", "notes": [], "mana": "65 70 75 80", "cooldown": "1.6", "details": [["JUMPS:", "5 7 9 15"], ["DAMAGE:", "85 100 115 145"], ["CAST POINT:", ["0.2"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["850"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Arc Lightning is Zeus' favorite spell to use against puny mortals.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/zuus_arc_lightning.png", "description": "Hurls a bolt of lightning that leaps through nearby enemy units."},
'5111': {"cost": "", "name": "Lightning Bolt", "scepter_mods": [], "scepter": "", "notes": ["You can interrupt channeling spells and items with this ability."], "mana": "75 95 115 135", "cooldown": "6.0 6.0 6.0 6.0", "details": [["SIGHT RADIUS:", "750"], ["SIGHT DURATION:", "4.5"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["100 175 275 350"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "A shocking punishment for rebellious heathen.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/zuus_lightning_bolt.png", "description": "Calls down a bolt of lightning to strike an enemy unit, causing damage and a mini-stun. When cast, Lightning Bolt briefly provides unobstructed vision and True Sight around the target in a 750 radius. Can be cast on the ground, affecting the closest enemy hero in 325 range."},
'5112': {"cost": "", "name": "Static Field", "scepter_mods": [], "scepter": "", "notes": ["The damage from Static Field is dealt before the damage from the used spell.", "Using items doesn't trigger Static Field.", "Does not require unit visibility to take effect."], "mana": "", "cooldown": "", "details": [["%HEALTH REDUCTION:", "4 6 8 10"], ["RANGE:", "1200"], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The air crackles with static when the Thundergod walks the world.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/zuus_static_field.png", "description": "Zeus shocks all nearby enemy units whenever he casts a spell, causing damage proportional to their current health."},
'5113': {"cost": "", "name": "Thundergod's Wrath", "scepter_mods": [], "scepter": "Grants a new ability, creating a cloud that automatically casts Lightning Bolt on nearby enemies.", "notes": [], "mana": "225 325 450", "cooldown": "90.0", "details": [["DURATION:", "3.0 3.0 3.0 3.0"], ["TRUE SIGHT RADIUS:", "500"], ["DAMAGE:", "225 325 425"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The Lord of Heaven smites all who oppose him, near or far.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/zuus_thundergods_wrath.png", "description": "Strikes all enemy heroes with a bolt of lightning, no matter where they may be. Thundergod's Wrath also provides True Sight around each hero struck. If an enemy hero is invisible, it takes no damage, but the True Sight is still created at that hero's location."},
'5114': {"cost": "", "name": "Guardian Sprint", "scepter_mods": [], "scepter": "", "notes": ["Activating this skill doesn't interrupt channeling abilities."], "mana": "", "cooldown": "17", "details": [["%BONUS MOVE SPEED:", "20 28 36 44"], ["%ADDED DAMAGE TAKEN:", "15"], ["DURATION:", "12"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "As Slardar has made the transition from the Deeps, it has been necessary to use his powerful tail for sprinting instead of swimming.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slardar_sprint.png", "description": "Slardar slithers ahead, moving significantly faster and passing through units, though becoming more vulnerable to damage. At ability level 4, Slardar may move at 700 speed while in the river."},
'5115': {"cost": "", "name": "Slithereen Crush", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80 95 105 115", "cooldown": "8", "details": [["RADIUS:", "350"], ["SLOW DURATION:", "2.0"], ["%MOVEMENT SLOW:", "-20"], ["ATTACK SLOW:", "-20"], ["STUN DURATION:", "1.25 1.5 1.75 2.0"], ["DURATION:", ["1.25 1.5 1.75 2.0"]], ["CAST POINT:", ["0.35 0.35 0.35 0.35"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 125 175 225"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "A swift crush of might and water breaks even the toughest of defenses.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slardar_slithereen_crush.png", "description": "Slams the ground, stunning and damaging nearby enemy land units. After the stun, the affected units are slowed."},
'5116': {"cost": "", "name": "Bash of the Deep", "scepter_mods": [], "scepter": "", "notes": ["Stun works on Spell Immune units.", "Does not stack with Skull Basher."], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE:", "60 80 100 120"], ["DURATION:", "1.0"], ["%CHANCE:", "10 15 20 25"], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Thieves of the wealth of the Deep Ones meet the brutality of the Slithereen Guard in melee combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slardar_bash.png", "description": "Grants a chance that an attack will do bonus damage and stun an enemy. The duration is doubled against creeps."},
'5117': {"cost": "", "name": "Corrosive Haze", "scepter_mods": [], "scepter": "", "notes": ["Gives True Sight and vision of the target.", "Works on Spell Immune units."], "mana": "25", "cooldown": "5", "details": [["DURATION:", "18"], ["ARMOR REDUCTION:", "-10 -15 -20"], ["CAST POINT:", ["0.35 0.35 0.35"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Even the strongest armor counts for little when left to the brine of the sea.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slardar_amplify_damage.png", "description": "Reduces enemy armor to amplify physical damage and provides True Sight of the targeted unit, revealing invisibility."},
'5118': {"cost": "", "name": "Gush", "scepter_mods": [["SCEPTER RANGE:", "1800"], ["SCEPTER COOLDOWN:", "7"], ["SCEPTER RADIUS:", "240"]], "scepter": "Gush becomes a ground targeted wave ability that affects enemy units in a line. Decreases cooldown.", "notes": [], "mana": "90 100 110 120", "cooldown": "12", "details": [["DAMAGE:", "110 160 210 260"], ["ARMOR REDUCTION:", "3 4 5 6"], ["%SLOW:", "-40 -40 -40 -40"], ["DURATION:", ["4.0 4.0 4.0 4.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "During his championship of the Sunken Isles, Leviathan gained mastery over the open sea.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tidehunter_gush.png", "description": "Summons a gush of water to damage an enemy unit, reducing their movement speed and armor. Lasts 4 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5119': {"cost": "", "name": "Kraken Shell", "scepter_mods": [], "scepter": "", "notes": ["Kraken Shell removes most buffs, even if they are generally not purgable.", "The counter will reset if no player owned damage is taken for 6 seconds.", "Only damage from player owned sources is counted towards buff removal."], "mana": "", "cooldown": "", "details": [["DAMAGE THRESHOLD:", "600 550 500 450"], ["DAMAGE BLOCK:", "12 24 36 48"], ["THRESHOLD TIMER:", "6.0 6.0 6.0 6.0"], ["BEHAVIOR:", ["Passive"]]], "lore": "Claddish navymen tell tales of a mighty sea-faring beast that suffered spear and sword but continued to lay waste to the fleet.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tidehunter_kraken_shell.png", "description": "Thickens Tidehunter's hide to passively block a portion of any incoming physical attack damage. The hide also removes negative status effects if the damage taken crosses a threshold.<br><br>Does not stack with items that provide Damage Block.<br><br>DISPEL TYPE: Strong Dispel"},
'5120': {"cost": "", "name": "Anchor Smash", "scepter_mods": [], "scepter": "", "notes": ["Anchor Smash works on all Ancient creeps except for Roshan."], "mana": "30 40 50 60", "cooldown": "7.0 6.0 5.0 4.0", "details": [["RADIUS:", "375"], ["DURATION:", "6.0 6.0 6.0 6.0"], ["%DAMAGE REDUCTION:", "-45 -50 -55 -60"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["75 125 175 225"]], ["CAST RANGE:", ["375"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Stolen from one of Admiral Kunkka's flagships, Leviathan's heavy anchor proves useful as a melee weapon.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tidehunter_anchor_smash.png", "description": "Tidehunter swings his mighty anchor to damage nearby enemies and reduce their attack damage."},
'5121': {"cost": "", "name": "Ravage", "scepter_mods": [], "scepter": "", "notes": ["Ravage will hit invisible units.", "Ravage waves move outwards at a speed of 775."], "mana": "150 225 325", "cooldown": "150.0 150.0 150.0", "details": [["RADIUS:", "1250"], ["DURATION:", "2.0 2.4 2.8"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["200 290 380"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Calling to the abyssal god Maelrawn has resulted in entire armadas being lost at sea.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tidehunter_ravage.png", "description": "Slams the ground, causing tentacles to erupt in all directions, damaging and stunning all nearby enemy units."},
'5122': {"cost": "", "name": "Magic Missile", "scepter_mods": [], "scepter": "", "notes": [], "mana": "110 120 130 140", "cooldown": "13 12 11 10", "details": [["STUN DURATION:", "1.2 1.4 1.6 1.8"], ["DAMAGE:", "100 175 250 325"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A simple Skywrath technique, the magic missile is Shendel's primary tool for vengeance.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/vengefulspirit_magic_missile.png", "description": "Fires a magic missile at an enemy unit, stunning and dealing damage."},
'5123': {"cost": "", "name": "Vengeance Aura", "scepter_mods": [], "scepter": "", "notes": ["The bonus damage provided by the aura is based on base damage and primary attribute."], "mana": "", "cooldown": "", "details": [["%DAMAGE BONUS:", "12 18 24 30"], ["%IMAGE DAMAGE:", "100"], ["IMAGE DURATION:", "6"], ["RADIUS:", "1200"], ["%IMAGE DAMAGE TAKEN:", "200"], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "Although they may not share her undying passion for revenge, allies do draw on her fanaticism in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/vengefulspirit_command_aura.png", "description": "Vengeful Spirit's presence increases the physical damage of nearby friendly units. If an allied hero is slain under the aura, an illusion of your allied hero will be created to fight for that hero."},
'5124': {"cost": "", "name": "Wave of Terror", "scepter_mods": [], "scepter": "", "notes": [], "mana": "40 40 40 40", "cooldown": "10", "details": [["VISION DURATION:", "3.0 3.0 3.0 3.0"], ["ARMOR REDUCTION:", "-3 -4 -5 -6"], ["DEBUFF DURATION:", "8"], ["DURATION:", ["8"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["45 70 95 120"]], ["CAST RANGE:", ["1400"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Shendel's haunting voice hints at her approaching vindication.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/vengefulspirit_wave_of_terror.png", "description": "Vengeful Spirit lets loose a wicked cry, weakening the armor of enemies and giving vision of the path ahead."},
'5125': {"cost": "", "name": "Nether Swap", "scepter_mods": [["%SCEPTER ILLUSION DAMAGE DEALT:", "100"], ["SCEPTER COOLDOWN:", "10"], ["%SCEPTER ILLUSION DAMAGE TAKEN:", "150"]], "scepter": "Decreases cooldown, allows swapping of non-hero units and causes Vengeful Spirit to spawn a Vengeance Illusion when she dies. Vengeance illusion lasts until she revives and is able to use all of your abilities (but not items).", "notes": ["Channeling spells are interrupted by Nether Swap.", "Trees near Vengeful Spirit and the target will be destroyed when the spell is cast.", "Works on Spell Immune units."], "mana": "100 150 200", "cooldown": "45.0", "details": [["RANGE:", "700 950 1200"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["700 950 1200"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Martyrdom is a small price to pay for vengeance.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/vengefulspirit_nether_swap.png", "description": "Instantaneously swaps positions with a target Hero, friend or enemy. Nether Swap interrupts channeling abilities on the target.<br><br>Upgradable by Aghanim's Scepter."},
'5126': {"cost": "", "name": "Crystal Nova", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 120 140 160", "cooldown": "12 11 10 9", "details": [["%MOVEMENT SLOW:", "-20 -30 -40 -50"], ["DAMAGE:", "100 150 200 250"], ["ATTACK SLOW:", "-20 -30 -40 -50"], ["DURATION:", "4.5"], ["RADIUS:", "425"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "The air temperature around Rylai drops rapidly, chilling all around her to the core.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/crystal_maiden_crystal_nova.png", "description": "A burst of damaging frost slows enemy movement and attack rate in the targeted area."},
'5127': {"cost": "", "name": "Frostbite", "scepter_mods": [], "scepter": "", "notes": ["Blink abilities cannot be used while under the affects of Frostbite."], "mana": "140 145 150 155", "cooldown": "9 8 7 6", "details": [["CREEP TOTAL DAMAGE:", "1000"], ["HERO TOTAL DAMAGE:", "150 200 250 300"], ["HERO DURATION:", "1.5 2.0 2.5 3.0"], ["CREEP DURATION:", "10.0 10.0 10.0 10.0"], ["DAMAGE PER HALF-SECOND:", "50"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["525"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Rylai channels winds from the Blueheart Glacier, imprisoning attackers in thick blocks of ice.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/crystal_maiden_frostbite.png", "description": "Encases an enemy unit in ice, prohibiting movement and attack, while dealing 50 damage every half-second. Lasts 10 seconds on creeps level 6 or lower."},
'5128': {"cost": "", "name": "Arcane Aura", "scepter_mods": [], "scepter": "", "notes": ["The flat mana regeneration bonus is not considered for percentage mana regeneration increases.", "Stacks with other flat mana regeneration bonuses."], "mana": "", "cooldown": "", "details": [["ALLY MANA REGEN:", "0.8 1.0 1.2 1.4"], ["SELF MANA REGEN:", "1 2 3 4"], ["CAST POINT:", ["0.2"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Cold temperatures promote the essence of magic, causing Rylai's presence to allow spell usage in abundance.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/crystal_maiden_brilliance_aura.png", "description": "Gives additional mana regeneration to all friendly units on the map. This bonus is increased for Crystal Maiden."},
'5129': {"cost": "", "name": "Freezing Field", "scepter_mods": [], "scepter": "Applies Frostbite to any unit that has been standing in the Freezing Field for over 2.5 seconds.", "notes": ["Every 0.1 second an explosion occurs, for a total of 100 explosions.", "The slow is applied on all enemies in the radius, even if they aren't hit by an explosion (lasts 1 second)."], "mana": "200 400 600", "cooldown": "110 100 90", "details": [["EXPLOSION RADIUS:", "300"], ["%MOVEMENT SLOW:", "-30"], ["RADIUS:", "835"], ["ATTACK SLOW:", "-30"], ["DAMAGE:", "105 170 250"], ["DURATION:", ["10.0"]], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Channeled", "Casting Stops Attack"]]], "lore": "Once the place of her exile, Icewrack has become an anchor for Rylai's frigid onslaught.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/crystal_maiden_freezing_field.png", "description": "CHANNELED - Surrounds Crystal Maiden with random icy explosions that slow enemies and deal massive damage. Lasts 10 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5130': {"cost": "", "name": "Shackleshot", "scepter_mods": [], "scepter": "", "notes": ["This spell can shackle two enemies together, stunning them both.", "Can shackle the target to an enemy unit or tree at most 525/500 behind it.", "Shackleshot can be disjointed."], "mana": "70 85 100 115", "cooldown": "18 16 14 12", "details": [["SHACKLE DURATION:", "2.0 2.6 3.2 3.8"], ["CAST POINT:", ["0.15"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Windranger's variety of bow skills includes an arrow with thick ropes attached to encumber any escaping target.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/windrunner_shackleshot.png", "description": "Shackles the target to an enemy unit or tree in a line directly behind it. If no unit or tree is present, the stun duration is reduced to 0.75."},
'5131': {"cost": "", "name": "Powershot", "scepter_mods": [], "scepter": "", "notes": ["Powershot will destroy trees in its area of effect."], "mana": "90 100 110 120", "cooldown": "12 11 10 9", "details": [["RANGE:", "2600"], ["DAMAGE:", "180 260 340 420"], ["CAST POINT:", ["0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["2600"]], ["BEHAVIOR:", ["Point Target", "Channeled"]]], "lore": "During her early years of training, Lyralei learned to fire powerful arrows that cleaved even trees to reach their targets.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/windrunner_powershot.png", "description": "Windranger charges her bow for up to 1 second for a single powerful shot, which deals more damage the longer it is charged. The arrow damages enemies and destroys trees along its path. For each enemy that Powershot hits, its damage is reduced by 20%."},
'5132': {"cost": "", "name": "Windrun", "scepter_mods": [], "scepter": "", "notes": ["Activating Windrun will evade incoming projectiles."], "mana": "50", "cooldown": "12", "details": [["ENEMY SLOW RADIUS:", "325"], ["%ENEMY SLOW:", "-15 -20 -25 -30"], ["%EVASION:", "100"], ["%MOVE SPEED BONUS:", "60"], ["DURATION:", "3 4 5 6"], ["DURATION:", ["3 4 5 6"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Lyralei enchants gusts of winds to fight incoming attacks.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/windrunner_windrun.png", "description": "Increases movement speed and adds evasion from all physical attacks, while slowing movement of nearby enemies."},
'5133': {"cost": "", "name": "Focus Fire", "scepter_mods": [["%SCEPTER DAMAGE REDUCTION:", "-30 -15 -0"], ["SCEPTER COOLDOWN:", "15.0 15.0 15.0"]], "scepter": "Reduces cooldown, decreases damage reduction, and removes debuffs from item effects.", "notes": ["Can target buildings and Spell Immune units."], "mana": "75 100 125", "cooldown": "70", "details": [["BONUS ATTACK SPEED:", "350"], ["%DAMAGE REDUCTION:", "-50 -40 -30"], ["DURATION:", "20"], ["DURATION:", ["20.0 20.0 20.0"]], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Lyralei's ability to bombard opponents with a flurry of arrows is unparalleled - even at the expense of accuracy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/windrunner_focusfire.png", "description": "Windranger channels the wind to gain 350 additional attack speed against a single enemy unit or structure, though with a reduction to her attack damage. Extra damage from secondary item effects is not reduced. Lasts 20 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5134': {"cost": "", "name": "Frost Blast", "scepter_mods": [], "scepter": "", "notes": [], "mana": "125 150 170 190", "cooldown": "8.0", "details": [["RADIUS:", "200 200 200 200"], ["AREA DAMAGE:", "75 100 125 150"], ["ATTACK SLOW:", "-20 -20 -20 -20"], ["%MOVEMENT SLOW:", "-30 -30 -30 -30"], ["DURATION:", ["4.0 4.0 4.0 4.0"]], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["50 100 150 200"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "Frost-mage Ethreain has not forgotten even the simplest of ice manipulation.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lich_frost_nova.png", "description": "Blasts the target enemy unit with damaging frost, dealing area damage and slowing movement and attack rates for 4 seconds. The primary target takes the most damage."},
'5135': {"cost": "", "name": "Ice Armor", "scepter_mods": [], "scepter": "", "notes": ["If autocast is activated, Lich will cast this spell on nearby allies who are attacked."], "mana": "50 50 50 50", "cooldown": "5.0 5.0 5.0 5.0", "details": [["ALLY ARMOR BONUS:", "3 5 7 9"], ["SLOW DURATION:", "2.0 2.0 2.0 2.0"], ["ENEMY ATTACK SLOW:", "-8 -16 -24 -32"], ["BUILDING ARMOR BONUS:", "3 5 7 9"], ["%ENEMY MOVE SLOW:", "-8 -16 -24 -32"], ["DURATION:", ["40.0 40.0 40.0 40.0"]], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Casting Stops Attack"]]], "lore": "Originally crafted during his ambush for self-defense, the Lich is capable of enchanting others with a formidable defense of frost magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lich_frost_armor.png", "description": "Creates a shield around the target friendly unit or building, which adds armor and slows attacking units. Lasts 40 seconds."},
'5136': {"cost": "", "name": "Sacrifice", "scepter_mods": [], "scepter": "", "notes": [], "mana": "25 25 25 25", "cooldown": "60 46 32 18", "details": [["%HEALTH CONVERSION:", "30 50 70 90"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["TARGET TYPE:", ["Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "It was not unheard of Ethreain to make examples out of those who contested his rule during his human life.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lich_dark_ritual.png", "description": "Sacrifices a friendly creep and converts its current hit points into mana for Lich."},
'5137': {"cost": "", "name": "Chain Frost", "scepter_mods": [["SCEPTER DAMAGE:", "370 460 550"]], "scepter": "Increases damage and casting range. Removes the limit on the number of times Chain Frost can jump.", "notes": ["Chain Frost doesn't bounce to Zombies.", "Chain Frost has a movement speed of 850.", "Chain Frost cannot be disjointed."], "mana": "200 325 500", "cooldown": "100.0 80.0 60.0", "details": [["BOUNCES:", "10 10 10"], ["DAMAGE EACH BOUNCE:", "280 370 460"], ["BOUNCE RANGE:", "600"], ["SLOW DURATION:", "2.5"], ["%MOVEMENT SLOW:", "-65"], ["ATTACK SLOW:", "-65"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Almost universally considered the ultimate in frost magic, Ethreain's orb of frozen death strikes fear into those who dare stand against him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lich_chain_frost.png", "description": "Releases an orb of frost that bounces between nearby enemy units up to 10 10 10 times, slowing and damaging each time it hits. <br><br>Upgradable by Aghanim's Scepter."},
'5138': {"cost": "", "name": "Paralyzing Cask", "scepter_mods": [], "scepter": "", "notes": ["Targets can be hit multiple times, as long as another unit is struck in between the bounces."], "mana": "110 120 130 140", "cooldown": "20.0 18.0 16.0 14.0", "details": [["BOUNCES:", "2 4 6 8"], ["CREEP STUN DURATION:", "5.0 5.0 5.0 5.0"], ["HERO DAMAGE:", "50 50 50 50"], ["HERO STUN DURATION:", "1.0 1.0 1.0 1.0"], ["CAST POINT:", ["0.35 0.35 0.35 0.35"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 100 125 150"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Witch Doctor recycles the bones of fallen friends and foes, using the powder as part of his arsenal of charms and alchemy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/witch_doctor_paralyzing_cask.png", "description": "Launches a cask of paralyzing powder that ricochets between enemy units, stunning and damaging those it hits."},
'5139': {"cost": "", "name": "Voodoo Restoration", "scepter_mods": [], "scepter": "", "notes": ["Healing is done in 0.33 second intervals.", "Can heal Spell Immune units."], "mana": "20 30 40 50", "cooldown": "0.0 0.0 0.0 0.0", "details": [["MANA PER SEC:", "8 12 16 20"], ["HEAL:", "16 24 32 40"], ["RADIUS:", "500"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Toggle", "Doesnt Cancel Channeling"]]], "lore": "Zharvakko's hocus pocus is not limited only to hexxing his opponents and is quite adept at curing ailments.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/witch_doctor_voodoo_restoration.png", "description": "Witch Doctor focuses his magic to heal nearby allied units."},
'5140': {"cost": "", "name": "Maledict", "scepter_mods": [], "scepter": "", "notes": ["If an affected hero's health has increased above the amount they had when Maledict was cast, the burst damage will be 0."], "mana": "105 110 115 120", "cooldown": "20.0", "details": [["DURATION:", "12"], ["%LOST HEALTH BURST DAMAGE:", "16 24 32 40"], ["RADIUS:", "180"], ["DURATION:", ["12.0"]], ["CAST POINT:", ["0.35 0.35 0.35 0.35"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["7 14 21 28"]], ["CAST RANGE:", ["575"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Certain voodoo magics can make an enemy regret engaging the Witch Doctor.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/witch_doctor_maledict.png", "description": "Curses all enemy Heroes in a small area, causing them to take a set amount of damage each second, as well as bursts of damage every 4 seconds based on how much health they have lost since the curse began."},
'5141': {"cost": "", "name": "Death Ward", "scepter_mods": [["SCEPTER BOUNCES:", "4 4 4"]], "scepter": "Death Ward attacks have True Strike and bounce between nearby enemies.", "notes": ["The Death Ward is invulnerable, and is only destroyed if Witch Doctor is interrupted or its duration expires.", "The Death Ward can be controlled, and made to attack a specific target.", "Death Ward attacks once every 0.22 seconds."], "mana": "200 200 200", "cooldown": "80.0", "details": [["DAMAGE:", "60 105 150"], ["CAST POINT:", ["0.35 0.35 0.35"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Point Target", "Channeled"]]], "lore": "Witch Doctor performs a ritualistic dance, one that haunts the dreams of those who live to recount it.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/witch_doctor_death_ward.png", "description": "CHANNELED - Summons a deadly ward to attack enemy heroes within 700 range. Lasts a maximum of 8 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5142': {"cost": "", "name": "Smoke Screen", "scepter_mods": [], "scepter": "", "notes": ["Doesn't prevent the use of active items."], "mana": "90", "cooldown": "11", "details": [["RADIUS:", "250 275 300 325"], ["%MISS RATE:", "40 50 60 70"], ["%MOVEMENT SLOW:", "10 15 20 25"], ["DURATION:", "6"], ["DURATION:", ["6"]], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Since his escape during the night of his betrayal, Riki has valued the use of a simple smoke screen to confuse his opponents.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/riki_smoke_screen.png", "description": "Throws down a smoke bomb, silencing enemies, and causing them to miss most attacks, as well as slowing movement."},
'5143': {"cost": "", "name": "Blink Strike", "scepter_mods": [], "scepter": "", "notes": ["Riki's first attack after Blink Strike will be a backstab.", "Blink Strike's damage is dealt before the next attack.", "You can Blink Strike to allies, but no damage is dealt."], "mana": "50", "cooldown": "16 12 8 4", "details": [["RANGE:", "700"], ["BONUS DAMAGE:", "55 70 85 100"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "The Stealth Assassin's agile movement makes him impossible to escape.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/riki_blink_strike.png", "description": "Teleports behind the target unit, striking for bonus damage if it is an enemy."},
'5144': {"cost": "", "name": "Cloak and Dagger", "scepter_mods": [], "scepter": "", "notes": ["Illusions of Riki will play Backstab animations, but not deal any bonus damage.", "Riki won't auto attack enemies while invisible.", "Bonus damage from Backstab can't be evaded."], "mana": "", "cooldown": "", "details": [["FADE DELAY:", "6 5 4 3"], ["AGI DAMAGE MULT:", "0.4 0.6 0.8 1.0"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Riki comes for you.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/riki_permanent_invisibility.png", "description": "Riki fades into the shadows, becoming invisible. Every time Riki strikes his enemy from behind, he deals bonus damage based on his Agility. When Riki attacks, he becomes visible."},
'5145': {"cost": "", "name": "Tricks of the Trade", "scepter_mods": [], "scepter": "Increases duration and allows you to target an allied hero, hiding inside them for the duration.", "notes": ["Moving while phased out will cancel the ability.", "Attacks once when casted and once per second after that."], "mana": "75", "cooldown": "40 35 30", "details": [["RADIUS:", "500"], ["MAX ATTACKS PER UNIT:", "4 5 6"], ["SCEPTER BONUS DURATION:", "4"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Channeled", "Casting Stops Attack", "Disabled By Root"]]], "lore": "The Stealth Assassin is not afraid to fight dirty, and specializes in attacking his opponents from behind.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/riki_tricks_of_the_trade.png", "description": "CHANNELED - Riki phases out of the world while striking every enemy from behind in an area around him once per second.<br><br>Upgradable by Aghanim's Scepter."},
'5146': {"cost": "", "name": "Malefice", "scepter_mods": [], "scepter": "", "notes": [], "mana": "110 130 150 160", "cooldown": "15.0 15.0 15.0 15.0", "details": [["DAMAGE PER HIT:", "30 50 70 90"], ["STUN DURATION:", "0.25 0.5 0.75 1.0"], ["INSTANCES:", "3 3 3 3"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Strange gravities pull at the core of those who would oppose you, holding them in place.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enigma_malefice.png", "description": "Focuses Enigma's power on a target, causing it to take damage and become repeatedly stunned for multiple instances. An instance strikes every 2 seconds."},
'5147': {"cost": "", "name": "Demonic Conversion", "scepter_mods": [], "scepter": "", "notes": ["Converted enemy units will give gold bounty and experience."], "mana": "170 170 170 170", "cooldown": "35.0 35.0 35.0 35.0", "details": [["SPAWN COUNT:", "3 3 3 3"], ["ATTACKS TO MULTIPLY:", "6 6 6 6"], ["EIDOLON DAMAGE:", "20 28 38 47"], ["DURATION:", "35.0"], ["EIDOLON HP:", "180 200 220 240"], ["DURATION:", ["35.0 35.0 35.0 35.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Enigma is capable of drawing aspects of himself from other dimensions - the result is a trio of dark eidolons that hunt the corporeal plane.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enigma_demonic_conversion.png", "description": "Transforms a creep into three fragments of Enigma himself. These eidolons are all under Enigma's control, and repeated successful attacks cause them to multiply. When this happens, the eidolons have their health restored."},
'5148': {"cost": "", "name": "Midnight Pulse", "scepter_mods": [], "scepter": "", "notes": ["Damage goes through spell immunity.", "This ability destroys trees in its area."], "mana": "95 110 125 140", "cooldown": "35", "details": [["%DAMAGE PER SECOND:", "3 3.75 4.5 5.25"], ["DURATION:", "11"], ["RADIUS:", "550"], ["CAST POINT:", ["0.1"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "A section of the world slowly descends into the void.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enigma_midnight_pulse.png", "description": "Steeps an area in dark resonance, damaging enemy units based on their max HP."},
'5149': {"cost": "", "name": "Black Hole", "scepter_mods": [], "scepter": "Adds the current level of Midnight Pulse to Black Hole.", "notes": ["Disables enemies through spell immunity."], "mana": "275 325 375", "cooldown": "200.0 180.0 160.0", "details": [["DAMAGE PER SECOND:", "50 100 150"], ["RADIUS:", "420"], ["DURATION:", "4.0 4.0 4.0"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["275"]], ["BEHAVIOR:", ["AOE", "Point Target", "Channeled"]]], "lore": "The ground trembles as Enigma channels his ultimate vortex of destruction, a singularity with the power to end worlds.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enigma_black_hole.png", "description": "CHANNELED - Summons a vortex that sucks in nearby enemy units. Enemies affected by Black Hole cannot move, attack, or cast spells.<br><br>Upgradable by Aghanim's Scepter."},
'5150': {"cost": "", "name": "Laser", "scepter_mods": [], "scepter": "Causes Laser to refract between all visible enemy units within range.", "notes": [], "mana": "110 130 150 170", "cooldown": "20 18 16 14", "details": [["SCEPTER REFRACT RADIUS:", "400"], ["%BLIND MISS RATE:", "100 100 100 100"], ["CAST RANGE:", "650"], ["CREEP BLIND DURATION:", "6.0 6.0 6.0 6.0"], ["LASER DAMAGE:", "80 160 240 320"], ["HERO BLIND DURATION:", "3 3.5 4 4.5"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Boush perfected this rock cutting laser in his subterranean laboratory, never considering its combat utility.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tinker_laser.png", "description": "Fires an intense energy beam, dealing damage and blinding the target, causing it to miss all physical attacks. <br><br>Upgradable by Aghanim's Scepter."},
'5151': {"cost": "", "name": "Heat-Seeking Missile", "scepter_mods": [["SCEPTER TARGETS:", "4 4 4 4"]], "scepter": "Increases Heat-Seeking Missile target count.", "notes": [], "mana": "80 100 120 140", "cooldown": "25.0 25.0 25.0 25.0", "details": [["TARGETS:", "2 2 2 2"], ["DAMAGE:", "125 200 275 350"], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The last contraption Boush was able to save was a retrofitted rocket launcher with a homing mechanism.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tinker_heat_seeking_missile.png", "description": "Launches a pair of rockets at the nearest visible enemy heroes within 2500 range. <br><br>Upgradable by Aghanim's Scepter."},
'5152': {"cost": "", "name": "March of the Machines", "scepter_mods": [], "scepter": "", "notes": ["Robots spawn at a rate of 24 per second."], "mana": "145 150 165 190", "cooldown": "35.0 35.0 35.0 35.0", "details": [["DURATION:", "6.0"], ["RADIUS:", "900"], ["CAST POINT:", ["0.53 0.53 0.53 0.53"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["16 24 32 40"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "Even though the laboratory has since been sealed off, the ability to radio in robotic drones is still in working order.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tinker_march_of_the_machines.png", "description": "Enlists an army of robotic minions to destroy enemy units in an area around Tinker."},
'5153': {"cost": "", "name": "Rearm", "scepter_mods": [], "scepter": "", "notes": ["Rearm works on all items except Aeon Disk, Arcane Boots, Black King Bar, Hand of Midas, Helm of the Dominator, Linken's Sphere, Meteor Hammer, Necronomicon, Pipe of Insight, and Refresher Orb."], "mana": "100 200 300", "cooldown": "0.0 0.0 0.0", "details": [["TIME TO REARM:", "3.0 1.5 0.75"], ["CAST POINT:", ["0.53 0.53 0.53 0.53"]], ["BEHAVIOR:", ["No Target", "Channeled"]]], "lore": "A new battery here, another set of rockets there, Boush continually improves on existing technology.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tinker_rearm.png", "description": "CHANNELED - Resets the cooldown on most of Tinker's items and abilities."},
'5154': {"cost": "", "name": "Shrapnel", "scepter_mods": [], "scepter": "", "notes": ["Damage is dealt 11 times, immediately at spell effect then every second.", "Does not damage buildings.", "Provides vision in the targeted area."], "mana": "50", "cooldown": "0", "details": [["DAMAGE:", "15 35 55 75"], ["DURATION:", "10.0"], ["RADIUS:", "450"], ["%MOVEMENT SLOW:", "-15 -20 -25 -30"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1800"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Kardel's modular rifle also fires incendiary rounds, useful for assaulting entrenched locations.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sniper_shrapnel.png", "description": "Consumes a charge to launch a ball of shrapnel that showers the target area in explosive pellets. Enemies are subject to damage and slowed movement. Reveals the targeted area. Shrapnel charges restore every 55 seconds."},
'5155': {"cost": "", "name": "Headshot", "scepter_mods": [], "scepter": "", "notes": ["Works on allied creeps."], "mana": "", "cooldown": "", "details": [["%CHANCE:", "40"], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["15 40 65 90"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Taking potshots at steepstalkers in his childhood has been thoroughly refined into perfect leads on enemy combatants.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sniper_headshot.png", "description": "Sniper increases his accuracy, giving him a chance to deal extra damage and briefly stop the movements of his enemies."},
'5156': {"cost": "", "name": "Take Aim", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS RANGE:", "100 200 300 400"], ["BEHAVIOR:", ["Passive"]]], "lore": "Kardel always takes it upon himself to stay as far from harm as he can while still performing his role - taking perfect aim.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sniper_take_aim.png", "description": "Extends the attack range of Sniper's rifle."},
'5157': {"cost": "", "name": "Assassinate", "scepter_mods": [], "scepter": "Turns Assassinate into a ground target AoE ability, that after the channel period launches a critical strike and procs headshot on units in the AoE. Only affects visible heroes.", "notes": ["Interrupts channeling spell, including on Spell Immune units.", "Invisibility doesn't disjoint the projectile.", "Crosshair effect is only visible to allies."], "mana": "175 275 375", "cooldown": "20.0 15.0 10.0", "details": [["RANGE:", "2000 2500 3000"], ["%SCEPTER CRITICAL DAMAGE:", "280"], ["AIM DURATION:", "2"], ["SCEPTER RADIUS:", "400"], ["CAST POINT:", ["2.0 2.0 2.0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["320 485 650"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["2000 2500 3000"]], ["BEHAVIOR:", ["Targets Units", "Other (Normal When Stolen)"]]], "lore": "In order to fulfill the prophecy and return to his home town, Kardel must make another shot as perfect as the one on the day of his ancient test.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/sniper_assassinate.png", "description": "Sniper locks onto a target enemy unit and, after a short aiming duration, fires a devastating shot that deals damage at long range and mini-stuns the target.<br><br>Upgradable by Aghanim's Scepter."},
'5158': {"cost": "", "name": "Death Pulse", "scepter_mods": [], "scepter": "", "notes": ["Can heal Spell Immune units.", "Death Pulse can't be disjointed."], "mana": "125 145 165 185", "cooldown": "8 7 6 5", "details": [["HEALTH REGEN PER KILL:", "2 3 4 5"], ["RADIUS:", "475"], ["REGEN DURATION:", "6"], ["MANA REGEN PER KILL:", "2 2.25 2.5 2.75"], ["HEAL:", "60 80 100 120"], ["HERO KILL REGEN MULTIPLIER:", "6"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["80 120 160 200"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Poor souls who succumb to Rotund'jere's plagues are recycled for future use.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necrolyte_death_pulse.png", "description": "Necrophos releases a wave of death around him, dealing damage to enemy units and healing allied units. Passively provides regen for 6 seconds for each unit Necrophos kills."},
'5159': {"cost": "", "name": "Heartstopper Aura", "scepter_mods": [], "scepter": "", "notes": ["Damage won't disable items like Blink Dagger.", "Does not affect ancient creeps."], "mana": "", "cooldown": "", "details": [["%HEALTH DECAY:", "0.5 1.0 1.5 2.0"], ["RADIUS:", "700"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "Those who come within a short distance of Necrophos can feel pestilence and plague in the air.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necrolyte_heartstopper_aura.png", "description": "Necrophos stills the hearts of his opponents, causing nearby enemy units to lose a percentage of their max health over time."},
'5160': {"cost": "", "name": "Ghost Shroud", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "28 24 20 16", "details": [["SLOW RADIUS:", "750"], ["%RESTORATION AMPLIFICATION:", "75"], ["%MOVEMENT SLOW:", "6 12 18 24"], ["%INCREASED MAGIC DAMAGE:", "-30"], ["DURATION:", "3 3.5 4 4.5"], ["CAST POINT:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Rotund'jere uses the souls of his victims as bridge from life to afterlife.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necrolyte_sadist.png", "description": "Necrophos slips into the realm that separates the living from the dead. Unable to attack or be attacked, he emits an aura that slows enemies around him. He takes additional magic damage in this form, but his restorative powers are amplified."},
'5161': {"cost": "", "name": "Reaper's Scythe", "scepter_mods": [["SCEPTER COOLDOWN:", "55 40 25"]], "scepter": "Reduces cooldown.", "notes": ["The stun goes through spell immunity, but not the damage.", "Damage is dealt at the end of the stun."], "mana": "200 350 500", "cooldown": "120", "details": [["STUN DURATION:", "1.5 1.5 1.5"], ["DAMAGE PER MISSING HP:", "0.6 0.75 0.9"], ["ADDED RESPAWN TIME:", "10 20 30"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The amount of death and suffering in the air increases the power of Necrophos's plague magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necrolyte_reapers_scythe.png", "description": "Stuns the target enemy hero, then deals damage based on how much life it is missing. Heroes killed by Reaper's Scythe will have 10 20 30 seconds added to their respawn timer. Any kill under this effect is credited to Necrophos.<br><br>Upgradable by Aghanim's Scepter."},
'5162': {"cost": "", "name": "Fatal Bonds", "scepter_mods": [], "scepter": "", "notes": ["Damage will not disable abilities or items like Blink Dagger which require player based damage."], "mana": "140", "cooldown": "24 22 20 18", "details": [["ENEMIES BOUND:", "3 4 5 6"], ["DURATION:", "25.0"], ["%SHARED DAMAGE:", "25"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "An ancient incantation that links the vital energies of multiple lifeforms into one collective body.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_fatal_bonds.png", "description": "Binds several enemy units together, causing a percentage of the damage dealt to one of them to be felt by the others."},
'5163': {"cost": "", "name": "Shadow Word", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90 110 130 150", "cooldown": "16", "details": [["DURATION:", "12.0"], ["RANGE:", "525 600 675 750"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["15 25 35 45"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["525 600 675 750"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Demnok's arcane arts have a myriad of uses, allowing them to be powerful friendly enchantments or damaging curses.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_shadow_word.png", "description": "Warlock whispers an incantation, healing a friendly unit or damaging an enemy unit over time."},
'5164': {"cost": "", "name": "Upheaval", "scepter_mods": [], "scepter": "", "notes": ["The slow increase is based on length of the channel, not the duration an enemy was standing in the area."], "mana": "100 110 120 130", "cooldown": "50 46 42 38", "details": [["MAX SLOW CHANNEL:", "12.5 6.5 4.5 3.5"], ["%MAX SLOW:", "84"], ["RADIUS:", "650 650 650 650"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target", "Channeled", "AOE"]]], "lore": "Demnok manipulates space-time, impairing entire armies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_upheaval.png", "description": "CHANNELED - A powerful slowing current that grows stronger as it's channelled. Lasts up to 16 seconds. Enemies are slowed for 3 seconds after leaving the area or the spell ends."},
'5165': {"cost": "", "name": "Chaotic Offering", "scepter_mods": [["SCEPTER GOLEM DAMAGE:", "56 75 94"], ["SCEPTER NUMBER OF GOLEMS:", "2"], ["%SCEPTER BOUNTY REDUCTION:", "50"], ["SCEPTER GOLEM HEALTH:", "750 1125 1500"]], "scepter": "Calls 2 Golems with reduced stats and bounty.", "notes": ["Spell Immune units will be stunned.", "This ability destroys trees in its area of effect."], "mana": "250 375 500", "cooldown": "170", "details": [["GOLEM HEALTH:", "1000 1500 2000"], ["GOLEM HEALTH REGEN:", "25 50 75"], ["GOLEM ARMOR:", "6 9 12"], ["GOLEM DAMAGE:", "75 100 125"], ["SUMMON BLAST RADIUS:", "600"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Demnok unleashes the captive spirit in his Dreadwood staff, causing destruction in enemy ranks.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_rain_of_chaos.png", "description": "Summons a Golem from the depths, stunning enemies for one second. The Golem lives 60 seconds, takes reduced damage from spells, has Permanent Immolation and Flaming Fists on attack.<br><br>Upgradable by Aghanim's Scepter."},
'5166': {"cost": "", "name": "Flaming Fists", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE:", "40 50 60"], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_golem_flaming_fists.png", "description": "Deals extra damage to nearby units when attacking."},
'5167': {"cost": "", "name": "Permanent Immolation", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE:", "30 40 50"], ["AURA RADIUS:", "300"], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/warlock_golem_permanent_immolation.png", "description": "Burns the Golem's nearby enemy units, with damage per second."},
'5168': {"cost": "", "name": "Wild Axes", "scepter_mods": [], "scepter": "", "notes": ["This ability destroys trees."], "mana": "80", "cooldown": "8", "details": [["DAMAGE AMP PER STACK:", "6 8 10 12"], ["RANGE:", "1500"], ["DAMAGE PER AXE:", "30 60 90 120"], ["CAST POINT:", ["0.4"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "While learning to maneuver in nature alone, the Beastmaster also mastered the use of a pair of tomahawks, adept at cutting down trees as well as adversaries.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_wild_axes.png", "description": "Beastmaster sends his axes flying and calls them home again, slicing through enemy units and trees along their path. Each axe can hit an enemy once, and amplifies subsequent damage from Beastmaster and his units."},
'5169': {"cost": "", "name": "Call of the Wild", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 60 70 80", "cooldown": "60", "details": [["%BOAR SLOW:", "10 20 30 40"], ["BOAR ATTACK DAMAGE:", "16 24 32 40"], ["BOAR POISON DURATION:", "3.0"], ["BOAR HEALTH:", "200 300 400 500"], ["CAST POINT:", ["0.3"]], ["BEHAVIOR:", ["No Target"]]], "lore": "After befriending the strange beast of his childhood, Beastmaster has learned to call to animals in times of need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_call_of_the_wild.png", "description": "Beastmaster calls forth beasts to aid in the battlefield. <br><br>Level 1: Boar Level 1 <br>Level 2: Boar Level 2 <br>Level 3: Boar Level 3 + Hawk <br>Level 4: Boar Level 4 + Hawk + Random Neutral"},
'5170': {"cost": "", "name": "Invisibility", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["FADE TIME:", "0 0 4 4"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_hawk_invisibility.png", "description": "If motionless for some time, the hawk becomes invisible."},
'5171': {"cost": "", "name": "Poison", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%MOVEMENT SLOW:", "-10 -20 -30 -40"], ["DURATION:", "3.0"], ["ATTACK SLOW:", "-10 -20 -30 -40"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_boar_poison.png", "description": "Inflicts a poison that slows attack and movement speeds."},
'5172': {"cost": "", "name": "Inner Beast", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900"], ["BONUS ATTACK SPEED:", "15 25 35 45"], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Beastmaster's ability to incite the innate strength of animals was seen in the mauling of the king of Slom.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_inner_beast.png", "description": "Untaps the inner fury of allies, passively increasing their attack speed."},
'5173': {"cost": "", "name": "Shadow Strike", "scepter_mods": [], "scepter": "", "notes": ["The affected unit slowly regains its original movement speed every second during the duration.", "Units afflicted by Shadow Strike can be denied by their allies when their HP drops below 25% of their maximum health."], "mana": "110", "cooldown": "16.0 12.0 8.0 4.0", "details": [["DURATION:", "15"], ["INITIAL DAMAGE:", "50 75 100 125"], ["%MOVEMENT SLOW:", "-20 -30 -40 -50"], ["DAMAGE PER TICK:", "30 45 60 75"], ["CAST RANGE:", "450 500 550 600"], ["DURATION:", ["15.0 15.0 15.0 15.0"]], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["450 500 550 600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Akasha's envenomed dagger allows her to delight in the drawn out suffering of her victims.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/queenofpain_shadow_strike.png", "description": "Hurls a poisoned dagger which deals large initial damage, and then deals damage over time. The poisoned unit has its movement speed slowed for 15 seconds. An instance of damage is dealt every 3 seconds."},
'5174': {"cost": "", "name": "Blink", "scepter_mods": [], "scepter": "", "notes": ["You can use Blink to dodge incoming projectiles."], "mana": "60 60 60 60", "cooldown": "15.0 12.0 9.0 6.0", "details": [["RANGE:", "1300"], ["CAST POINT:", ["0.33 0.33 0.33 0.33"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Disabled By Root"]]], "lore": "The Secret Queen lives up to her title, making her pain impossible to escape.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/queenofpain_blink.png", "description": "Short distance teleportation that allows Queen of Pain to move in and out of combat."},
'5175': {"cost": "", "name": "Scream Of Pain", "scepter_mods": [], "scepter": "", "notes": ["Scream Of Pain will hit invisible units.", "Scream Of Pain cannot be disjointed."], "mana": "110 120 130 140", "cooldown": "7.0 7.0 7.0 7.0", "details": [["RADIUS:", "475"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["75 150 225 300"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The sultry voice of Akasha beckons her opponents while stealing their souls.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/queenofpain_scream_of_pain.png", "description": "The Queen of Pain lets loose a piercing scream around her, damaging nearby enemies."},
'5176': {"cost": "", "name": "Sonic Wave", "scepter_mods": [["SCEPTER COOLDOWN:", "40"], ["SCEPTER DAMAGE:", "325 440 555"]], "scepter": "Increases damage and decreases cooldown.", "notes": ["Sonic Wave can hit units up to 1150 units away."], "mana": "250 360 500", "cooldown": "135 135 135", "details": [["DAMAGE:", "290 380 470"], ["WAVE MAX RADIUS:", "450"], ["CAST POINT:", ["0.452 0.452 0.452"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Directional Cast", "Point Target"]]], "lore": "Her most exquisite of all of torments, Akasha's Sonic Wave puts her poor foes out of their misery.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/queenofpain_sonic_wave.png", "description": "Creates a gigantic wave of sound in front of Queen of Pain, dealing heavy damage to all enemy units in its wake.<br><br>Upgradable by Aghanim's Scepter."},
'5177': {"cost": "", "name": "Primal Roar", "scepter_mods": [["SCEPTER CAST RANGE:", "950 950 950"], ["SCEPTER COOLDOWN:", "45.0 45.0 45.0"]], "scepter": "Reduces cooldown, and increases cast range.", "notes": ["The stun will hit Spell Immune units. The damage will not."], "mana": "150 175 200", "cooldown": "80.0 75.0 70.0", "details": [["SHOUT WIDTH:", "300"], ["STUN DURATION:", "3.0 3.5 4.0"], ["%MOVEMENT SLOW:", "-50 -50 -50"], ["ATTACK SLOW:", "-50 -50 -50"], ["DAMAGE:", "150 225 300"], ["SLOW DURATION:", "2.0 3.0 4.0"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Beastmaster has learned to channel his primal instincts into an animalistic roar, causing devastation in the ranks of enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_primal_roar.png", "description": "Beastmaster lets loose a deafening roar that stuns, and shoves open a path to its target. All units in the path of the roar are damaged, while units shoved aside by the roar have their movement and attack speed slowed. Additionally, Beastmaster and his units gain 30% movement speed for 3 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5178': {"cost": "", "name": "Venomous Gale", "scepter_mods": [], "scepter": "", "notes": ["Units afflicted by Venomous Gale can be denied when their HP drops below 25%.", "Slow starts at 50%, and decreases as time passes.", "Duration damage is dealt every 3 seconds."], "mana": "125", "cooldown": "21 20 19 18", "details": [["%SLOW:", "-50 -50 -50 -50"], ["DURATION:", "15.0 15.0 15.0 15.0"], ["DAMAGE PER TICK:", "10 40 70 100"], ["INITIAL DAMAGE:", "25 50 75 100"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "A concoction of various stings, poisons, and toxins gathered from the jungles of Jidi Isle, victims surviving it are rare.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/venomancer_venomous_gale.png", "description": "Launches a ball of venom in a line, poisoning enemy units so that they take both initial damage and damage over time, as well as suffering slowed movement. Venomous Gale deals damage every 3 seconds over its duration."},
'5179': {"cost": "", "name": "Poison Sting", "scepter_mods": [], "scepter": "", "notes": ["Poison Sting damage can be lethal.", "Damage from Poison Sting does not interrupt healing from items, nor does it activate the cooldown on Blink Dagger."], "mana": "", "cooldown": "", "details": [["%SLOW:", "-11 -12 -13 -14"], ["DURATION:", "6.0 9.0 12.0 15.0"], ["DAMAGE PER SECOND:", "6 14 22 30"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The paralytic sting of the creature which caused his transformation now belongs to the Venomancer.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/venomancer_poison_sting.png", "description": "Adds poison damage to Venomancer's normal attacks, slowing movement speed."},
'5180': {"cost": "", "name": "Plague Ward", "scepter_mods": [], "scepter": "", "notes": [], "mana": "20 20 20 20", "cooldown": "5.0", "details": [["WARD HP:", "75 200 325 450"], ["WARD DAMAGE:", "13 22 31 40"], ["DURATION:", "40.0"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["850"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "A mixture of his old herbalist talents and newfound toxic mastery creates a living embodiment of plague.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/venomancer_plague_ward.png", "description": "Summons a plague ward to attack enemy units and structures. The ward is immune to magic. Wards gain the Poison Sting level from Venomancer, dealing 50% of the full damage."},
'5181': {"cost": "", "name": "Poison Nova", "scepter_mods": [["SCEPTER COOLDOWN:", "140.0 120.0 60.0"], ["SCEPTER DAMAGE:", "60 85 110"]], "scepter": "Increases damage and decreases cooldown.", "notes": [], "mana": "200 300 400", "cooldown": "140.0 120.0 100.0", "details": [["RADIUS:", "830"], ["DAMAGE:", "30 55 80"], ["DURATION:", "16"], ["CAST POINT:", ["0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "In the Acid Jungles, creatures releasing noxious poison to their attackers is common; Venomancer spreads this plague beyond the Jidi Isle.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/venomancer_poison_nova.png", "description": "A spreading ring of poison that does damage over time to enemy units around Venomancer. Poison Nova cannot deal lethal damage; targets will be left with at least 1 health.<br><br>Upgradable by Aghanim's Scepter."},
'5182': {"cost": "", "name": "Time Walk", "scepter_mods": [], "scepter": "", "notes": ["Faceless Void is invulnerable while using Time Walk."], "mana": "40", "cooldown": "24 18 12 6", "details": [["RANGE:", "675"], ["BACKTRACK DURATION:", "2.0"], ["CAST POINT:", ["0.3"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Directional Cast", "Disabled By Root"]]], "lore": "Darkterror tears a hole in time, passing through Claszureme, and appearing back in an instant.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/faceless_void_time_walk.png", "description": "Rushes to a target location while backtracking any damage taken the last 2.0 seconds."},
'5183': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5184': {"cost": "", "name": "Time Lock", "scepter_mods": [], "scepter": "", "notes": ["Stun works on Spell Immune units.", "Does not stack with Skull Basher."], "mana": "", "cooldown": "", "details": [["%CHANCE:", "10 15 20 25"], ["DURATION:", "1.0"], ["BONUS DAMAGE:", "50 75 100 125"], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The strike of the Faceless Void lands with dimension shifting force.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/faceless_void_time_lock.png", "description": "Adds the chance for an attack to lock an enemy unit in time, stunning it and dealing bonus damage."},
'5185': {"cost": "", "name": "Chronosphere", "scepter_mods": [["SCEPTER COOLDOWN:", "60"]], "scepter": "Decreases cooldown.", "notes": ["Pauses all units and buildings, friendly or enemy, except those owned by Faceless Void.", "Faceless Void is never affected by Chronospheres with any owner."], "mana": "150 225 300", "cooldown": "140.0 125.0 110.0", "details": [["DURATION:", "4.0 4.5 5.0"], ["RADIUS:", "425"], ["CAST POINT:", ["0.35 0.35 0.35"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "When a rift opens to Claszureme, all poor souls caught within will likely never return.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/faceless_void_chronosphere.png", "description": "Creates a blister in spacetime, trapping all units caught in its sphere of influence and causes you to move very quickly inside it. Only Faceless Void and any units he controls are unaffected. Invisible units in the sphere will be revealed.<br><br>Upgradable by Aghanim's Scepter."},
'5186': {"cost": "", "name": "Nether Blast", "scepter_mods": [], "scepter": "", "notes": ["Damage is delayed by 0.9 seconds."], "mana": "85 105 125 145", "cooldown": "5", "details": [["RADIUS:", "400 400 400 400"], ["BLAST DAMAGE:", "100 175 250 325"], ["BLAST DELAY:", "0.9 0.9 0.9 0.9"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The Arts of Oblivion include a deafening blast of emerald flames from the Nether Reaches.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pugna_nether_blast.png", "description": "An exploding pulse deals damage to enemies and structures in the area. Deals half damage to structures."},
'5187': {"cost": "", "name": "Decrepify", "scepter_mods": [], "scepter": "", "notes": ["Only magical and pure damage can affect a unit under the effects of Decrepify.", "Doesn't slow allied units.", "Can be used on your Nether Ward."], "mana": "60", "cooldown": "15.0 12.0 9.0 6.0", "details": [["%ENEMY MOVE SLOW:", "-30 -40 -50 -60"], ["%ENEMY INCREASED MAGIC DAMAGE:", "-30 -40 -50 -60"], ["%ALLY INCREASED MAGIC DAMAGE:", "-25"], ["DURATION:", "3.5"], ["DURATION:", ["3.5"]], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["700 700 700 700"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "A now-mastered relic from his childhood, Pugna delights in banishing others into the Nether Realm, whether for good, evil, or simple enjoyment.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pugna_decrepify.png", "description": "A powerful banishing spell that slows a unit and renders it unable to attack or be attacked. Afflicted units take extra magic damage."},
'5188': {"cost": "", "name": "Nether Ward", "scepter_mods": [], "scepter": "", "notes": ["Nether Ward deals damage before the actual spell is cast, so if the caster dies the spell will have no effect.", "Nether Ward can be decrepified.", "Nether Ward has 4 HP. Heroes attack it for 1 damage, while illusions and non-hero units deal 0.25 damage."], "mana": "80 80 80 80", "cooldown": "35.0 35.0 35.0 35.0", "details": [["WARD DURATION:", "30"], ["ATTACKS TO DESTROY:", "4 4 4 4"], ["MANA REGEN REDUCTION:", "-0.25 -0.5 -0.75 -1"], ["WARD ATTACK RANGE:", "1600"], ["DAMAGE PER MANA:", "1.0 1.25 1.50 1.75"], ["DURATION:", ["30"]], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "While at the lamasery for the Arts of Oblivion, Pugna learned to dominate his classmates with a simple ward charged with Nether magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pugna_nether_ward.png", "description": "Pugna places a Nether Ward at the target location. The ward reduces the mana regeneration of nearby enemy heroes, and will fire at any enemy hero who casts a spell. Nether Ward deals damage equal to the damage multiplier times the mana spent by the enemy hero."},
'5189': {"cost": "", "name": "Life Drain", "scepter_mods": [], "scepter": "Increases drain per second and removes cooldown.", "notes": ["Illusions are destroyed on the first tick of damage.", "HP drained depends on the actual damage dealt."], "mana": "125 175 225", "cooldown": "22.0 22.0 22.0", "details": [["CAST RANGE:", "700"], ["MAX DURATION:", "10"], ["DRAIN PER SECOND:", "150 225 300"], ["CAST POINT:", ["0.2 0.2 0.2"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Channeled", "Other (Ignore Backswing)"]]], "lore": "Pugna has truly become more powerful than even the grandmaster of Oblivion.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/pugna_life_drain.png", "description": "CHANNELED - When cast on an enemy, Pugna drains health from the target enemy unit to heal himself and granting vision over the target. If Pugna has full HP, and the enemy target is a Hero, Life Drain will restore mana instead.<br><br>When cast on an ally, Pugna will drain his own health into his ally.<br><br>Upgradable by Aghanim's Scepter."},
'5190': {"cost": "", "name": "Stifling Dagger", "scepter_mods": [], "scepter": "", "notes": ["If an attack effect is chance-based, the chance of its application will be the same as its chance to occur."], "mana": "30 25 20 15", "cooldown": "6", "details": [["RANGE:", "525 750 975 1200"], ["BASE DAMAGE:", "65"], ["%ATTACK DAMAGE:", "25 40 55 70"], ["%MOVE SLOW:", "-50"], ["SLOW DURATION:", "1 2 3 4"], ["DURATION:", ["1 2 3 4"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["525 750 975 1200"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The first skill learned by the Sisters of the Veil often signals an incoming hit.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_assassin_stifling_dagger.png", "description": "Throws a dagger slowing the enemy unit's movement speed, dealing 65+25 40 55 70 of Phantom Assassin's attack damage as physical damage and applying attack effects from items and abilities."},
'5191': {"cost": "", "name": "Phantom Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 50 50 50", "cooldown": "14 11 8 5", "details": [["RANGE:", "1000 1000 1000 1000"], ["BONUS ATTACK SPEED:", "130"], ["MAX ATTACKS:", "4"], ["DURATION:", ["3 3 3 3"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["1000 1000 1000 1000"]], ["BEHAVIOR:", ["Targets Units", "Disabled By Root"]]], "lore": "Mortred's silken veil is the last thing her unfortunate target sees.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_assassin_phantom_strike.png", "description": "Teleports to a unit, friendly or enemy, and grants bonus attack speed while attacking if it's an enemy unit."},
'5192': {"cost": "", "name": "Blur", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%EVASION:", "20 30 40 50"], ["MAP VANISH RADIUS:", "1600 1600 1600 1600"], ["BEHAVIOR:", ["Passive"]]], "lore": "Meditation allows a Veiled Sister to carefully anticipate her opponents in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_assassin_blur.png", "description": "Phantom Assassin focuses inward, increasing her ability to evade enemy attacks, and allowing her to blur her body to disappear from the enemy team's minimap when far from enemy heroes.<br><br>Stacks diminishingly with other sources of Evasion."},
'5193': {"cost": "", "name": "Coup de Grace", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CRITICAL DAMAGE:", "230 340 450"], ["%CRITICAL CHANCE:", "15"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A divine strike, Mortred honors her opponent by choosing them for death.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phantom_assassin_coup_de_grace.png", "description": "Phantom Assassin refines her combat abilities, gaining a chance of delivering a devastating critical strike to enemy units. Stifling Dagger shares the same critical strike chance."},
'5194': {"cost": "", "name": "Refraction", "scepter_mods": [], "scepter": "", "notes": ["Refraction is visible to enemies.", "Damage as HP Removal bypasses Refraction (it won't reduce the charges).", "Only instances of 5 or more damage will trigger Refraction."], "mana": "100", "cooldown": "17.0 17.0 17.0 17.0", "details": [["BONUS DAMAGE:", "20 40 60 80"], ["INSTANCES:", "3 4 5 6"], ["DURATION:", "17.0 17.0 17.0 17.0"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Manipulating her psionic veil, Lanaya bends nature's law to her will.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_refraction.png", "description": "Templar Assassin becomes highly elusive, avoiding damage and gaining a bonus to her damage. The damage and avoidance effects are separate, and have a limited number of instances."},
'5195': {"cost": "", "name": "Meld", "scepter_mods": [], "scepter": "", "notes": ["Meld's armor reduction does not work against towers.", "Meld is broken by any action other than staying in position."], "mana": "50 50 50 50", "cooldown": "6", "details": [["ARMOR REDUCTION:", "-2 -4 -6 -8"], ["BONUS DAMAGE:", "50 100 150 200"], ["ARMOR REDUCTION DURATION:", "10"], ["DURATION:", ["10.0 10.0 10.0 10.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Casting Stops Attack"]]], "lore": "Lanaya is as elusive as her covenant with the Hidden Temple.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_meld.png", "description": "Templar Assassin conceals herself, becoming invisible as long as she remains still. If Meld's invisibility is broken by attacking an enemy, Lanaya will deal bonus damage to the enemy and reduce their armor for 10 seconds."},
'5196': {"cost": "", "name": "Psi Blades", "scepter_mods": [], "scepter": "", "notes": ["Attack effects like Bash will only be applied to the main target.", "Split damage hits invisible units."], "mana": "", "cooldown": "", "details": [["SPLIT RANGE:", "590 630 670 710"], ["BONUS ATTACK RANGE:", "60 120 180 240"], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Her blades pierce the skin as much as the mind, furthering her understanding of the mystery that is reality.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_psi_blades.png", "description": "Templar Assassin's psi blades slice through the attacked unit, splitting and damaging enemy units directly behind it, while gaining bonus attack range."},
'5197': {"cost": "", "name": "Psionic Trap", "scepter_mods": [], "scepter": "", "notes": ["Traps have 400/400 vision range and don't prevent neutral camps from spawning.", "Traps last indefinitely.", "They have invisibility that fades in over 2 seconds, spell immunity, and 100 HP."], "mana": "15 15 15", "cooldown": "11.0 8.0 5.0", "details": [["%MAX MOVEMENT SLOW:", "60"], ["%MIN MOVEMENT SLOW:", "30"], ["MAX TRAPS:", "5 8 11"], ["BONUS DAMAGE:", "250 350 450"], ["SLOW DURATION:", "5"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["2000"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "Calling upon the reach of the Hidden Temple, none escape the eye of the Templar.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_psionic_trap.png", "description": "Templar Assassin places mystical traps that invisibly monitor enemy movement. When sprung at her command, they exert a slowing influence of 30 in the area. Traps charge up to slow 60% after 4 seconds. Deals bonus damage when fully charged."},
'5198': {"cost": "", "name": "Trap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "0.5", "details": [["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Not Learnable", "No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_trap.png", "description": "Springs the nearest trap, slowing nearby enemies."},
'5199': {"cost": "", "name": "Trap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "0.5", "details": [["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Not Learnable", "No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/templar_assassin_self_trap.png", "description": "Springs the trap, slowing nearby enemies."},
'52': {"cost": "3200", "name": "Eaglesong", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "25 Agility"], ["BEHAVIOR:", ["Passive"]]], "lore": "Capturing the majestic call of an eagle, this mystical horn brings limitless dexterity to those who hear it.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/eagle.png", "description": ""},
'5200': {"cost": "", "name": "Last Will", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE:", "550 675 800"], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necronomicon_warrior_last_will.png", "description": "Deals damage to the unit that kills the Necronomicon Warrior."},
'5201': {"cost": "", "name": "True Sight", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "1000"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necronomicon_warrior_sight.png", "description": "Reveals invisible units."},
'5202': {"cost": "", "name": "Mana Break", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CONVERTED TO DAMAGE:", "50"], ["MANA BURN PER HIT:", "30 40 50"], ["DAMAGE TYPE:", ["Physical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necronomicon_warrior_mana_burn.png", "description": "Mana burned per hit, a portion of which is dealt as damage."},
'5203': {"cost": "", "name": "Mana Burn", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0 0 0", "cooldown": "7", "details": [["%CONVERTED TO DAMAGE:", "100"], ["CAST RANGE:", "600"], ["MANA BURN PER HIT:", "125 175 225"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necronomicon_archer_mana_burn.png", "description": "Launches an arrow that burns away the targeted unit's mana, dealing damage equal to the amount of mana burned."},
'5204': {"cost": "", "name": "Archer Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900"], ["ATTACK SPEED BONUS:", "5 7 9"], ["%MOVE SPEED BONUS:", "5 7 9"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/necronomicon_archer_aoe.png", "description": "Increases movement and attack speed of nearby units."},
'5205': {"cost": "", "name": "Return to Base", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_return_to_base.png", "description": "Returns the courier to base"},
'5206': {"cost": "", "name": "Transfer Items", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_transfer_items.png", "description": "Transfer items to hero"},
'5207': {"cost": "", "name": "Return Items", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_return_stash_items.png", "description": "Return items to stash"},
'5208': {"cost": "", "name": "Retrieve Items", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_take_stash_items.png", "description": "Retrieve items from stash"},
'5209': {"cost": "", "name": "Shield", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "200.0", "details": [["DURATION:", "2.0"], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_shield.png", "description": "Summons a protective shield around the courier"},
'5210': {"cost": "", "name": "Speed Burst", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "90.0", "details": [["BURST MOVE SPEED:", "800"], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Usable While Moving", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_burst.png", "description": "The courier gains a burst of speed for 4.0 seconds"},
'5213': {"cost": "", "name": "Spell Block", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "15.0", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/roshan_spell_block.png", "description": "Roshan will block one targeted spell every 15 seconds. Also reduces status effects by 25%%."},
'5214': {"cost": "", "name": "Bash", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE:", "50"], ["%CHANCE:", "15"], ["STUN DURATION:", "1.65"], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/roshan_bash.png", "description": "Roshan has a chance to stun on attack."},
'5215': {"cost": "", "name": "Slam", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "10.0", "details": [["HERO DURATION:", "2.0"], ["RADIUS:", "350"], ["%SLOW:", "50"], ["UNIT DURATION:", "4.0"], ["DAMAGE GROWTH PER MINUTE:", "8"], ["DAMAGE:", "70"], ["CAST POINT:", ["0.47 0.47 0.47 0.47"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/roshan_slam.png", "description": "Roshan slams the ground, damaging and slowing all nearby enemies. Slam's damage will increase every minute."},
'5216': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5217': {"cost": "", "name": "Strength of the Immortal", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "Passive"]]], "lore": "", "icon": "", "description": "Roshan possesses numerous protective abilities, including 55% magic damage resistance, the ability to reduce damage from attacking illusions, and a scaling armor bonus that increases as time goes on."},
'5218': {"cost": "", "name": "Poison Attack", "scepter_mods": [], "scepter": "", "notes": ["Successive casts don't increase slow or damage, but refresh the duration."], "mana": "40 35 30 25", "cooldown": "6.0 4.0 2.0 0.0", "details": [["DAMAGE PER MISSING HEALTH PERCENTAGE:", "0.25 0.5 0.75 1.0"], ["%MOVE SLOW:", "-25 -30 -35 -40"], ["DURATION:", "3"], ["ATTACK SLOW:", "-25 -30 -35 -40"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0 0 0 0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "The Netherdrake's inborn toxic breath quickly drains the vitality of its afflicted.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/viper_poison_attack.png", "description": "Intensifies Viper's venom, adding an effect to his normal attack that slows attack and movement speed while dealing damage over time based on how low the target is."},
'5219': {"cost": "", "name": "Nethertoxin", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "5.0", "details": [["RADIUS:", "300"], ["DURATION:", "8"], ["DAMAGE PER SECOND:", "20 30 40 50"], ["MAGIC RESISTANCE REDUCTION:", "-10 -15 -20 -25"], ["CAST POINT:", ["0.2"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Poison from the Nether Reaches turns wounds into fatalities, and fatigue into death.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/viper_nethertoxin.png", "description": "Viper releases a Nethertoxin at the targeted area. Units in that area take damage over time, have lower resistance and their passives do not work."},
'5220': {"cost": "", "name": "Corrosive Skin", "scepter_mods": [], "scepter": "", "notes": ["Stacks multiplicatively with other magic damage resistance sources."], "mana": "", "cooldown": "", "details": [["DAMAGE PER SECOND:", "8 16 24 32"], ["DURATION:", "4.0"], ["MAX RANGE RADIUS:", "1400"], ["%MAGIC RESISTANCE:", "10 15 20 25"], ["ATTACK SLOW:", "8 16 24 32"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "It is not unusual for sword and shield alike to corrode in the very hands of those who attack the Netherdrake.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/viper_corrosive_skin.png", "description": "Viper exudes an infectious toxin that damages and slows the attack speed of any enemy that damages it in a 1400 radius. The acid exudate also increases Viper's resistance to magic."},
'5221': {"cost": "", "name": "Viper Strike", "scepter_mods": [["SCEPTER MANA COST:", "125 125 125"], ["SCEPTER CAST RANGE:", "900"], ["SCEPTER COOLDOWN:", "10"]], "scepter": "Decreases mana cost and cooldown, and increases cast range.", "notes": ["Slow works on spell immune units."], "mana": "125 175 250", "cooldown": "50 40 30", "details": [["DURATION:", "5"], ["DAMAGE PER SECOND:", "60 100 145"], ["%MOVE SLOW:", "-40 -60 -80"], ["ATTACK SLOW:", "-40 -60 -80"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Once used to slay his sadistic summoner, the most powerful of Netherdrake infections spreads through the veins of those foolish enough to cross Viper.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/viper_viper_strike.png", "description": "Viper slows the targeted enemy unit's movement and attack speed while also dealing poison damage over time. The slowing effect reduces over the duration of the poison.<br><br>Upgradable by Aghanim's Scepter."},
'5222': {"cost": "", "name": "Lucent Beam", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90 100 110 120", "cooldown": "6.0 6.0 6.0 6.0", "details": [["STUN DURATION:", "0.8"], ["BEAM DAMAGE:", "75 150 225 300"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Selemene smites those who encroach upon the Nightsilver Woods.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/luna_lucent_beam.png", "description": "Calls a beam of lunar energy down upon an enemy, damaging and briefly stunning them."},
'5223': {"cost": "", "name": "Moon Glaives", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BOUNCES:", "1 2 3 6"], ["%DAMAGE REDUCTION PER BOUNCE:", "35"], ["BOUNCE RADIUS:", "500"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Carefully sharpened, Luna's boomerang-like weapon cuts a wide swath through enemy numbers.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/luna_moon_glaive.png", "description": "Empowers Luna's glaives, causing her attacks to bounce between enemy units. Deals less damage with each bounce."},
'5224': {"cost": "", "name": "Lunar Blessing", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS NIGHT VISION:", "250 500 750 1000"], ["BLESSING RADIUS:", "900 900 900 900"], ["BONUS DAMAGE:", "14 22 30 38"], ["BEHAVIOR:", ["Passive"]]], "lore": "The Goddess of the Moon smiles upon her kin.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/luna_lunar_blessing.png", "description": "Increases the damage dealt by attacks from Luna and nearby allied heroes. Luna is also blessed with increased vision range at night."},
'5225': {"cost": "", "name": "Eclipse", "scepter_mods": [["SCEPTER CAST RANGE:", "2500"], ["SCEPTER DURATION:", "1.8 3.6 5.4"], ["SCEPTER TOTAL BEAMS:", "6 12 18"]], "scepter": "Allows Luna to cast Eclipse on an allied unit or herself and have its effects follow them, or cast it on an area. Also increases total beams and duration, removes the limit on beams per unit, and makes the beams appear twice as fast.", "notes": ["There is a .6 seconds gap between beams, .3 seconds with scepter.", "Eclipse Lucent Beams do not stun.", "Eclipse doesn't work if Luna doesn't have any points in Lucent Beam.", "Beams will stop if Luna is killed.", "Will not hit invisible units."], "mana": "150 200 250", "cooldown": "140.0", "details": [["RADIUS:", "675 675 675"], ["ECLIPSE DURATION:", "2.4 4.2 6.0"], ["TOTAL BEAMS:", "5 8 11"], ["MAX BEAMS PER UNIT:", "5"], ["CAST POINT:", ["0.6 0.6 0.6"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "In times of great need, Selemene herself descends into the world, blocking out the light and hope of the opposed.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/luna_eclipse.png", "description": "Showers random nearby enemies with strikes from Luna's current level of Lucent Beam. These beams do not stun their targets, and there is a maximum number of times that a single target can be struck. Also turns day into night for 10 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5226': {"cost": "", "name": "Breathe Fire", "scepter_mods": [], "scepter": "", "notes": ["Affects mechanical units.", "Hits units up to 900 away."], "mana": "100 110 120 130", "cooldown": "14 13 12 11", "details": [["REDUCTION DURATION:", "11"], ["%DAMAGE REDUCTION:", "-25"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["90 170 240 300"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Directional Cast", "Point Target", "Targets Units"]]], "lore": "Knight Davion's breath has become that of the mighty Eldwurm Slyrak, remembered for burning numerous other knights to a crisp.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dragon_knight_breathe_fire.png", "description": "Unleashes a breath of fire in front of Dragon Knight that burns enemies and reduces the damage their attacks deal."},
'5227': {"cost": "", "name": "Dragon Tail", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 100 100 100", "cooldown": "12 11 10 9", "details": [["STUN DURATION:", "2.5 2.75 3.0 3.25"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["25 50 75 100"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Davion's combination of dragon talents and knightly skills makes him a vicious opponent in melee combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dragon_knight_dragon_tail.png", "description": "Dragon Knight smites an enemy unit in melee range with his shield, stunning it while dealing minor damage. When in Elder Dragon Form, the cast range increases to 400."},
'5228': {"cost": "", "name": "Dragon Blood", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ARMOR:", "3 6 9 12"], ["HEALTH REGEN:", "4 6 8 10"], ["BEHAVIOR:", ["Passive"]]], "lore": "Slyrak's blood still courses through Davion's veins, giving him twice the vitality of an ordinary knight.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dragon_knight_dragon_blood.png", "description": "The life blood of the Dragon improves health regeneration and strengthens armor."},
'5229': {"cost": "", "name": "Elder Dragon Form", "scepter_mods": [], "scepter": "", "notes": ["Manta Style's cooldown time will be based on whether Dragon Knight was in his ranged or melee form when the item was used.", "Corrosive Breath poison damage is lethal.", "Splash Attack deals 100/75/50% damage in a 150/225/300 radius. Splash damage does not affect buildings."], "mana": "50 50 50", "cooldown": "115", "details": [["BONUS ATTACK RANGE:", "350"], ["BONUS MOVE SPEED:", "25 25 25"], ["DURATION:", "60"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The dormant dragon power springs forth from within Davion, combining the powers of a legendary knight with a legendary Eldwurm.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dragon_knight_elder_dragon_form.png", "description": ""},
'5232': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5233': {"cost": "", "name": "Poison Touch", "scepter_mods": [], "scepter": "", "notes": ["The damage is not reduced by damage block abilities."], "mana": "80", "cooldown": "35 30 25 20", "details": [["DAMAGE PER SECOND:", "10 20 30 40"], ["%SLOW:", "-14 -16 -18 -20"], ["TARGETS:", "4 5 6 7"], ["DURATION:", "4 5 6 7"], ["RANGE:", "600 700 800 900"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 700 800 900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "One of the few Dezun rites used for offensive purposes, the paralytic enchantment often proves useful.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dazzle_poison_touch.png", "description": "Releases a cone of poisonous magic that strikes multiple enemy units. Deals damage over time and slows the targets. Anytime the targets get attacked, the debuff duration is refreshed."},
'5234': {"cost": "", "name": "Shallow Grave", "scepter_mods": [], "scepter": "Causes Shallow Grave to be an AoE spell.", "notes": ["HP cannot go below 1 while under the effects of Shallow Grave, but Axe's Culling Blade will still kill the hero."], "mana": "150", "cooldown": "60 45 30 15", "details": [["SCEPTER RADIUS:", "450"], ["RANGE:", "550 700 850 1000"], ["DURATION:", "5 5 5 5"], ["DURATION:", ["5 5 5 5"]], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["550 700 850 1000"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack", "Other (Ignore Backswing)"]]], "lore": "Only a seasoned acolyte of the Shadow can properly perform the rite of preventing death.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dazzle_shallow_grave.png", "description": "An ally blessed with Shallow Grave, no matter how close to death, cannot die while under its protection.<br><br>Upgradable by Aghanim's Scepter."},
'5235': {"cost": "", "name": "Shadow Wave", "scepter_mods": [], "scepter": "", "notes": ["If enemies are near multiple allied units affected by Shadow Wave, they will take multiple instances of damage.", "Prioritizes allied heroes over creeps."], "mana": "90 100 110 120", "cooldown": "12 10 8 6", "details": [["DAMAGE:", "80 100 120 140"], ["DAMAGE RADIUS:", "185"], ["MAX HEAL TARGETS:", "4 5 6 7"], ["HEAL ARC RADIUS:", "475"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "While it is a simplistic and routine rite among Shadow Priests, the Shadow Wave is also the most critical for success.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dazzle_shadow_wave.png", "description": "Sends out a bolt of power that arcs between allies, healing them while damaging any units standing nearby. Dazzle is always healed by Shadow Wave."},
'5236': {"cost": "", "name": "Weave", "scepter_mods": [], "scepter": "", "notes": ["Places a buff on units, so entering or leaving the area after the cast has no effect."], "mana": "100 100 100", "cooldown": "40 40 40", "details": [["RADIUS:", "575 575 575"], ["ARMOR PER SECOND:", "0.75 1 1.25"], ["DURATION:", "24.0"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["2000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "His ethereal journey into the Nothl realm has allowed Dazzle to mend together the powers of light and dark, creating shifting waves of enchantments.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dazzle_weave.png", "description": "Applies a buff that increases the armor of allied heroes while decreasing the armor of enemy heroes in the target area over time."},
'5237': {"cost": "", "name": "Battery Assault", "scepter_mods": [], "scepter": "", "notes": ["Remains active if Clockwerk is disabled.", "Deals damage every 0.7 seconds.", "Total damage: 320/800/1280/1760"], "mana": "100", "cooldown": "32.0 28.0 24.0 20.0", "details": [["RADIUS:", "275 275 275 275"], ["DURATION:", "10.5 10.5 10.5 10.5"], ["INTERVAL:", "0.7 0.7 0.7 0.7"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["20 45 70 95"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "Some of Rattletrap's contraptions don't quite work correctly, so detonating them proves useful as an offensive maneuver.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rattletrap_battery_assault.png", "description": "Discharges high-powered shrapnel at random nearby enemy units, dealing minor magical damage and ministun."},
'5238': {"cost": "", "name": "Power Cogs", "scepter_mods": [], "scepter": "", "notes": ["Cogs can shock invisible units."], "mana": "50 60 70 80", "cooldown": "15", "details": [["ATTACKS REQUIRED:", "2"], ["DURATION:", "5.0 6.0 7.0 8.0"], ["MANA/HEALTH DRAIN:", "80 120 160 200"], ["CAST POINT:", ["0.2"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "One of Clockwerk's inventions of which he is most proud is the power cog - though it is sometimes despised by his allies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rattletrap_power_cogs.png", "description": "Forms a barrier of energized cogs around Clockwerk, trapping any units that are near. Enemies outside the trap that touch a cog are knocked back, losing health and mana. Once a cog has delivered a shock, it will power down. Cogs can be destroyed by enemy attacks, but Clockwerk can destroy them with just one."},
'5239': {"cost": "", "name": "Rocket Flare", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 50 50 50", "cooldown": "20.0 18.0 16.0 14.0", "details": [["RADIUS:", "600"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["80 120 160 200"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "What started as a festive display has become a useful scouting and bombardment tool.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rattletrap_rocket_flare.png", "description": "Fires a global range flare that explodes over a given area, damaging enemies and providing vision for 10 seconds."},
'5240': {"cost": "", "name": "Hookshot", "scepter_mods": [["SCEPTER COOLDOWN:", "12.0 12.0 12.0"]], "scepter": "Decreases cooldown.", "notes": ["Hookshot will latch and take Clockwerk to allies, but not damage or disable them.", "Hookshot's pull and stun pierce magic immunity. The damage does not."], "mana": "150 150 150", "cooldown": "70.0 55.0 40.0", "details": [["DAMAGE:", "75 175 275"], ["RANGE:", "2000 2500 3000"], ["STUN DURATION:", "1.0 1.5 2.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["2000 2500 3000"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "A somewhat unwieldy device, the Hookshot sends the otherwise clunky Clockwerk armor flying through the air.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rattletrap_hookshot.png", "description": "Fires a grappling device rapidly at the target location. If the hook hits a unit, Clockwerk launches himself into the target, stunning and dealing damage. Any enemies Clockwerk collides with along the way are damaged and stunned.<br><br>Upgradable by Aghanim's Scepter."},
'5241': {"cost": "", "name": "Split Earth", "scepter_mods": [], "scepter": "", "notes": ["There is a 0.35 second delay before the effect is applied.", "Split Earth will destroy trees in its area of effect."], "mana": "80 100 120 140", "cooldown": "9 9 9 9", "details": [["RADIUS:", "150 175 200 225"], ["STUN DELAY:", "0.35"], ["STUN DURATION:", "2"], ["DURATION:", ["2 2 2 2"]], ["CAST POINT:", ["0.7 0.7 0.7 0.7"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["120 180 240 300"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Twisting nature to his vile will, the shifting earth consumes those unlucky enough to cross Leshrac's path.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/leshrac_split_earth.png", "description": "Splits the earth under enemies. Deals damage and stuns for a short duration."},
'5242': {"cost": "", "name": "Diabolic Edict", "scepter_mods": [], "scepter": "", "notes": ["Damage is not reduced by damage block.", "The explosions will continue even if Leshrac is killed.", "Can damage buildings, Spell Immune units, and invisible units."], "mana": "95 120 135 155", "cooldown": "22 22 22 22", "details": [["RADIUS:", "500"], ["EXPLOSIONS:", "40"], ["DURATION:", ["10"]], ["CAST POINT:", ["0.5"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["9 18 27 36"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Chronoptic energy bursts from one plane to the other, evaporating anything it touches.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/leshrac_diabolic_edict.png", "description": "Saturates the area around Leshrac with magical explosions that deal physical damage to enemy units and structures. The fewer units available to attack, the more damage those units will take. Deals 40% more damage to towers. Lasts 10 seconds."},
'5243': {"cost": "", "name": "Lightning Storm", "scepter_mods": [["SCEPTER RADIUS:", "750"], ["SCEPTER INTERVAL:", "1.75"]], "scepter": "While Pulse Nova is active, Lightning Storm will hit one random unit in a radius every 1.75 seconds.", "notes": [], "mana": "75 90 105 120", "cooldown": "4", "details": [["SLOW DURATION:", "0.7 0.8 0.9 1.0"], ["LIGHTNING JUMP RADIUS:", "475"], ["LIGHTNING STRIKES:", "4 6 8 10"], ["%MOVEMENT SLOW:", "-75"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["50 100 150 200"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Tormented Soul's mastery of the elements is evident in the massive storms that strike down armies before him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/leshrac_lightning_storm.png", "description": "Summons a lightning storm that blasts the target enemy unit, then strikes any nearby enemy units. Struck enemies are slowed.<br><br>Upgradable by Aghanim's Scepter."},
'5244': {"cost": "", "name": "Pulse Nova", "scepter_mods": [], "scepter": "", "notes": [], "mana": "70 90 110", "cooldown": "1.0 1.0 1.0 1.0", "details": [["MANA/SEC:", "20 40 60"], ["RADIUS:", "450"], ["DAMAGE:", "100 140 180"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["No Target", "Toggle", "Doesnt Cancel Channeling"]]], "lore": "If necessary, the Tormented Soul can manipulate space time itself, ravaging lesser beings.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/leshrac_pulse_nova.png", "description": "Creates waves of damaging energy around Leshrac, one per second, to damage nearby enemy units."},
'5245': {"cost": "", "name": "Sprout", "scepter_mods": [], "scepter": "", "notes": ["Sprout can be cast on any unit, or the ground.", "Trees created by Sprout have the same interactions with abilities as regular trees."], "mana": "70 90 110 130", "cooldown": "11 10 9 8", "details": [["CAST RANGE:", "625 700 775 850"], ["DURATION:", "3 4 5 6"], ["CAST POINT:", ["0.35"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["625 700 775 850"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "Verdant overgrowth is a common ailment reported by Nature's Prophet's attackers.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/furion_sprout.png", "description": "Sprouts a ring of trees around a unit, trapping it in place."},
'5246': {"cost": "", "name": "Teleportation", "scepter_mods": [], "scepter": "", "notes": ["Teleport takes 3 seconds to cast.", "Mana and cooldown take effect when the cast is completed. Nature's Prophet will not use any mana or waste the cooldown if the spell is interrupted while casting.", "When the cast begins, an effect is created at the target location, which is visible to allies and enemies."], "mana": "50 50 50 50", "cooldown": "50 40 30 20", "details": [["CAST POINT:", ["3 3 3 3"]], ["DISPELLABLE:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Other (Normal When Stolen)", "Disabled By Root"]]], "lore": "The Prophet keeps his sentinel over the forest, protecting it when in need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/furion_teleportation.png", "description": "Teleports to any point on the map."},
'5247': {"cost": "", "name": "Nature's Call", "scepter_mods": [], "scepter": "", "notes": ["Nature's Call can only create as many treants as there are trees in the target area."], "mana": "130 140 150 160", "cooldown": "37 37 37 37", "details": [["TREANT COUNT:", "2 3 4 5"], ["TREANT DURATION:", "60 60 60 60"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Verodicia bestowed the Prophet with the ability to summon the Treant Guard, a mythical sentient army of the wild.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/furion_force_of_nature.png", "description": "Converts an area of trees into Treants. Treants have 550 health and deal 30-34 damage."},
'5248': {"cost": "", "name": "Wrath of Nature", "scepter_mods": [["SCEPTER DAMAGE:", "135 170 205"], ["SCEPTER TREANT SPAWN TIMER:", "4"]], "scepter": "Increases damage. If a unit is killed by Wrath of Nature, or within 4 seconds thereafter, a Nature's Call treant will spawn. These treants' health and damage are based on the current level of Nature's Call. If a hero is killed, a Greater Treant will be created, which has 3 times as much health and damage.", "notes": ["Wrath of Nature will not hit units out of vision.", "Can be cast through the minimap; the nearest valid target will be selected."], "mana": "175 225 275", "cooldown": "60", "details": [["%ADDED DAMAGE PER BOUNCE:", "11"], ["DAMAGE:", "110 140 170"], ["MAX TARGETS:", "16 16 16"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "Nature's Prophet calls Verodicia's fury to strike down those who might ravage the wilderness.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/furion_wrath_of_nature.png", "description": "Damaging energy bounces around the map, striking enemies close to the cast point that are in vision. Each enemy hit beyond the first adds damage.<br><br>Upgradable by Aghanim's Scepter."},
'5249': {"cost": "", "name": "Rage", "scepter_mods": [], "scepter": "", "notes": ["Upon casting, many buffs and debuffs will be removed."], "mana": "75 75 75 75", "cooldown": "16", "details": [["ATTACK SPEED BONUS:", "40 50 60 70"], ["DURATION:", "3.0 4.0 5.0 6.0"], ["DURATION:", ["3 4 5 6"]], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The madness and brutality of N'aix makes him a vicious and unrelenting foe in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_rage.png", "description": "Launch into a maddened rage, becoming Spell Immune, 100% resistant to magic damage, and gaining increased attack speed.<br><br>DISPEL TYPE: Basic Dispel"},
'5250': {"cost": "", "name": "Feast", "scepter_mods": [], "scepter": "", "notes": ["Stacks additively with other sources of Lifesteal.", "The heal is independent of the damage.", "Affects Spell Immune units.", "Does not affect Roshan."], "mana": "", "cooldown": "", "details": [["%LIFE STEAL:", "4.5 5.5 6.5 7.5"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "After escaping from his cell in Devarque, N'aix subsisted on flesh and bones of those unfortunate to cross his path.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_feast.png", "description": "Lifestealer's attacks damage enemies and heal himself for a percentage of his target's current health."},
'5251': {"cost": "", "name": "Open Wounds", "scepter_mods": [], "scepter": "", "notes": ["Stacks additively with other sources of Lifesteal.", "Open Wounds slows over 8 different steps: 70% / 70% / 60% / 50% / 30% / 10% / 10% / 10%, with the slow decreasing one step per second."], "mana": "140 130 120 110", "cooldown": "24 20 16 12", "details": [["CAST RANGE:", "200 300 400 500"], ["%LIFE STEAL:", "50"], ["%MAX SLOW:", "70"], ["DURATION:", "8"], ["DURATION:", ["8 8 8 8"]], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["200 300 400 500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Fresh wounds and the scent of blood often draw out the scavengers to finish the job.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_open_wounds.png", "description": "Lifestealer rends an enemy unit, slowing the victim's movement speed and allowing all allies to regain health for a percentage of the damage they deal to that unit. All damage dealt will steal life, including damage from spells. The victim recovers movement speed over the duration."},
'5252': {"cost": "", "name": "Infest", "scepter_mods": [], "scepter": "", "notes": ["Creeps that are controlled while Infested share Lifestealer's movement speed.", "Infest Level 2 and 3 can be used on Ancient creeps.", "If the infested unit dies before Lifestealer consumes it, no health is gained.", "Lifestealer gains experience while under the effects of Infest."], "mana": "50 50 50", "cooldown": "100 75 50", "details": [["DAMAGE RADIUS:", "700 700 700"], ["DAMAGE:", "150 275 400"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "With this infestation, N'aix consumes the life blood of the host, restoring him back to full unholy power.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_infest.png", "description": "Lifestealer infests the body of a target unit, becoming undetectable inside. He can then explode from the host body, dealing damage to nearby enemies. If the infested unit is an enemy creep or a neutral creep, he can take control of the unit's ability to move and attack, and when consumed the creep will heal Lifestealer's health equal to the creep's current health. Does not work on enemy heroes.<br><br>DISPEL TYPE: Basic Dispel"},
'5253': {"cost": "", "name": "Consume", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Other (Unrestricted)", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_consume.png", "description": "Lifestealer eats the host body from the inside out, exploding from within."},
'5255': {"cost": "", "name": "Vacuum", "scepter_mods": [], "scepter": "", "notes": ["Doesn't pull invulnerable units.", "Trees near the center of the vacuum will be destroyed.", "This ability interrupts channeling.", "Pulls units over 0.5 seconds before dealing damage."], "mana": "100 130 160 190", "cooldown": "32", "details": [["DAMAGE:", "40 80 120 160"], ["RADIUS:", "250 350 450 550"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Ish'Kafel modifies the center of gravity to a place of his choosing.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_seer_vacuum.png", "description": "Dark Seer creates a vacuum over the target area that sucks in enemy units, disrupting them and dealing damage."},
'5256': {"cost": "", "name": "Ion Shell", "scepter_mods": [], "scepter": "", "notes": ["Doesn't damage the target it is cast on.", "Deals small amounts of damage in 0.1 intervals.", "If cast on a unit that already has Ion Shell, the new Shell replaces the old one."], "mana": "100 110 120 130", "cooldown": "9", "details": [["DURATION:", "25"], ["RADIUS:", "250"], ["DAMAGE PER SECOND:", "30 50 70 90"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "The Dark Seer slices holes into the 'Land Behind the Wall,' causing prismatic energy to seep forth.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_seer_ion_shell.png", "description": "Surrounds the target unit with a bristling shield that damages enemy units in an area around it."},
'5257': {"cost": "", "name": "Surge", "scepter_mods": [], "scepter": "", "notes": ["Units with Surge cannot be slowed unless the Surge effect is removed."], "mana": "50", "cooldown": "13 12 11 10", "details": [["DURATION:", "3.0 4.5 6.0 7.5"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Ish'Kafel once used his speed of mind to navigate the maze between the walls.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_seer_surge.png", "description": "Charges a target friendly unit with power, giving it a brief burst of maximum movement speed."},
'5258': {"cost": "", "name": "Wall of Replica", "scepter_mods": [["%SCEPTER REPLICA DAMAGE:", "100 120 140"]], "scepter": "Increases the damage dealt by illusions.", "notes": ["Creates a wall 1000 units long, perpendicular to the line between Dark Seer and the target point.", "Doesn't create illusions from other illusions."], "mana": "125 250 375", "cooldown": "100.0 100.0 100.0", "details": [["WALL DURATION:", "45.0"], ["%REPLICA DAMAGE:", "60 75 90"], ["SLOW DURATION:", "0.5 0.75 1.0"], ["%MOVEMENT SLOW:", "75"], ["CAST RANGE:", "500 900 1300"], ["%REPLICA DAMAGE TAKEN:", "400 400 400"], ["CAST POINT:", ["0.4 0.4 0.4"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500 900 1300"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "The Dark Seer, while unable to return to his natural realm, can channel part of the prismatic wall with powerful strength of mind, sowing confusion amongst enemy ranks.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_seer_wall_of_replica.png", "description": "Raises a wall of warping light that slows and creates replicas of any enemy hero who crosses it. Enemy replicas serve at the Dark Seer's will. Replicas last until they are destroyed, or until the wall's duration ends.<br><br>Upgradable by Aghanim's Scepter."},
'5259': {"cost": "", "name": "Strafe", "scepter_mods": [], "scepter": "", "notes": ["Can dodge ranged attacks or spells.", "Strafe ends if Clinkz loses the 3 dodge stacks."], "mana": "90 90 90 90", "cooldown": "45 35 25 15", "details": [["DURATION:", "3.0"], ["BONUS ATTACK SPEED:", "80 140 200 260"], ["DODGE STACKS:", "4"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "It's hard to say whether the blur around the Bone Fletcher is from his flaming heart or his speed with the quiver.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/clinkz_strafe.png", "description": "Clinkz nimbly attacks with a barrage of arrows. Dramatically increases attack speed for a short time and grants Clinkz the ability to automatically dodge up to 4 projectiles."},
'5260': {"cost": "", "name": "Searing Arrows", "scepter_mods": [], "scepter": "", "notes": ["The damage is directly added to Clinkz' attack damage, as physical damage.", "Searing Arrows deal damage to structures."], "mana": "10", "cooldown": "0.0 0.0 0.0 0.0", "details": [["BONUS DAMAGE:", "30 40 50 60"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["640"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "Clinkz simply lights his arrows from his flaming essence for quite the destructive effect.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/clinkz_searing_arrows.png", "description": "Imbues Clinkz's arrows with fire for extra damage."},
'5261': {"cost": "", "name": "Skeleton Walk", "scepter_mods": [], "scepter": "", "notes": ["Will not break most channeling of spells or items upon activation.", "Has a fadetime of 0.6 seconds."], "mana": "75 75 75 75", "cooldown": "20 19 18 17", "details": [["DURATION:", "20.0 25.0 30.0 35.0"], ["%BONUS MOVEMENT SPEED:", "15 25 35 45"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "With a burst of fire and puff of smoke, the Bone Fletcher was nowhere to be seen.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/clinkz_wind_walk.png", "description": "Clinkz moves invisibly through units until the moment he attacks or uses an ability."},
'5262': {"cost": "", "name": "Death Pact", "scepter_mods": [], "scepter": "", "notes": ["When the duration ends, max HP returns to normal, but current HP stays the same.", "If the target is an enemy, Clinkz will gain the correct experience and gold.", "Increases Clinkz' current and max HP."], "mana": "100 100 100", "cooldown": "85", "details": [["%DAMAGE GAIN:", "4.0 6.0 8.0"], ["%HEALTH GAIN:", "40 60 80"], ["DURATION:", "65"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Creep"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Sutherex' bond of life and death has become a part of Clinkz, and his old bones are refreshed with repetition of the pact on lesser beings.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/clinkz_death_pact.png", "description": "Clinkz consumes the target friendly or enemy creep, gaining a percent of its hitpoints as max health and damage."},
'5263': {"cost": "", "name": "Purification", "scepter_mods": [], "scepter": "", "notes": [], "mana": "85 100 115 130", "cooldown": "11", "details": [["HEAL/DAMAGE:", "90 160 230 300"], ["DAMAGE RADIUS:", "260"], ["CAST POINT:", ["0.2"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "Priests of the Omniscience are adept at removing impurities from fellow warriors.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/omniknight_purification.png", "description": "Instantly heals a friendly unit and damages all nearby enemy units."},
'5264': {"cost": "", "name": "Repel", "scepter_mods": [], "scepter": "", "notes": ["Repel acts the same as other sources of spell immunity, and cannot be purged."], "mana": "50 50 50 50", "cooldown": "30 26 22 18", "details": [["DURATION:", "4 5 6 7"], ["CAST POINT:", ["0.35"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "When faced with the pit of sacrifice, Purist's resilience to magic was tested and affirmed.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/omniknight_repel.png", "description": "Creates a divine barrier around an ally which grants them Spell Immunity and 100% resistance to Magic Damage.<br><br>DISPEL TYPE: Basic Dispel"},
'5265': {"cost": "", "name": "Degen Aura", "scepter_mods": [], "scepter": "", "notes": ["Does not affect Spell Immune units."], "mana": "", "cooldown": "", "details": [["%MOVEMENT SLOW:", "-10 -18 -26 -34"], ["ATTACK SLOW:", "-10 -18 -26 -34"], ["RADIUS:", "300"], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["275"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "The holy embodiment of Purist Thunderwrath is enough to weaken those of lesser faith.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/omniknight_degen_aura.png", "description": "Greatly degenerates the movement and attack capabilities of enemy units that stray too near."},
'5266': {"cost": "", "name": "Guardian Angel", "scepter_mods": [["SCEPTER DURATION:", "8.0 9.0 10.0"]], "scepter": "Increases duration, radius becomes global and affects buildings.", "notes": ["Affects allies with spell immunity.", "Can be purged."], "mana": "125 175 250", "cooldown": "180 170 160", "details": [["RADIUS:", "600"], ["DURATION:", "6.0 7.0 8.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The All Seeing One casts down his protection over those that Purist calls friend.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/omniknight_guardian_angel.png", "description": "Omniknight summons a Guardian Angel that grants immunity from physical damage.<br><br>Upgradable by Aghanim's Scepter"},
'5267': {"cost": "", "name": "Untouchable", "scepter_mods": [], "scepter": "", "notes": ["All units who directly attack Enchantress will get slowed.", "The slow is applied on the attacking unit when the attack starts, not when damage is applied."], "mana": "", "cooldown": "", "details": [["ATTACK SLOW:", "-40 -70 -100 -130"], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "After attacking Aiushtha, most opponents are overwhelmed with guilt having attacked such a natural beauty.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enchantress_untouchable.png", "description": "Enchantress beguiles her enemies, slowing their attacks when she is attacked."},
'5268': {"cost": "", "name": "Enchant", "scepter_mods": [], "scepter": "", "notes": ["Illusions can be converted."], "mana": "65 65 65 65", "cooldown": "30.0 24.0 18.0 12.0", "details": [["CREEP ENCHANT DURATION:", "80.0"], ["HERO SLOW DURATION:", "2.25 3.5 4.75 6"], ["%HERO MOVE SLOW:", "-55"], ["DURATION:", ["2.25 3.5 4.75 6"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A true steward of the forest, Aiushtha befriends all within it - from lowly trolls to powerful centaurs.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enchantress_enchant.png", "description": "Enchantress charms an enemy. If the enemy is a hero, they are slowed. If the enemy is a creep, she brings it under her control. If cast on a creep already under her control, she refreshes its enchant duration.<br><br>DISPEL TYPE: Basic Dispel"},
'5269': {"cost": "", "name": "Nature's Attendants", "scepter_mods": [], "scepter": "", "notes": ["Units with full HP will not be selected for the heal.", "Can heal units with spell immunity."], "mana": "140", "cooldown": "45.0 45.0 45.0 45.0", "details": [["HEAL PER SECOND:", "10.0 10.0 10.0 10.0"], ["WISPS:", "4 6 8 10"], ["RADIUS:", "275 275 275 275"], ["DURATION:", ["11"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Whimsical spirits of the woods possess a healing power that is quite subtle, but gains strength in numbers.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enchantress_natures_attendants.png", "description": "A cloud of wisps heals Enchantress and any friendly units nearby. Lasts 11 seconds."},
'5270': {"cost": "", "name": "Impetus", "scepter_mods": [["SCEPTER BONUS RANGE:", "190 190 190"]], "scepter": "Increases attack range, and cast range of Impetus.", "notes": ["Distance to target is measured when the projectile hits.", "The damage is capped at 1750 distance."], "mana": "55 60 65", "cooldown": "0.0 0.0 0.0", "details": [["%DISTANCE DAMAGE:", "14.0 18.0 22.0"], ["DURATION:", ["1.5 1.5 1.5"]], ["CAST POINT:", ["0.0 0.0 0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "While Aiushtha favors peaceful means, she is capable of a magical onslaught from a distance, her spears gaining energy from the natural life around her.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enchantress_impetus.png", "description": "Places an enchantment on each attack while activated, causing it to deal additional damage based on how far away the target is. The farther the target, the greater the damage dealt.<br><br>Upgradable by Aghanim's Scepter."},
'5271': {"cost": "", "name": "Inner Vitality", "scepter_mods": [], "scepter": "", "notes": ["Can be cast on Spell Immune units.", "The HP percentage is checked every second and the regeneration adjusted accordingly."], "mana": "170 170 170 170", "cooldown": "22 18 14 10", "details": [["%BONUS FROM ATTRIBUTE:", "6 8 10 12"], ["HEALTH REGEN:", "10"], ["%BONUS WHEN HURT:", "22 30 38 46"], ["DURATION:", ["16 16 16 16"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "While Huskar has little use for magic, this minor enchantment was learned from the Dazzle and the Dezun priests, to be used in times of great injury.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/huskar_inner_vitality.png", "description": "Unlocks the regenerative power of a friendly unit, with healing based upon its primary attribute. If the target is below 35%%, it will heal faster. Lasts 16 seconds."},
'5272': {"cost": "", "name": "Burning Spear", "scepter_mods": [], "scepter": "", "notes": ["Burning Spear stacks additively when used multiple times on one target. There is no cap.", "Huskar cannot kill himself with this skill."], "mana": "0 0 0 0", "cooldown": "0.0 0.0 0.0 0.0", "details": [["BURN DAMAGE:", "5 10 15 20"], ["HEALTH COST:", "15"], ["DURATION:", ["8"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["450"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "The Sacred Warrior ignites his weaponry after marking it with his own blood - causing far greater pain than he himself feels.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/huskar_burning_spear.png", "description": "Huskar sets his spears aflame, dealing damage over time with his regular attack. Multiple attacks will stack additional damage. Each attack drains some of Huskar's health. Lasts 8 seconds."},
'5273': {"cost": "", "name": "Berserker's Blood", "scepter_mods": [], "scepter": "", "notes": ["Bonuses are provided linearly, no bonus at 100% HP and full bonus at 10% HP.", "Maximum bonus is achieved when Huskar has strictly less than 10% of his maximum HP."], "mana": "", "cooldown": "", "details": [["MAX ATTACK SPEED:", "220 260 300 340"], ["%HP FOR MAX BONUS:", "10"], ["%MAX MAGIC RESISTANCE:", "20 30 40 50"], ["BEHAVIOR:", ["Passive"]]], "lore": "After losing his birthright, Huskar gained a lethality in physical combat that is only heightened as his own blood is spilled.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/huskar_berserkers_blood.png", "description": "Huskar's injuries feed his power, giving increased attack speed and magic damage resistance based on missing health."},
'5274': {"cost": "", "name": "Life Break", "scepter_mods": [["%SCEPTER DAMAGE DEALT:", "65"], ["SCEPTER COOLDOWN:", "4"]], "scepter": "Increases damage dealt, reduces cooldown.", "notes": ["Life Break cannot be disjointed.", "If Huskar is disabled during the charge or the target moves more than 1400 units in 0.015 seconds, the charge stops.", "Slow works on Spell Immune units."], "mana": "0 0 0", "cooldown": "12", "details": [["%MOVEMENT SLOW:", "-40 -50 -60"], ["%DAMAGE DEALT:", "34 38 42"], ["%DAMAGE TAKEN:", "34 38 42"], ["SLOW DURATION:", "4 5 6"], ["DURATION:", ["4 5 6"]], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "No matter the danger, Huskar thrusts himself into melees that only he can survive.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/huskar_life_break.png", "description": "Huskar draws upon his health to break an enemy's life, leaping at a target within attack range to shatter a percentage of that hero's current health, and slowing them. While leaping, Huskar is Spell Immune.<br><br>DISPEL TYPE: Basic Dispel<br><br>Upgradable by Aghanim's Scepter."},
'5275': {"cost": "", "name": "Void", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80 90 100 110", "cooldown": "8 8 8 8", "details": [["DAY DURATION:", "1.25"], ["NIGHT DURATION:", "2.5 3 3.5 4"], ["%MOVE SLOW:", "-50 -50 -50 -50"], ["ATTACK SLOW:", "-50 -50 -50 -50"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["90 160 255 335"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["525"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Balanar creates a vortex of infinite night, tearing opponents violently into the eternal darkness that once was.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/night_stalker_void.png", "description": "Creates a damaging void that slows an enemy unit and deals damage. Void also mini-stuns, interrupting channeling abilities. The slowing effect lasts longer at night."},
'5276': {"cost": "", "name": "Crippling Fear", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "12 12 12 12", "details": [["%NIGHT CHANCE TO MISS:", "50"], ["NIGHT DURATION:", "5.0 6.0 7.0 8.0"], ["DAY DURATION:", "3.0 3.0 3.0 3.0"], ["%DAY CHANCE TO MISS:", "10 10 10 10"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A vision of the twisted maw of Balanar etches itself into the minds of the poor souls unlucky enough to cross his path.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/night_stalker_crippling_fear.png", "description": "Night Stalker horrifies the target enemy Hero, causing it to miss attacks and become silenced. The effect lasts longer at night."},
'5277': {"cost": "", "name": "Hunter in the Night", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80", "cooldown": "30 26 22 18", "details": [["ATTACK SPEED:", "30 50 70 90"], ["%MOVE SPEED:", "20 25 30 35"], ["BEHAVIOR:", ["Passive"]]], "lore": "The hunting prowess of Balanar improves as the night beckons.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/night_stalker_hunter_in_the_night.png", "description": "Night Stalker is in his element at night, attacking and moving with great swiftness. Can be activated during night to grant Night Stalker flying movement for 2 seconds."},
'5278': {"cost": "", "name": "Darkness", "scepter_mods": [], "scepter": "Grants unobstructed vision in the night. The improved vision does not depend on using Darkness.", "notes": [], "mana": "0 0 0", "cooldown": "160 120 80", "details": [["ENEMY VISION RANGE:", "675"], ["BUILDING AND WARD VISION RANGE:", "800"], ["DURATION:", "40.0"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "It is a humbling sight to see when the mightiest of warriors become afraid of the dark.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/night_stalker_darkness.png", "description": "Night Stalker smothers the sun and summons instant darkness, so that he might use his powers at their fullest. While Darkness is in effect, enemy heroes, units, wards, and buildings have their vision range reduced. <br><br>Upgradable by Aghanim's Scepter."},
'5279': {"cost": "", "name": "Spawn Spiderlings", "scepter_mods": [], "scepter": "", "notes": ["Units killed by Spiderlings will then give birth to Spiderites, smaller and less powerful versions of the Spiderlings.", "If the target is killed within 2 seconds of being hit with this skill, the Spiderlings will spawn."], "mana": "120 120 120 120", "cooldown": "10.0 10.0 10.0 10.0", "details": [["COUNT:", "1 2 3 4"], ["LIFETIME:", "60.0 60.0 60.0 60.0"], ["DAMAGE:", "70 140 210 280"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Black Arachnia continues to raise her young, even amidst the field of combat. The brood quickly learns how to support their mother.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_spawn_spiderlings.png", "description": "Broodmother injects her young into an enemy unit, dealing damage. The spiderlings will hatch if the target is killed while under this influence."},
'5280': {"cost": "", "name": "Spin Web", "scepter_mods": [], "scepter": "", "notes": ["If free movement is disabled, you will destroy nearby trees.", "Also affects Spiderling and Spiderites."], "mana": "50", "cooldown": "0.0", "details": [["CHARGE RESTORE TIME:", "40.0"], ["MAX WEB CHARGES:", "2 4 6 8"], ["MAX WEBS:", "2 4 6 8"], ["HEALTH REGEN:", "3 5 7 9"], ["%MOVE INCREASE:", "40 50 60 70"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Weaving a bed of silken fibers, Arachnia's web both protects her and her offspring, as well as giving advancing opponents a sense of forboding.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_spin_web.png", "description": "Spins a large web that grants Broodmother a passive movement speed increase, gives free movement, and boosts regeneration while in its vicinity. Spin Web charges restore every 40.0 seconds. Spin Web can be cast from anywhere as long as the new web touches an existing web. Webs never expire, and can be manually destroyed. When the maximum limit of webs is exceeded, the oldest web disappears."},
'5281': {"cost": "", "name": "Incapacitating Bite", "scepter_mods": [], "scepter": "", "notes": ["The miss chance stacks with evasion and terrain dodge chance."], "mana": "", "cooldown": "", "details": [["DURATION:", "2.0 2.0 2.0 2.0"], ["%MOVE SLOW:", "-16 -26 -36 -46"], ["%MISS CHANCE:", "30 40 50 60"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Paralytic toxins come from Black Arachnia's fangs, causing a slow and painful death to those who intrude on her webs.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_incapacitating_bite.png", "description": "Broodmother's venom cripples enemy units, causing her attacks to slow and giving the affected unit a chance to miss its attacks."},
'5282': {"cost": "", "name": "Insatiable Hunger", "scepter_mods": [], "scepter": "", "notes": ["Fully stacks with other sources of lifesteal."], "mana": "100 100 100", "cooldown": "45.0 45.0 45.0", "details": [["DURATION:", "14.0 14.0 14.0"], ["%LIFESTEAL:", "60 100 140"], ["BONUS DAMAGE:", "60 100 140"], ["CAST POINT:", ["0.2 0.2 0.2"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "While most of her prey is wrapped in silken cocoons and saved for her young, the Broodmother herself has a taste for wandering heroes.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_insatiable_hunger.png", "description": "A violent lust for vital fluids increases Broodmother's attack damage and gives her a vampiric attack."},
'5283': {"cost": "", "name": "Spawn Spiderite", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DEBUFF DURATION:", "2.0"], ["LIFETIME:", "60.0"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_spawn_spiderite.png", "description": "Applies debuff on attack. If debuffed unit dies, a spiderite will spawn."},
'5284': {"cost": "", "name": "Poison Sting", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%MOVE SLOW:", "-8"], ["DURATION (CREEP):", "6.0"], ["DAMAGE PER SECOND:", "8"], ["DURATION (HERO):", "2.0"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_poison_sting.png", "description": "Poisons and slows enemies with each attack."},
'5285': {"cost": "", "name": "Shuriken Toss", "scepter_mods": [], "scepter": "Allows Shuriken Toss to bounce twice on each hero.", "notes": ["This spell interrupts channeling abilities."], "mana": "120 130 140 150", "cooldown": "10", "details": [["DAMAGE:", "150 225 300 375"], ["TRACK BOUNCE RANGE:", "1200"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "While the shuriken may be small, Gondar's precise aim can cause critical damage.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bounty_hunter_shuriken_toss.png", "description": "Hurls a deadly shuriken at an enemy unit, dealing damage and mini-stunning the target. The shuriken will bounce between any Tracked units who are within a 1200 radius of each other.<br><br>Upgradable by Aghanim's Scepter."},
'5286': {"cost": "", "name": "Jinada", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "12.0 10.0 8.0 6.0", "details": [["%CRITICAL DAMAGE:", "150 175 200 225"], ["ATTACK SLOW:", "-15 -20 -25 -30"], ["DURATION:", "3.0 3.0 3.0 3.0"], ["%MOVE SLOW:", "-15 -20 -25 -30"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Whispering an enchantment he learned from Soruq to his faithful blades, Gondar targets vital tendons and joints to disable his opponents.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bounty_hunter_jinada.png", "description": "Bounty Hunter plans his next hit, passively adding a critical strike and maim to his next attack."},
'5287': {"cost": "", "name": "Shadow Walk", "scepter_mods": [], "scepter": "", "notes": ["The bonus damage is a separate instance, and isn't considered in Jinada's calculation.", "Will not break most channeling of spells upon activation."], "mana": "65", "cooldown": "15.0 15.0 15.0 15.0", "details": [["FADE TIME:", "1.0 0.75 0.5 0.25"], ["BONUS DAMAGE:", "30 60 90 120"], ["DURATION:", "20.0 25.0 30.0 35.0"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "The court jesters present during King Goff's assassination can recount no other image than a dancing shadow.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bounty_hunter_wind_walk.png", "description": "Bounty Hunter becomes invisible and gains the ability to move through other units until he attacks or uses an ability. If he breaks the invisibility with an attack, that attack will deal bonus damage."},
'5288': {"cost": "", "name": "Track", "scepter_mods": [], "scepter": "", "notes": ["Bounty Hunter will get the bonus gold if the target dies while Track is active, regardless of how it died.", "Bonus gold is reliable gold.", "The allies that are receiving the bonus speed from Track are the ones that will receive the bonus gold.", "Track's effect is only visible to allies."], "mana": "65", "cooldown": "4", "details": [["CAST RANGE:", "1200"], ["%BONUS SPEED:", "16 18 20"], ["DURATION:", "30.0 30.0 30.0"], ["BONUS GOLD FOR ALLIES:", "40 80 120"], ["BONUS GOLD FOR SELF:", "150 250 350"], ["SPEED RADIUS:", "900 900 900"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Using his elevated senses of sight and smell, Gondar's hits have quite a good chance of success.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bounty_hunter_track.png", "description": "Tracks an enemy hero, granting True Sight of the target, and information on how much gold it is carrying. Allies near the hunted are granted bonus movement speed. If the target dies, Bounty Hunter and nearby heroes collect a bonus bounty of gold."},
'5289': {"cost": "", "name": "The Swarm", "scepter_mods": [], "scepter": "", "notes": ["Beetles provide 321/321 sight, but will drop off their target if it becomes invisible.", "When a beetle latches on a target, it will remain there until it is killed or the duration expires.", "Beetles are Spell Immune, but can be killed in 4 attacks from a hero, or 8 from other units."], "mana": "70 80 90 100", "cooldown": "35 30 25 20", "details": [["ATTACKS TO DESTROY:", "8 8 8 8"], ["ARMOR REDUCTION:", "1 1 1 1"], ["ATTACK DAMAGE:", "14 16 18 20"], ["COUNT:", "12 12 12 12"], ["ATTACK FREQUENCY:", "1.25 1.1 0.95 0.8"], ["DURATION:", "16"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["3000"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "Skitskurr opens a gap in the space time fabric, allowing young Weavers to slip through and aid him in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/weaver_the_swarm.png", "description": "Weaver launches a swarm of 12 young Weavers that latch on any enemy unit in their path, attacking and reducing armor until it is killed."},
'5290': {"cost": "", "name": "Shukuchi", "scepter_mods": [], "scepter": "", "notes": ["Can only damage the same unit once per cast."], "mana": "60 60 60 60", "cooldown": "12.0 10.0 8.0 6.0", "details": [["DURATION:", "4.0 4.0 4.0 4.0"], ["RADIUS:", "175 175 175 175"], ["DAMAGE:", "75 100 125 150"], ["FADE TIME:", "0.25 0.25 0.25 0.25"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "As the Weavers worked in the fabric of creation, small wormholes allowed them to slip through time to better work their craft.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/weaver_shukuchi.png", "description": "Weaver shifts out of visibility, gaining the ability to move at maximum speed through physical units--doing harm to any enemies it passes through."},
'5291': {"cost": "", "name": "Geminate Attack", "scepter_mods": [], "scepter": "", "notes": ["The second attack leaves Weaver 0.25 seconds after the first, and has no range limit."], "mana": "", "cooldown": "7.0 6.0 5.0 3.0", "details": [["GEMINATE ATTACK COUNT:", "1"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Skitskurr's relationship with time is somewhat variable, causing his actions to be witnessed - and felt - more than once.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/weaver_geminate_attack.png", "description": "Allows Weaver to dispatch two attacks at once."},
'5292': {"cost": "", "name": "Time Lapse", "scepter_mods": [["SCEPTER COOLDOWN:", "16"], ["SCEPTER ALLY CAST RANGE:", "1000"]], "scepter": "Reduces cooldown, and allows Weaver to cast Time Lapse on an ally.", "notes": ["Time Lapse disjoints projectiles.", "Removes most negative buffs from Weaver."], "mana": "150 75 0", "cooldown": "60 50 40", "details": [["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Casting Stops Attack", "Other (Ignore Backswing)"]]], "lore": "If Skitskurr does not deem the current reality of the world to fit his desires, he simply crawls back in time to right what was wronged.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/weaver_time_lapse.png", "description": "Weaver warps backward to whatever position it was in five seconds earlier--regaining the HP and mana from that time. No effect on cooldown, gold or experience.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Strong Dispel"},
'5293': {"cost": "", "name": "Speed Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%MOVE SPEED:", "12"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/kobold_taskmaster_speed_aura.png", "description": "The Kobold Foreman's cruel efficiency increases his movement speed and the movement speed of all nearby allies."},
'5294': {"cost": "", "name": "Swiftness Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ATTACK SPEED:", "15"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_khan_endurance_aura.png", "description": "The fearsome Hellbear Smasher attacks more quickly and bullies nearby allies into following suit."},
'5295': {"cost": "", "name": "War Stomp", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "20.0", "details": [["RADIUS:", "250"], ["HERO STUN:", "2.0"], ["STUN DURATION:", "3.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["25"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_khan_war_stomp.png", "description": "The Centaur Conqueror's powerful hooves stomp the ground, stunning and damaging nearby enemies. Heroes recover more quickly."},
'5296': {"cost": "", "name": "Envenomed Weapon", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["HERO DURATION:", "10.0"], ["DAMAGE PER SECOND:", "2"], ["DURATION:", "20.0"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/gnoll_assassin_envenomed_weapon.png", "description": "The Vhoul Assassin has soaked his weapons in his own blend of painful predator venoms. Heroes recover from the poison more quickly."},
'5297': {"cost": "", "name": "Dual Breath", "scepter_mods": [], "scepter": "", "notes": ["Can hit units up to 1025 range away.", "Has a 0.3 second interval between each breath."], "mana": "135 140 155 170", "cooldown": "10.0 10.0 10.0 10.0", "details": [["START RADIUS:", "225"], ["DURATION:", "5"], ["%MOVE SLOW:", "-28 -32 -36 -40"], ["ATTACK SLOW:", "-28 -32 -36 -40"], ["END RADIUS:", "275"], ["BURN DAMAGE:", "20 40 60 80"], ["DURATION:", ["5.0"]], ["CAST POINT:", ["0.55"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Point Target", "Targets Units"]]], "lore": "Pyrexae dragons have tremendously dangerous breath for each branch of the species; combining them is unimaginable.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/jakiro_dual_breath.png", "description": "An icy blast followed by a wave of fire launches out in a path in front of Jakiro. The ice slows enemies, while the fire delivers damage over time."},
'5298': {"cost": "", "name": "Ice Path", "scepter_mods": [], "scepter": "", "notes": ["It takes 0.5 seconds for the path to reach its full extent."], "mana": "90", "cooldown": "12.0 11.0 10.0 9.0", "details": [["DAMAGE:", "50"], ["RADIUS:", "150"], ["FORMATION DELAY:", "0.5"], ["DURATION:", "1 1.5 2.0 2.5"], ["CAST POINT:", ["0.65"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["0"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Jakiro's cunning right head calls upon its frozen heritage, glazing the earth with blistering cold.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/jakiro_ice_path.png", "description": "Creates a path of ice that stuns and damages enemies that touch it."},
'5299': {"cost": "", "name": "Liquid Fire", "scepter_mods": [], "scepter": "", "notes": ["Works on both units and buildings."], "mana": "", "cooldown": "20 15 10 4", "details": [["DURATION:", "5 5 5 5"], ["RADIUS:", "300"], ["ATTACK SLOW:", "-30 -40 -50 -60"], ["BURN DAMAGE:", "12 16 20 24"], ["DURATION:", ["5.0 5.0 5.0 5.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "The left maw of Jakiro opens, laying waste to any in its path.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/jakiro_liquid_fire.png", "description": "Jakiro burns his enemies in an area of effect with fire added to his attack, while slowing their attacks."},
'53': {"cost": "3000", "name": "Reaver", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "25 Strength"], ["BEHAVIOR:", ["Passive"]]], "lore": "A massive axe capable of tearing whole mountains down.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/reaver.png", "description": ""},
'5300': {"cost": "", "name": "Macropyre", "scepter_mods": [["SCEPTER FLAME LENGTH:", "1800"], ["SCEPTER DAMAGE PER SECOND:", "125 175 225"], ["SCEPTER DURATION:", "30"]], "scepter": "Increases flame length, duration, and damage.", "notes": ["Macropyre destroys trees in its path."], "mana": "220 330 440", "cooldown": "60 60 60", "details": [["DURATION:", "10"], ["FLAME LENGTH:", "1400"], ["FLAME WIDTH:", "260"], ["DAMAGE PER SECOND:", "100 140 180"], ["CAST POINT:", ["0.55"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1400"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Ice and fire combine to rip the battlefield to shreds with extreme temperatures.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/jakiro_macropyre.png", "description": "Jakiro exhales a wide line of lasting flames, which deals damage per second to any enemy units caught in the fire.<br><br>Upgradable by Aghanim's Scepter."},
'5301': {"cost": "", "name": "Frost Attack", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DURATION:", "1.5"], ["%MOVE SLOW:", "-20"], ["ATTACK SLOW:", "-20"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ghost_frost_attack.png", "description": "The Ghost launches an eerie attack that chills her enemies to their bones."},
'5302': {"cost": "", "name": "Thunder Clap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "12.0", "details": [["DURATION:", "3.0"], ["%MOVE SLOW:", "-25"], ["RADIUS:", "300"], ["ATTACK SLOW:", "-25"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["150"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/polar_furbolg_ursa_warrior_thunder_clap.png", "description": "The Hellbear Smasher claps his massive hands together, creating a deafening blast. The blast damages nearby enemies and throws them off their footing."},
'5303': {"cost": "", "name": "Spell Immunity", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/neutral_spell_immunity.png", "description": "This creature does not feel the effects of most magical spells."},
'5304': {"cost": "", "name": "Ice Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "40", "cooldown": "5.0", "details": [["%MOVE SLOW:", "-30"], ["ARMOR BONUS:", "8"], ["ATTACK SLOW:", "-20"], ["SLOW DURATION:", "5.0"], ["DURATION:", "45.0"], ["CAST POINT:", ["0.56"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_frost_armor.png", "description": "The Ogre Frostmage summons an invisible layer of icy air that surrounds the target friendly unit, increasing its armor and temporarily slowing any melee enemies that dare attack it."},
'5305': {"cost": "", "name": "Ensnare", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "20.0", "details": [["DURATION:", "1.75"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_troll_warlord_ensnare.png", "description": "The Dark Troll Summoner tosses netting around an enemy's feet, briefly immobilizing the unit, though the unit can still attack and use abilities. Interrupts channeling abilities."},
'5306': {"cost": "", "name": "Raise Dead", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "25.0", "details": [["DURATION:", "40.0"], ["CAST POINT:", ["0.3"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/dark_troll_warlord_raise_dead.png", "description": "The Dark Troll Summoner stirs the ground underfoot, raising the remains of trolls long dead, bringing to life two skeleton Warriors who will fight at his side."},
'5307': {"cost": "", "name": "Critical Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CHANCE:", "20"], ["%CRITICAL DAMAGE:", "200"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/giant_wolf_critical_strike.png", "description": "The Giant Wolf's ferocious attacks occasionally tear a vital tendon, inflicting critical damage."},
'5308': {"cost": "", "name": "Critical Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CRITICAL CHANCE:", "20"], ["%CRITICAL DAMAGE:", "200"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alpha_wolf_critical_strike.png", "description": "The cruel Alpha Wolf attacks his enemy's unprotected vitals at every opportunity, inflicting critical damage."},
'5309': {"cost": "", "name": "Packleader's Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%BONUS DAMAGE:", "30"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alpha_wolf_command_aura.png", "description": "The Alpha Wolf's ruthless attacks do extra damage. His commanding presence inspires nearby allies to attack ruthlessly as well."},
'5310': {"cost": "", "name": "Tempest", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "600"], ["NEAR UNIT RADIUS:", "150"], ["NEAR DAMAGE:", "45"], ["%MOVE SLOW:", "-15"], ["ATTACK SLOW:", "-15"], ["FAR DAMAGE:", "15"], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tornado_tempest.png", "description": "The Tornado's overpowering winds slow all nearby enemies, flinging debris at them and inflicting damage every second. Enemies closer to the center of the Tornado take more damage."},
'5312': {"cost": "", "name": "Tornado", "scepter_mods": [], "scepter": "", "notes": [], "mana": "200", "cooldown": "70.0", "details": [["MAX DURATION:", "40.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "Channeled"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enraged_wildkin_tornado.png", "description": "CHANNELED - The Wildwing Ripper calls on the spirit of the wind, creating a sentient Tornado that he can control. The Tornado slows nearby enemies and does damage. It is invulnerable and can move anywhere."},
'5313': {"cost": "", "name": "Toughness Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900"], ["BONUS ARMOR:", "3"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/enraged_wildkin_toughness_aura.png", "description": "The Wildwing Ripper's fury numbs it to attacks and inspires nearby allies to withstand more blows."},
'5314': {"cost": "", "name": "Purge", "scepter_mods": [], "scepter": "", "notes": [], "mana": "120", "cooldown": "3.0", "details": [["DURATION:", "5.0"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/satyr_trickster_purge.png", "description": "The Satyr Banisher knows every trick in the book, allowing him to remove debuffs from allies or buffs from enemies. His trickery also slows the enemy's movement.<br><br>DISPEL TYPE: Basic Dispel"},
'5315': {"cost": "", "name": "Mana Burn", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "18.0", "details": [["MANA BURNED:", "100"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/satyr_soulstealer_mana_burn.png", "description": "The Satyr Mindstealer removes a fragment of his enemy's soul, burning away some mana and dealing damage equal to the amount of mana burned."},
'5316': {"cost": "", "name": "Shockwave", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "8.0", "details": [["TRAVEL DISTANCE:", "1380"], ["CAST POINT:", ["0.5"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["160"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/satyr_hellcaller_shockwave.png", "description": "The Satyr Tormenter tears open an unstable rift to the underworld, creating a shockwave that travels in a line along the ground, dealing damage to enemies it hits."},
'5317': {"cost": "", "name": "Unholy Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900"], ["HEALTH REGEN:", "5.5"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/satyr_hellcaller_unholy_aura.png", "description": "The Satyr Tormenter's demonic communion allows him to emanate regenerative power, increasing the health regeneration of himself and all nearby allies."},
'5318': {"cost": "", "name": "Heal", "scepter_mods": [], "scepter": "", "notes": [], "mana": "5", "cooldown": "0.5", "details": [["HEALTH RESTORED:", "15"], ["CAST POINT:", ["0.5"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack", "Autocast"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/forest_troll_high_priest_heal.png", "description": "The Hill Troll Priest lays his holy blessing upon the target ally, replenishing some health."},
'5319': {"cost": "", "name": "Chain Lightning", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "4.0", "details": [["MAX TARGETS:", "4"], ["INITIAL DAMAGE:", "140"], ["JUMP RANGE:", "500"], ["%JUMP DAMAGE LOSS:", "25.0"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/harpy_storm_chain_lightning.png", "description": "The Harpy Stormcrafter releases a high-voltage bolt of electricity at the target enemy, dealing damage. The bolt jumps to other nearby enemies, losing power with each jump."},
'5320': {"cost": "", "name": "Sticky Napalm", "scepter_mods": [], "scepter": "", "notes": ["All damage from Batrider gets amplified, except for Radiance, Orb of Venom, and Urn of Shadows."], "mana": "20 20 20 20", "cooldown": "3.0 3.0 3.0 3.0", "details": [["%MOVEMENT SLOW:", "-3 -5 -7 -9"], ["%TURN RATE SLOW:", "-70 -70 -70 -70"], ["RADIUS:", "375 375 375 375"], ["EXTRA DAMAGE:", "10 15 20 25"], ["DURATION:", "8.0 8.0 8.0 8.0"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "It's not uncommon to hear the Rider cackle while he increases the flammability of his opponents.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/batrider_sticky_napalm.png", "description": "Drenches an area in sticky oil, amplifying damage from Batrider's attacks and abilities and slowing the movement speed and turn rate of enemies in the area. Additional casts of Sticky Napalm continue to increase damage, up to 10 stacks. The extra damage is halved against creeps."},
'5321': {"cost": "", "name": "Flamebreak", "scepter_mods": [], "scepter": "", "notes": [], "mana": "110 120 130 140", "cooldown": "17.0", "details": [["DAMAGE PER SECOND:", "25 30 35 40"], ["BURN DURATION:", "4 5 6 7"], ["RADIUS:", "375"], ["TOTAL DAMAGE:", "100 150 210 280"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "A molotov cocktail is the weapon of choice for Batrider.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/batrider_flamebreak.png", "description": "Hurls an explosive cocktail that explodes when it reaches the target location, knocking back, and dealing damage over time to enemies in the area."},
'5322': {"cost": "", "name": "Firefly", "scepter_mods": [], "scepter": "", "notes": ["The trail persists through Batrider's death.", "If duration ends when above impassable terrain, the Batrider can get stuck.", "During this the Batrider can fly above units, trees and impassable terrain."], "mana": "125", "cooldown": "40.0 40.0 40.0 40.0", "details": [["DAMAGE PER SECOND:", "10 30 50 70"], ["DURATION:", "18.0 18.0 18.0 18.0"], ["RADIUS:", "200 200 200 200"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "When an enemy escapes into the Yama Raskav Jungle, most would cut through the brush to find the fugitive. Batrider just chooses to destroy the jungle along with his foes.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/batrider_firefly.png", "description": "Batrider takes to the skies, laying down a trail of flames from the air. The fire damages any enemies it touches, and destroys trees below Batrider. While flying, Batrider gains unobstructed movement and vision."},
'5323': {"cost": "", "name": "Flaming Lasso", "scepter_mods": [["SCEPTER TETHER RANGE:", "400"], ["SCEPTER DAMAGE PER SECOND:", "100"]], "scepter": "Flaming Lasso grabs both its target, as well as the target's nearest allied hero within 400 range. The secondary target is tethered to the first. Also causes Flaming Lasso to deal 100 damage per second.", "notes": ["Killing the target or the Batrider will break the lasso before its expiration.", "Disable works on Spell Immune units.", "If Batrider moves more than 400 units in 0.05 seconds the lasso breaks.", "Batrider cannot attack while using Flaming Lasso."], "mana": "225", "cooldown": "100.0 80.0 60.0", "details": [["DURATION:", "3.0 3.5 4.0"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["100"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Few dare to ask to ride on the bat, as Batrider gives them free of charge.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/batrider_flaming_lasso.png", "description": "Lassoes an enemy and drags them in Batrider's wake. Victims cannot be dragged over impassable terrain. Dragged units cannot move, attack, or use abilities. Teleporting or blinking will break the lasso.<br><br>Upgradable by Aghanim's Scepter."},
'5324': {"cost": "", "name": "Splash Attack", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["FAR RANGE:", "250"], ["%FAR DAMAGE:", "25.0"], ["CLOSE RANGE:", "50"], ["MID RANGE:", "150"], ["%MID DAMAGE:", "50.0"], ["%CLOSE DAMAGE:", "100.0"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/black_dragon_splash_attack.png", "description": "The Black Dragon's explosive attacks are felt by all nearby enemies. Units closer to the blast take more damage."},
'5325': {"cost": "", "name": "Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%EVADE CHANCE:", "15"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/blue_dragonspawn_sorcerer_evasion.png", "description": "The Drakken Sentinel has assumed a partially ethereal form, making him difficult to hit with attacks."},
'5326': {"cost": "", "name": "Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%EVADE CHANCE:", "15"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/blue_dragonspawn_overseer_evasion.png", "description": "The Drakken Armorer moves about quickly, making him difficult to hit with attacks."},
'5327': {"cost": "", "name": "Guardian Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS ARMOR:", "3"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/blue_dragonspawn_overseer_devotion_aura.png", "description": "The Drakken Armorer is wholly devoted to his cause, increasing his tolerance for physical attacks. Nearby allies are similarly devoted to the Overseer and are able to withstand more blows."},
'5328': {"cost": "", "name": "Penitence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "70", "cooldown": "14.0 13.0 12.0 11.0", "details": [["%BONUS DAMAGE:", "18 24 30 36"], ["%MOVEMENT SLOW:", "-18 -24 -30 -36"], ["DURATION:", "8"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Although Chen's brand of animal enthrallment isn't quite strong enough to control the minds of enemy heroes, it still tests their resolve in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chen_penitence.png", "description": "Forces an enemy unit to move slower and take more damage from attacks and spells."},
'5329': {"cost": "", "name": "Test of Faith", "scepter_mods": [], "scepter": "", "notes": ["Can target spell immune allies."], "mana": "60 80 100 120", "cooldown": "16", "details": [["DAMAGE MAX:", "100 200 300 400"], ["HEAL MAX:", "50 100 150 200"], ["HEAL MIN:", "25 50 75 100"], ["DAMAGE MIN:", "50 100 150 200"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["600 600 600 600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chen_test_of_faith.png", "description": "Teleports an allied unit back to the base. Creeps are teleported instantly, while Heroes have a delay before teleporting. If cast on Chen, all units controlled by Chen through Holy Persuasion will be teleported to him after a delay."},
'5330': {"cost": "", "name": "Holy Persuasion", "scepter_mods": [], "scepter": "Allows Holy Persuasion to target Ancient Creeps, maximum one per level of Hand of God.", "notes": ["Fully restores the creep's mana upon converting.", "The health of creeps already under Chen's control does not update to the new level upon leveling Holy Persuasion further.", "Can target Ancient Creeps when Chen has Aghanim's Scepter.", "Persuading a new creep above max unit count causes the oldest persuaded creep to die."], "mana": "70 90 110 130", "cooldown": "10", "details": [["MAX UNITS:", "1 2 3 4"], ["HEALTH MINIMUM:", "700 800 900 1000"], ["TELEPORT DELAY:", "6.0 5.0 4.0 3.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["900 900 900 900"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Although they may not be knights, Chen incorporates beasts into the Fold in the same way he himself was converted.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chen_holy_persuasion.png", "description": "Chen takes control of an enemy or neutral creep. If the persuaded creep's base health is naturally below the health minimum, its base health will be raised to the health minimum.<br><br>Can be cast on allies to teleport them back to base. If cast on Chen, all units controlled by Chen will be teleported to him. <br><br>Upgradable by Aghanim's Scepter."},
'5331': {"cost": "", "name": "Hand of God", "scepter_mods": [["SCEPTER HOLY PERSUASION ANCIENTS:", "1 2 3"]], "scepter": "", "notes": ["Can heal invulnerable and hidden/banished allies."], "mana": "200 300 400", "cooldown": "160 140 120", "details": [["HEAL:", "250 375 500"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Using the mental link with his thralls, Chen calls down restoration and well-being to those who share his fanaticism.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chen_hand_of_god.png", "description": "Heals all allied heroes on the map as well as all units under Chen's control."},
'5332': {"cost": "", "name": "Slam", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90", "cooldown": "6.0", "details": [["DURATION:", "4.0"], ["ATTACK SLOW:", "-25"], ["%MOVEMENT SLOW:", "-25"], ["RADIUS:", "250"], ["HERO DURATION:", "2.0"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["70"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/big_thunder_lizard_slam.png", "description": "The Ancient Thunderhide slams his mammoth body against the ground. The shock damages nearby enemies and throws them off their footing. Heroes regain their balance more quickly."},
'5333': {"cost": "", "name": "Frenzy", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "8.0", "details": [["BONUS ATTACK SPEED:", "75"], ["DURATION:", "8.0"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/big_thunder_lizard_frenzy.png", "description": "The Ancient Thunderhide works an ally into a frenzy, causing his ally to have increased attack speed."},
'5334': {"cost": "", "name": "Spectral Dagger", "scepter_mods": [], "scepter": "", "notes": ["There is a 2 second grace period after leaving the path where no collision is preserved."], "mana": "130 140 150 160", "cooldown": "16.0 16.0 16.0 16.0", "details": [["%MOVEMENT SPEED CHANGE:", "8 12 16 20"], ["DAMAGE:", "50 100 150 200"], ["DURATION:", "7.0 7.0 7.0 7.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["2000 2000 2000 2000"]], ["BEHAVIOR:", ["Point Target", "Targets Units"]]], "lore": "Mercurial's dagger eclipses the physical plane in shadow, a state in which mortals cower, but spectres thrive.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spectre_spectral_dagger.png", "description": "Spectre flings a dagger to draw a Shadow Path, dealing damage and slowing the movement speed of any enemies along the trail. Units hit by the dagger also trail a Shadow Path. While treading the path, Spectre phases through otherwise impassable terrain."},
'5335': {"cost": "", "name": "Desolate", "scepter_mods": [], "scepter": "", "notes": ["Damage is dealt before Spectre's attack.", "Spectre's illusions also have Desolate."], "mana": "", "cooldown": "", "details": [["%VISION REDUCTION:", "40 50 60 70"], ["RADIUS:", "325"], ["BONUS DAMAGE:", "20 30 40 50"], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Often times, warriors find themselves alone with a vision of Mercurial - the fated question is if it is the true Spectre.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spectre_desolate.png", "description": "Deals bonus damage whenever Spectre attacks an enemy who is alone. Reduces the enemy vision for 5.0 seconds."},
'5336': {"cost": "", "name": "Dispersion", "scepter_mods": [], "scepter": "", "notes": ["Illusions don't get this ability.", "The reflected damage is not dealt to Spectre.", "Damage is reflected before reductions, and is returned as the same damage type."], "mana": "", "cooldown": "", "details": [["%DAMAGE REFLECTED:", "10 14 18 22"], ["MIN RADIUS:", "300 300 300 300"], ["MAX RADIUS:", "1000 1000 1000 1000"], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "A daunting task lies before enemies of Mercurial - killing a shadow with blade and magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spectre_dispersion.png", "description": "Damage done to Spectre is reflected on her enemies, leaving her unharmed. The effect lessens with distance."},
'5337': {"cost": "", "name": "Haunt", "scepter_mods": [], "scepter": "", "notes": ["Haunt illusions are uncontrollable and move at 400 base movement speed.", "There is a 1 second delay before illusions start attacking their target."], "mana": "150 150 150", "cooldown": "180 150 120", "details": [["HAUNT DURATION:", "5.0 6.0 7.0"], ["%HAUNT DAMAGE TAKEN:", "200 200 200"], ["%HAUNT DAMAGE:", "40"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "At the height of combat, Mercurial's physical manifestation shatters, and the shadowy pieces haunt those who still cling to life.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spectre_haunt.png", "description": "Creates a spectral nemesis to attack each enemy hero after a short delay. At any moment during the duration, Spectre can use Reality to exchange places of a given haunt.<br><br>Haunt illusions are uncontrollable, take extra damage, and deal less damage than Spectre herself. They move at 400 base movement speed and ignore terrain."},
'5338': {"cost": "", "name": "Reality", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0", "details": [["CAST POINT:", ["0"]], ["BEHAVIOR:", ["Not Learnable", "Point Target"]]], "lore": "The scattered shadows unite into the one true Spectre.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spectre_reality.png", "description": "Spectre exchanges places with a chosen Haunt."},
'5339': {"cost": "", "name": "Devour", "scepter_mods": [], "scepter": "", "notes": ["Gives Doom the original bounty of the creep, along with the bonus gold.", "The amount of time it takes to Devour depends on the current HP of the unit.", "Doom can't Devour mechanical or ancient units.", "If you devour a creep without abilities, you'll keep the abilities you had previously."], "mana": "40 50 60 70", "cooldown": "70.0 60.0 50.0 40.0", "details": [["BONUS GOLD:", "25 50 75 100"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["300 300 300 300"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Lucifer's appetite and greed are never sated.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_devour.png", "description": "Consumes an enemy or neutral creep, acquiring any special abilities that it possessed."},
'5340': {"cost": "", "name": "Scorched Earth", "scepter_mods": [], "scepter": "", "notes": ["Other units Doom controls also benefit from Scorched Earth.", "Scorched Earth follows Doom, centered on his location."], "mana": "60 65 70 75", "cooldown": "55", "details": [["RADIUS:", "600 600 600 600"], ["%BONUS MOVE SPEED:", "14"], ["REGEN:", "12 18 24 30"], ["DURATION:", "10.0 12.0 14.0 16.0"], ["DAMAGE:", "16 24 32 40"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["600 600 600 600"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The Fallen One spreads destruction in his wake, sparing none from the flame which sustains him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_scorched_earth.png", "description": "Carpets the nearby earth in flames which damage enemies and heal Doom, while also granting him increased movement speed."},
'5341': {"cost": "", "name": "Infernal Blade", "scepter_mods": [], "scepter": "", "notes": ["Interrupts channeling abilities."], "mana": "40", "cooldown": "16 12 8 4", "details": [["BURN DURATION:", "4.0"], ["STUN DURATION:", "0.6"], ["BASE BURN DAMAGE:", "25 30 35 40"], ["%MAX HP AS DAMAGE:", "1.25 2.5 3.75 5"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "Lucifer shares the fire branding bestowed upon him at the time of his exile.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_infernal_blade.png", "description": "Doom swings his burning sword, igniting the enemy. Stuns for 0.6 seconds and applies a 4.0 second burn that deals 25 30 35 40 + %burn_damage_pct% of the target's Max HP as damage per second."},
'5342': {"cost": "", "name": "Doom", "scepter_mods": [["SCEPTER DURATION:", "16.0"]], "scepter": "Increases Doom's duration, and will suspend its duration while the affected unit is within 900 range. Also causes it to remove positive buffs from the target when cast, and break most passive abilities while active.", "notes": ["Units afflicted by Doom can be denied when their HP drops below 25%."], "mana": "150 200 250", "cooldown": "145.0", "details": [["DAMAGE PER SECOND:", "25 40 55"], ["DURATION:", "16.0"], ["CAST POINT:", ["0.5"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550 550 550"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "When a name is tolled from the bell of Vashundol, doom is sure to follow.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_doom.png", "description": "Inflicts a curse that prevents an enemy Hero from casting spells or using items, while taking damage over time.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Basic Dispel"},
'5343': {"cost": "", "name": "Devoured Ability", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_empty1.png", "description": "This slot will be replaced with abilities acquired using Devour."},
'5344': {"cost": "", "name": "Devoured Ability", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/doom_bringer_empty2.png", "description": "This slot will be replaced with abilities acquired using Devour."},
'5345': {"cost": "", "name": "Cold Feet", "scepter_mods": [], "scepter": "", "notes": ["Total possible damage: 120/200/280/360.", "Deals damage every second."], "mana": "125", "cooldown": "10 9 8 7", "details": [["CAST RANGE:", "700 800 900 1000"], ["BREAK DISTANCE:", "740 740 740 740"], ["DAMAGE PER TICK:", "30 50 70 90"], ["STUN DURATION:", "2.0 2.5 3.0 3.5"], ["DURATION:", ["4.0 4.0 4.0 4.0"]], ["CAST POINT:", ["0.01 0.01 0.01 0.01"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700 800 900 1000"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Kaldr's presence draws those around him into a frozen void, threatening to lock them in an icy prison for eternity.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ancient_apparition_cold_feet.png", "description": "Places a frozen hex on an enemy unit that deals damage over time, but can be dispelled by moving away from the initial cast point. If the enemy unit doesn't move outside of the given range, it will be stunned and frozen in place after 4 seconds."},
'5346': {"cost": "", "name": "Ice Vortex", "scepter_mods": [], "scepter": "", "notes": ["Grants Ancient Apparition bonus movement speed within AoE.", "Doesn't affect Spell Immune units."], "mana": "80 90 100 110", "cooldown": "4.0", "details": [["%INCREASED MAGIC DAMAGE:", "-15 -20 -25 -30"], ["DURATION:", "16"], ["%SLOW:", "-15 -20 -25 -30"], ["RADIUS:", "275 275 275 275"], ["DURATION:", ["16"]], ["CAST POINT:", ["0.01 0.01 0.01 0.01"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1500 1500 1500 1500"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Frozen, caustic winds are at the whim of Kaldr, chilling the field of battle.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ancient_apparition_ice_vortex.png", "description": "Creates a vortex of icy energy that slows movement speed and increases magic damage done in its range."},
'5347': {"cost": "", "name": "Chilling Touch", "scepter_mods": [], "scepter": "", "notes": ["Extra damage is its own instance of damage.", "Only works against heroes and creeps."], "mana": "110 120 130 140", "cooldown": "50.0 42.0 34.0 26.0", "details": [["MAX ATTACKS:", "3 4 5 6"], ["SLOW AMOUNT:", "30"], ["BUFF DURATION:", "20 24 28 32"], ["DAMAGE:", "30 45 60 75"], ["RADIUS:", "525"], ["SLOW DURATION:", "0.3"], ["DURATION:", ["20 24 28 32"]], ["CAST POINT:", ["0.01 0.01 0.01 0.01"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["800 800 800 800"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The Ancient Apparition's eternal knowledge brings a frigid enchantment to his allies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ancient_apparition_chilling_touch.png", "description": "A frigid gust enchants allied heroes, granting them bonus magical damage for a given number of physical attacks. Each attack slows the enemy movement speed. Ancient Apparition always receives the buff."},
'5348': {"cost": "", "name": "Ice Blast", "scepter_mods": [["SCEPTER FROSTBITTEN DURATION:", "17"]], "scepter": "Increases frostbite duration.", "notes": ["The Frostbitten debuff cannot be purged.", "The HP Freeze prevents most kinds of healing, including the fountain.", "The area of effect is 275 + 50*TimeTraveled, capped at 1000. The freeze area along the path is 275.", "Kill will be granted to the source of the damage that triggers the shatter.", "The instant kill doesn't work on illusions."], "mana": "150", "cooldown": "40.0", "details": [["%SHATTER HEALTH THRESHOLD:", "10.0 11.0 12.0"], ["FROSTBITTEN DAMAGE PER SECOND:", "12.5 20.0 32.0"], ["FROSTBITTEN DURATION:", "8.0 9.0 10.0"], ["CAST POINT:", ["0.01 0.01 0.01"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["250 350 450"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Ice storms from ages past flow through Kaldr's frosty limbs, crashing into the world and turning its inhabitants into monuments to his eternal power.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ancient_apparition_ice_blast.png", "description": "Releases the ice blast to explode at the tracer's current location."},
'5349': {"cost": "", "name": "Release", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0 1.0 1.0", "details": [["CAST POINT:", ["0 0 0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ancient_apparition_ice_blast_release.png", "description": "Releases the ice blast to explode at the tracer's current location."},
'5350': {"cost": "", "name": "Backdoor Protection", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/backdoor_protection.png", "description": "Structure takes reduced damage, and quickly regenerates any damage taken while no enemy creeps are nearby."},
'5351': {"cost": "", "name": "Backdoor Protection", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/backdoor_protection_in_base.png", "description": "Structure takes reduced damage, and quickly regenerates any damage taken while no enemy creeps are nearby."},
'5352': {"cost": "", "name": "Poison", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ATTACK SLOW:", "-35"], ["DURATION:", "3.0"], ["%MOVEMENT SLOW:", "-35"], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/beastmaster_greater_boar_poison.png", "description": "Inflicts a poison that slows attack and movement speeds."},
'5353': {"cost": "", "name": "Charge of Darkness", "scepter_mods": [], "scepter": "", "notes": ["Spirit Breaker gains shared vision of the target.", "Spirit Breaker passes through trees, cliffs, and units.", "The charge indicator is visible only to allies."], "mana": "100 100 100 100", "cooldown": "12", "details": [["STUN DURATION:", "1.2 1.6 2.0 2.4"], ["CHARGE SPEED:", "600 650 700 750"], ["CAST POINT:", ["0.47 0.47 0.47 0.47"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Targets Units", "Doesnt Alert Target", "Disabled By Root"]]], "lore": "Barathrum erupts from the darkness with unwieldy force.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spirit_breaker_charge_of_darkness.png", "description": "Spirit Breaker fixes his sight on an enemy unit and starts charging through all objects. All enemy units passed through and the targeted unit will be hit by a Greater Bash. If the targeted unit dies, Spirit Breaker will change his target to the nearest enemy unit to that location."},
'5354': {"cost": "", "name": "Empowering Haste", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "12", "details": [["AURA RADIUS:", "900 900 900 900"], ["%CAST ADDED BONUS SPEED:", "3 4 5 6"], ["%BONUS MOVE SPEED SELF:", "8 12 16 20"], ["%BONUS MOVE SPEED ALLIES:", "4 6 8 10"], ["CAST ADDED SPEED DURATION:", "6"], ["DISPELLABLE:", ["No"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Aura"]]], "lore": "Aspiring heroes gain speed and power from simply observing the Spirit Breaker's dominance on the battle field.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spirit_breaker_empowering_haste.png", "description": "Causes Spirit Breaker to gain power with higher movement speed. His presence increases the movement speed of nearby allied units. Can be cast to improve the movement speed bonus for 6 seconds, however afterward the passive bonus will be halved while the ability is on cooldown."},
'5355': {"cost": "", "name": "Greater Bash", "scepter_mods": [], "scepter": "", "notes": ["Does not stack with Skull Basher."], "mana": "", "cooldown": "1.5 1.5 1.5 1.5", "details": [["%MOVESPEED AS DAMAGE:", "12 24 36 48"], ["KNOCKBACK DURATION:", "0.5 0.5 0.5 0.5"], ["%BONUS MOVE SPEED:", "15 15 15 15"], ["SPEED DURATION:", "3.0 3.0 3.0 3.0"], ["%CHANCE TO BASH:", "17 17 17 17"], ["STUN DURATION:", "1.0 1.2 1.4 1.6"], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The signature strike of Barathrum's ghostly ball and chain.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spirit_breaker_greater_bash.png", "description": "Gives a chance to stun and knockback an enemy unit on an attack, as well as gaining bonus movement speed after a bash occurs. Deals a percentage of movement speed as damage."},
'5356': {"cost": "", "name": "Nether Strike", "scepter_mods": [["SCEPTER BASH RADIUS:", "250 250 250"], ["SCEPTER COOLDOWN:", "20.0 20.0 20.0"], ["SCEPTER RANGE:", "850"]], "scepter": "Causes the Greater Bash to hit an area around the initial target, decreases cooldown, and increases cast range.", "notes": ["Spirit Breaker appears behind the target to deliver the bash."], "mana": "125 150 175", "cooldown": "100 80 60", "details": [["BONUS DAMAGE:", "150 250 350"], ["RANGE:", "700"], ["CAST POINT:", ["1.2"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Barathrum temporarily returns to the realm from where he came, bringing with him the retribution of both worlds.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/spirit_breaker_nether_strike.png", "description": "Spirit Breaker slips into the nether realm, reappearing next to his hapless victim. Upon reappearing, a Greater Bash of the current level occurs and deals bonus damage.<br><br>Upgradable by Aghanim's Scepter."},
'5357': {"cost": "", "name": "Earthshock", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75 75 75 75", "cooldown": "5", "details": [["%SLOW:", "-25 -35 -45 -55"], ["RADIUS:", "385"], ["DURATION:", ["4.0 4.0 4.0 4.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["90 140 190 240"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "The very steps of a male ursine shake the ground as well as the resolve of opposing warriors.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ursa_earthshock.png", "description": "Ursa slams the earth, causing a powerful shock to damage and slow all enemy units in a nearby area for 4 seconds."},
'5358': {"cost": "", "name": "Overpower", "scepter_mods": [], "scepter": "", "notes": ["Overpower isn't removed by Black King Bar."], "mana": "45 55 65 75", "cooldown": "10.0 10.0 10.0 10.0", "details": [["DURATION:", "15"], ["BONUS ATTACK SPEED:", "400 400 400 400"], ["ATTACKS:", "3 4 5 6"], ["DURATION:", ["15.0 15.0 15.0 15.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "For a behemoth of his size, Ursa is deceptively nimble.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ursa_overpower.png", "description": "Using his skill in combat, Ursa gains increased attack speed for a number of subsequent attacks."},
'5359': {"cost": "", "name": "Fury Swipes", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RESET TIME:", "20"], ["DAMAGE PER ATTACK:", "15 20 25 30"], ["RESET TIME (ROSHAN):", "10"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "In nature, the wounded rarely survive the attacks of hungry predators.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ursa_fury_swipes.png", "description": "Ursa's claws dig deeper wounds in the enemy, causing consecutive attacks to the same enemy to deal more damage. If the same target is not attacked after 15 seconds, the bonus damage is lost."},
'5360': {"cost": "", "name": "Enrage", "scepter_mods": [["SCEPTER COOLDOWN:", "30 24 18"]], "scepter": "Reduces cooldown and allows Ursa to use Enrage while disabled.", "notes": [], "mana": "0 0 0", "cooldown": "50 40 30", "details": [["%DAMAGE REDUCTION:", "80"], ["DURATION:", "4.0"], ["FURY SWIPES MULTIPLIER:", "1.5 1.75 2.0"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Ulfsaar succumbs to his ancient spirit, becoming the most ferocious creature on the battlefield.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ursa_enrage.png", "description": "Ursa goes into a frenzy, multiplying his Fury Swipes damage and causing him to take 80 less damage. Removes any existing debuffs.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Strong Dispel"},
'5361': {"cost": "", "name": "Rocket Barrage", "scepter_mods": [], "scepter": "", "notes": ["Rocket Barrage can't hit units Gyrocopter has no vision over."], "mana": "90 90 90 90", "cooldown": "7.0 6.5 6 5.5", "details": [["RADIUS:", "400"], ["ROCKET DAMAGE:", "7 12 17 22"], ["ROCKETS PER SECOND:", "10"], ["DURATION:", ["3 3 3 3"]], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Aurel's new craft has an increased payload for rockets, enhancing their rapid-fire capabilities.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/gyrocopter_rocket_barrage.png", "description": "Launches a salvo of rockets at nearby enemy units in a radius around the Gyrocopter. Lasts 3 seconds."},
'5362': {"cost": "", "name": "Homing Missile", "scepter_mods": [], "scepter": "", "notes": ["The crosshair effect is visible to allies only.", "Towers do half damage to the missile.", "The missile will follow and hit invisible units.", "Maximum damage is reached when the missile is 1500 units away."], "mana": "120 130 140 150", "cooldown": "26 21 16 11", "details": [["STUN DURATION:", "2.25 2.5 2.75 3.0"], ["TOWER HITS TO DESTROY:", "6 6 8 10"], ["MINIMUM DAMAGE:", "50"], ["HITS TO DESTROY:", "3 3 4 4"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["100 175 250 325"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1050"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "The biggest missile Aurel could possibly attach to his craft, The Bomb\u2122 has carefully calculated aerodynamics and explosives for maximum impact.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/gyrocopter_homing_missile.png", "description": "Fires a homing missile to seek the targeted enemy unit. The missile gains speed over time, dealing damage and stunning when it impacts the target. Enemy units can destroy the missile before it reaches its target."},
'5363': {"cost": "", "name": "Flak Cannon", "scepter_mods": [], "scepter": "", "notes": ["Attack range for the primary attack is unchanged."], "mana": "50 50 50 50", "cooldown": "30 30 30 30", "details": [["MAX ATTACKS:", "3 4 5 6"], ["RADIUS:", "1250"], ["DURATION:", ["15 15 15 15"]], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "This newly revamped Gyrocopter has attached enough armaments to assault in a 360 degree radius.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/gyrocopter_flak_cannon.png", "description": "Gyrocopter's attacks hit all enemy units in an area around it for a limited number of attacks. Only the main target of attacks will receive attack bonuses such as Critical Strike. Lasts 15 seconds or until the attacks are used."},
'5364': {"cost": "", "name": "Call Down", "scepter_mods": [], "scepter": "Adds a Side Gunner that at random attacks enemy units within a 600 radius every 1.1 seconds.", "notes": ["The visual indicator is visible to allies only."], "mana": "125 125 125", "cooldown": "55 50 45", "details": [["RADIUS:", "600"], ["MISSILE TWO DAMAGE:", "100 150 200"], ["MISSILE ONE DAMAGE:", "200 275 350"], ["%MISSILE TWO SLOW:", "60"], ["%MISSILE ONE SLOW:", "30"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "'Bombs Away!'", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/gyrocopter_call_down.png", "description": "Call down an aerial missile strike on enemy units in a target area. Two missiles arrive in succession, the first dealing major damage and minor slow for 2 seconds; the second dealing minor damage and major slow for 4 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5365': {"cost": "", "name": "Acid Spray", "scepter_mods": [], "scepter": "", "notes": [], "mana": "130 140 150 160", "cooldown": "22.0", "details": [["DAMAGE PER SECOND:", "15 20 25 30"], ["RADIUS:", "400 475 550 625"], ["ARMOR REDUCTION:", "4 5 6 7"], ["DURATION:", "16"], ["CAST POINT:", ["0.2"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Using traditional Alchemy from the Darkbrew family, Razzil concocts an acid that dissolves even the toughest metals.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alchemist_acid_spray.png", "description": "Sprays high-pressure acid across a target area. Enemy units who step across the contaminated terrain take damage per second and have their armor reduced."},
'5366': {"cost": "", "name": "Unstable Concoction", "scepter_mods": [], "scepter": "", "notes": ["Unstable Concoction cannot be disjointed.", "Once thrown, Unstable Concoction stops brewing.", "Alchemist can move and act normally while brewing.", "A timer above Alchemist's head will indicate the remaining brew time. This timer is visible to enemies.", "You can deny yourself with this skill."], "mana": "120", "cooldown": "22 20 18 16", "details": [["EXPLOSION RADIUS:", "200"], ["MAX DAMAGE:", "160 240 320 400"], ["MAX STUN:", "1.75 2.5 3.25 4.0"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["775"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "A silver lining to the failure of turning a mountain into gold, this volatile solution has destructive potential.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alchemist_unstable_concoction.png", "description": "Throw it before it blows up!"},
'5367': {"cost": "", "name": "Unstable Concoction Throw", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.2"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["775"]], ["BEHAVIOR:", ["Targets Units", "AOE", "Other (Hidden)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alchemist_unstable_concoction_throw.png", "description": "Throw it before it blows up!"},
'5368': {"cost": "", "name": "Greevil's Greed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["MAX BONUS GOLD PER KILL:", "16 20 24 28"], ["BOUNTY RUNE MULTIPLIER:", "2.5"], ["RECENT KILL WINDOW:", "30"], ["BASE BONUS GOLD:", "4"], ["EXTRA BONUS GOLD:", "4"], ["BEHAVIOR:", ["Passive"]]], "lore": "While it is not a mountain, Razzil has mastered the conversion of smaller compounds to line his pockets.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alchemist_goblins_greed.png", "description": "Alchemist synthesizes additional gold from his enemies and bounty runes. With each kill, Alchemist earns base bonus gold and extra bonus gold. If Alchemist kills another unit which yields gold within the next 30 seconds, an additional instance of Extra Bonus Gold is added to the total. Additionally, causes bounty runes to yield 2.5 times their normal gold."},
'5369': {"cost": "", "name": "Chemical Rage", "scepter_mods": [], "scepter": "Alchemist melts down Aghanim's Scepter to grant an allied hero all Aghanim's Scepter upgrades.", "notes": ["Has a 0.35 second transformation time, which can be used to dodge projectiles and stuns."], "mana": "50 100 150", "cooldown": "55.0", "details": [["BONUS MOVE SPEED:", "40 50 60"], ["DURATION:", "25.0"], ["BONUS MANA REGEN:", "3.0 7.5 12.0"], ["BASE ATTACK TIME:", "1.3 1.15 1.0"], ["BONUS HEALTH REGEN:", "40 48 56"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The brew Razzil gave to the Ogre during their prison bust has become a useful potion in the midst of combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/alchemist_chemical_rage.png", "description": "Alchemist causes his Ogre to enter a chemically induced rage, reducing base attack cooldown and increasing movement speed and regeneration."},
'5370': {"cost": "", "name": "Quas", "scepter_mods": [], "scepter": "", "notes": ["Invoker can only have 3 of any instance."], "mana": "0", "cooldown": "0", "details": [["HP REGEN PER INSTANCE:", "1 3 5 7 9 11 13"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_quas.png", "description": "Allows manipulation of ice elements. Each <font color='#7998b5'>Quas</font> instance provides increased health regeneration.<br>"},
'5371': {"cost": "", "name": "Wex", "scepter_mods": [], "scepter": "", "notes": ["Invoker can only have 3 of any instance."], "mana": "0", "cooldown": "0", "details": [["ATTACK SPEED PER INSTANCE:", "2 4 6 8 10 12 14"], ["%MOVE SPEED PER INSTANCE:", "1 2 3 4 5 6 7"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_wex.png", "description": "Allows manipulation of storm elements. Each <font color='#d671a9'>Wex</font> instance provides increased attack speed and movement speed."},
'5372': {"cost": "", "name": "Exort", "scepter_mods": [], "scepter": "", "notes": ["Invoker can only have 3 of any instance."], "mana": "0", "cooldown": "0", "details": [["DAMAGE PER INSTANCE:", "4 8 12 16 20 24 28"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_exort.png", "description": "Allows manipulation of fire elements. Each <font color='#cabe68'>Exort</font> instance provides increased attack damage."},
'5373': {"cost": "", "name": "Invoked Spell", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_empty1.png", "description": "Casting Invoke will replace this slot with one of ten unique spells based on Invoker's currently active <font color='#7998b5'>Quas</font>, <font color='#d671a9'>Wex</font>, and <font color='#cabe68'>Exort</font> buffs."},
'5374': {"cost": "", "name": "Invoked Spell", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_empty2.png", "description": "Casting Invoke will replace this slot with one of ten unique spells based on Invoker's currently active <font color='#7998b5'>Quas</font>, <font color='#d671a9'>Wex</font>, and <font color='#cabe68'>Exort</font> buffs."},
'5375': {"cost": "", "name": "Invoke", "scepter_mods": [["SCEPTER MANA COST:", "0"], ["SCEPTER COOLDOWN:", "2"]], "scepter": "Decreases cooldown and removes mana cost from Invoke. Adds one level to the stats provided by Quas, Wex, and Exort on all Invoked spells.", "notes": ["Invoke will not cost mana or go on cooldown if the only effect is to swap the positions of existing spells.", "The arrangement of instances does not matter."], "mana": "60", "cooldown": "6", "details": [["MAX SPELLS:", "2"], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "So begins a new age of knowledge.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_invoke.png", "description": "Combines the properties of the elements currently being manipulated to create a new spell for Invoker to use. Click the help button to see the list of possible spells.<br><br>Upgradable by Aghanim's Scepter."},
'5376': {"cost": "", "name": "Cold Snap", "scepter_mods": [], "scepter": "", "notes": ["The freeze stun only triggers on damage greater than 10 after reductions."], "mana": "100", "cooldown": "20", "details": [["FREEZE DURATION:", "0.4"], ["FREEZE COOLDOWN (<font color='#7998b5'>QUAS</font>):", "0.77 0.74 0.71 0.69 0.66 0.63 0.60 0.57"], ["COLD SNAP DURATION (<font color='#7998b5'>QUAS</font>):<br>", "3.0 3.5 4.0 4.5 5.0 5.5 6.0 6.5"], ["FREEZE DAMAGE (<font color='#7998b5'>QUAS</font>):", "7 14 21 28 35 42 49 56"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Sadron's Protracted Frisson.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_cold_snap.png", "description": "Invoker draws the heat from an enemy, chilling them to their very core for a duration based on the level of <font color='#7998b5'>Quas</font>. The enemy will take damage and be briefly frozen. Further damage taken in this state will freeze the enemy again, dealing bonus damage. The enemy can only be frozen so often, but the freeze cooldown decreases based on the level of <font color='#7998b5'>Quas</font>."},
'5377': {"cost": "", "name": "Arcane Curse", "scepter_mods": [], "scepter": "", "notes": ["If an enemy hero affected by Arcane Curse is silenced, Arcane Curse will pause damage, slow and duration.", "Affects creeps."], "mana": "75 95 115 135", "cooldown": "20 18 16 14", "details": [["BASE DURATION:", "6"], ["PENALTY DURATION:", "4"], ["DAMAGE:", "14 22 30 38"], ["RADIUS:", "425"], ["%MOVEMENT SLOW:", "-9 -12 -15 -18"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Nortrom's lack of incantations is less of a problem for him than it is for his adversaries.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/silencer_curse_of_the_silent.png", "description": "Curses the target area, causing enemy heroes to take damage and slowing their movement speed. Anytime affected enemies cast a spell, the duration is increased."},
'5378': {"cost": "", "name": "Glaives of Wisdom", "scepter_mods": [], "scepter": "Causes Glaives to pierce Spell Immunity and deal 100% more damage against silenced units.", "notes": [], "mana": "15 15 15 15", "cooldown": "", "details": [["%INT TO DAMAGE:", "15 30 45 60"], ["DURATION:", ["0.0 0.0 0.0 0.0"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "Although lacking in traditional incantations, Nortrom's pedigree of the Aeol Drias gives him uncanny wisdom, which he applies to physical combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/silencer_glaives_of_wisdom.png", "description": "Silencer enchants his glaives with his wisdom, dealing additional damage based on his Intelligence.<br><br>Upgradable by Aghanim's Scepter."},
'5379': {"cost": "", "name": "Last Word", "scepter_mods": [], "scepter": "", "notes": ["Channeling abilities will trigger this effect once the caster finishes its channel."], "mana": "115", "cooldown": "30 24 18 12", "details": [["SILENCE DURATION:", "3 4 5 6"], ["DAMAGE:", "150 200 250 300"], ["ENEMY CAST TIMER:", "4"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Nortrom ensures that spells uttered by his opponents will be their last.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/silencer_last_word.png", "description": "Enchants a target, causing them to be damaged and silenced if they cast a spell or if the enchantment timer expires."},
'5380': {"cost": "", "name": "Global Silence", "scepter_mods": [], "scepter": "", "notes": ["This skill works on invisible and Spell Immune units, but gaining spell immunity will remove its effect."], "mana": "250 375 500", "cooldown": "130.0", "details": [["DURATION:", "4.0 5.0 6.0"], ["DURATION:", ["4.0 5.0 6.0"]], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "With a shock to the ground, all magic and sound pauses, and Nortrom fulfills his prophecy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/silencer_global_silence.png", "description": "Silencer stops all sound, preventing enemy heroes and units on the map from casting spells."},
'5381': {"cost": "", "name": "Ghost Walk", "scepter_mods": [], "scepter": "", "notes": ["The slow effect does not work on Spell Immune enemies."], "mana": "200", "cooldown": "45", "details": [["%ENEMY SLOW (<font color='#7998b5'>QUAS</font>):<br>", "-20 -25 -30 -35 -40 -45 -50 -55"], ["RADIUS:", "400"], ["DURATION:", "100.0"], ["%SELF SPEED (<font color='#d671a9'>WEX</font>):<br>", "-30 -20 -10 0 10 20 30 40"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Other (Hidden)", "Not Learnable", "Doesnt Cancel Channeling", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Myrault's Hinder-Gast.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_ghost_walk.png", "description": "Invoker manipulates the ice and electrical energies around him, rendering his body invisible. The elemental imbalance created as a consequence slows nearby enemies based on the level of <font color='#7998b5'>Quas</font>, and slows Invoker as well based on the level of <font color='#d671a9'>Wex</font>."},
'5382': {"cost": "", "name": "Tornado", "scepter_mods": [], "scepter": "", "notes": ["Units are invulnerable while affected by Tornado, and the damage is dealt when landing."], "mana": "150", "cooldown": "30", "details": [["BASE DAMAGE:", "70"], ["RADIUS:", "200"], ["ADDED DAMAGE (<font color='#d671a9'>WEX</font>):", "45 90 135 180 225 270 315 360"], ["TRAVEL DISTANCE (<font color='#d671a9'>WEX</font>):<br>", "800 1200 1600 2000 2400 2800 3200 3600"], ["LIFT TIME (<font color='#7998b5'>QUAS</font>):<br>", "0.8 1.1 1.4 1.7 2.0 2.3 2.6 2.9"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["2000"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Claws of Tornarus.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_tornado.png", "description": "Unleashes a fast moving tornado that picks up enemy units in its path, suspending them helplessly in the air shortly before allowing them to plummet to their doom. Travels further based on the level of <font color='#d671a9'>Wex</font>. Holds enemies in the air for a duration based on the level of <font color='#7998b5'>Quas</font>. Deals base damage plus added damage based on levels in <font color='#d671a9'>Wex</font>.<br><br>DISPEL TYPE: Basic Dispel"},
'5383': {"cost": "", "name": "E.M.P.", "scepter_mods": [], "scepter": "", "notes": ["Will not affect cycloned units (Tornado or Eul's Scepter of Divinity)."], "mana": "125", "cooldown": "30", "details": [["RADIUS:", "675"], ["CHARGE TIME:", "2.9"], ["MAX MANA BURNED (<font color='#d671a9'>WEX</font>):<br>", "100 175 250 325 400 475 550 625"], ["%BURN DAMAGE:", "60"], ["CAST POINT:", ["0.05"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["950"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "Not Learnable", "AOE", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Endoleon's Malevolent Perturbation.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_emp.png", "description": "Invoker builds up a charge of electromagnetic energy at a targeted location which automatically detonates after 2.9 seconds. The detonation covers an area, draining mana based on the level of <font color='#d671a9'>Wex</font>. Deals damage for each point of mana drained. If EMP drains mana from an enemy hero, Invoker gains 50% of the mana drained."},
'5384': {"cost": "", "name": "Alacrity", "scepter_mods": [], "scepter": "", "notes": [], "mana": "60", "cooldown": "17", "details": [["DURATION:", "9"], ["BONUS DAMAGE (<font color='#cabe68'>EXORT</font>):<br>", "10 25 40 55 70 85 100 115"], ["BONUS ATTACK SPEED (<font color='#d671a9'>WEX</font>):<br>", "10 25 40 55 70 85 100 115"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)", "Not Learnable", "Casting Stops Attack", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Gaster's Mandate of Impetuous Strife.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_alacrity.png", "description": "Invoker infuses an ally with an immense surge of energy, increasing their attack speed based on the level of <font color='#d671a9'>Wex</font> and their damage based on the level of <font color='#cabe68'>Exort</font>."},
'5385': {"cost": "", "name": "Chaos Meteor", "scepter_mods": [], "scepter": "", "notes": ["Deals main damage to enemy units under meteor every 0.5 seconds and burns enemies for smaller damage over 3 seconds.", "The meteor moves at a speed of 300."], "mana": "200", "cooldown": "55", "details": [["RADIUS:", "275"], ["CONTACT DAMAGE (<font color='#cabe68'>EXORT</font>):<br>", "57.5 75 92.5 110 127.5 145 162.5 180"], ["TRAVEL DISTANCE (<font color='#d671a9'>WEX</font>):<br>", "465 615 780 930 1095 1245 1410 1575"], ["BURN DAMAGE PER SECOND (<font color='#cabe68'>EXORT</font>):<br>", "11.5 15 18.5 22 25.5 29 32.5 36"], ["BURN DURATION:", "3.0"], ["IMPACT DELAY:", "1.3"], ["CONTACT DAMAGE TICK:", "0.5"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Tarak's Descent of Fire.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_chaos_meteor.png", "description": "Invoker pulls a flaming meteor from space onto the targeted location. Upon landing, the meteor rolls forward, constantly dealing damage based on the level of <font color='#cabe68'>Exort</font>, and rolling further based on the level of <font color='#d671a9'>Wex</font>. Units hit by the meteor will also be set on fire for a short time, receiving additional damage based on the level of <font color='#cabe68'>Exort</font>."},
'5386': {"cost": "", "name": "Sun Strike", "scepter_mods": [], "scepter": "", "notes": ["Invoker gains experience with kills made from Sun Strike, even if made from outside of experience range.", "Gives vision of the target area before the strike."], "mana": "175", "cooldown": "25", "details": [["DAMAGE (<font color='#cabe68'>EXORT</font>):<br>", "100 162.5 225 287.5 350 412.5 475 537.5"], ["RADIUS:", "175"], ["DELAY:", "1.7"], ["CAST POINT:", ["0.05"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "Not Learnable", "AOE", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Harlek's Incantation of Incineration.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_sun_strike.png", "description": "Sends a catastrophic ray of fierce energy from the sun at any targeted location, incinerating all enemies standing beneath it once it reaches the earth. Deals damage based on the level of <font color='#cabe68'>Exort</font>, however this damage is spread evenly over all enemies hit."},
'5387': {"cost": "", "name": "Forge Spirit", "scepter_mods": [], "scepter": "", "notes": ["Casting this ability will replace currently summoned Forged Spirits."], "mana": "75", "cooldown": "30", "details": [["DAMAGE (<font color='#cabe68'>EXORT</font>):<br>", "22 32 42 52 62 72 82 92"], ["MANA (<font color='#cabe68'>EXORT</font>):<br>", "100 150 200 250 300 350 400 450"], ["HEALTH (<font color='#7998b5'>QUAS</font>):<br>", "300 400 500 600 700 800 900 1000"], ["DURATION (<font color='#7998b5'>QUAS</font>):<br>", "20 30 40 50 60 70 80 90"], ["ATTACK RANGE (<font color='#7998b5'>QUAS</font>):<br>", "300 365 430 495 560 625 690 755"], ["ARMOR (<font color='#cabe68'>EXORT</font>):<br>", "0 1 2 3 4 5 6 7"], ["CAST POINT:", ["0.05"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Culween's Most Cunning Fabrications.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_forge_spirit.png", "description": "Invoker forges a spirit embodying the strength of fire and fortitude of ice. Damage, mana, and armor are based on the level of <font color='#cabe68'>Exort</font> while attack range, health, and duration are based on the level of <font color='#7998b5'>Quas</font>. The elemental's scorching attack is capable of melting the armor of enemy heroes."},
'5388': {"cost": "", "name": "Melting Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "40", "cooldown": "", "details": [["DURATION:", "5"], ["MAX ARMOR REMOVED:", "10"], ["ARMOR REMOVED PER HIT:", "1"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/forged_spirit_melting_strike.png", "description": "Melts away the armor of heroes hit by the spirit's attack if the spirit has enough mana. Each successive hit increases the amount of armor melted."},
'5389': {"cost": "", "name": "Ice Wall", "scepter_mods": [], "scepter": "", "notes": ["The slow will still affect Spell Immune enemies if their spell immunity was created after being affected by Ice Wall."], "mana": "175", "cooldown": "25", "details": [["SLOW DURATION:", "2.0"], ["%MOVEMENT SLOW (<font color='#7998b5'>QUAS</font>):<br>", "-20 -40 -60 -80 -100 -120 -140 -160"], ["DAMAGE PER SECOND (<font color='#cabe68'>EXORT</font>):<br>", "6 12 18 24 30 36 42 48"], ["WALL DURATION (<font color='#7998b5'>QUAS</font>):<br>", "3.0 4.5 6.0 7.5 9.0 10.5 12.0 13.5"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Killing Wall of Koryx.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_ice_wall.png", "description": "Generates a wall of solid ice directly in front of Invoker for a duration based on the level of <font color='#7998b5'>Quas</font>. The bitter cold emanating from it greatly slows nearby enemies based on the level of <font color='#7998b5'>Quas</font> and deals damage each second based on the level of <font color='#cabe68'>Exort</font>."},
'5390': {"cost": "", "name": "Deafening Blast", "scepter_mods": [], "scepter": "", "notes": [], "mana": "300", "cooldown": "40", "details": [["TRAVEL DISTANCE:", "1000"], ["DISARM DURATION (<font color='#d671a9'>WEX</font>):<br>", "1.25 2.0 2.75 3.5 4.25 5.0 5.75 6.5"], ["DAMAGE (<font color='#cabe68'>EXORT</font>):<br>", "40 80 120 160 200 240 280 320"], ["KNOCKBACK DURATION (<font color='#7998b5'>QUAS</font>):<br>", "0.25 0.5 0.75 1.0 1.25 1.5 1.75 2.0"], ["CAST POINT:", ["0.05"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Buluphont's Aureal Incapacitator.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/invoker_deafening_blast.png", "description": "Invoker unleashes a mighty sonic wave in front of him, dealing damage to any enemy unit it collides with based on the level of <font color='#cabe68'>Exort</font>. The sheer impact from the blast is enough to knock those enemy units back for a duration based on the level of <font color='#7998b5'>Quas</font>, then disarm their attacks for a duration based on the level of <font color='#d671a9'>Wex</font>."},
'5391': {"cost": "", "name": "Arcane Orb", "scepter_mods": [], "scepter": "", "notes": ["The damage is calculated after the mana cost is spent."], "mana": "100 120 140 160", "cooldown": "0", "details": [["STEAL DURATION:", "80"], ["ILLUSION DAMAGE:", "100 200 300 400"], ["%MANA POOL TO DAMAGE:", "6 7 8 9"], ["INTELLIGENCE STEAL:", "1 2 3 4"], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["450"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "Harbinger's outworldly knowledge allows it to tap into the ebb and flow of all spiritual energy, infusing it into his being.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/obsidian_destroyer_arcane_orb.png", "description": "Adds extra pure damage to Outworld Devourer's attacks, based on his remaining mana pool. Steals 1 2 3 4 intelligence for %int_steal_duration% seconds per hit when attacking an enemy hero. Arcane Orb also does bonus damage to summoned units and illusions."},
'5392': {"cost": "", "name": "Astral Imprisonment", "scepter_mods": [["SCEPTER MAX CHARGES:", "2"], ["SCEPTER CHARGE RESTORE TIME:", "12"]], "scepter": "Grants charges to Astral Imprisonment. Damage areas stack.", "notes": ["Imprisoned units are hidden and invulnerable.", "Imprisoned units can still be hit by Sanity's Eclipse."], "mana": "140 160 180 200", "cooldown": "22 18 14 10", "details": [["DAMAGE:", "100 175 250 325"], ["RADIUS:", "400"], ["PRISON DURATION:", "4.0"], ["CAST RANGE:", "225 300 375 450"], ["DURATION:", ["4.0"]], ["CAST POINT:", ["0.25 0.25 0.25 0.25"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies", "Allies"]], ["CAST RANGE:", ["225 300 375 450"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "Locked away in the pocket between this world and the Outworld, victims realize their infantile knowledge and mortality.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/obsidian_destroyer_astral_imprisonment.png", "description": "Places a target unit into an astral prison. The hidden unit is invulnerable and disabled. When the astral prison implodes, it deals 100 175 250 325 damage to enemies in a 400 radius around the target.<br><br>Upgradable by Aghanim's Scepter."},
'5393': {"cost": "", "name": "Essence Aura", "scepter_mods": [], "scepter": "", "notes": ["Other than Arcane Orb, most skills without cooldowns cannot trigger Essence Aura."], "mana": "", "cooldown": "", "details": [["BASE MANA:", "125 200 275 350"], ["RADIUS:", "900"], ["%RESTORE CHANCE:", "40"], ["%RESTORED MANA:", "10 15 20 25"], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "The crystals of the Outworld produce arcane power, and the Harbinger channels it into the world of mortals.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/obsidian_destroyer_essence_aura.png", "description": "Whenever nearby allied Heroes or Outworld Devourer itself casts a spell, it gains a chance to restore a percentage of its mana pool. Outworld Devourer also passively gains a bonus to its base mana pool. Several skills with no cooldown and toggled spells cannot trigger Essence Aura."},
'5394': {"cost": "", "name": "Sanity's Eclipse", "scepter_mods": [], "scepter": "", "notes": [], "mana": "175 250 325", "cooldown": "160", "details": [["INT DIFF DAMAGE MULTIPLIER:", "8 9 10"], ["CAST RANGE:", "700"], ["RADIUS:", "375 475 575"], ["CAST POINT:", ["0.25 0.25 0.25"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "When an Outworld crystal ruptures, cataclysmic energies are released, and the reverberations of this power are felt interdimensionally.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/obsidian_destroyer_sanity_eclipse.png", "description": "Unleashes a psychic blast that removes 40 of the mana from affected heroes, while also damaging them based on the difference between the affected hero's Intelligence and Outworld Devourer's. If an enemy hero has the same or higher Intelligence than Outworld Devourer, Sanity's Eclipse will not cause damage. Sanity's Eclipse can hit units trapped by Astral Imprisonment."},
'5395': {"cost": "", "name": "Summon Wolves", "scepter_mods": [], "scepter": "", "notes": ["Spirit Wolves have 80% magic damage resistance.", "Using this spell will replace currently active Spirit Wolves.", "If wolves are summoned during the duration of Howl, they will receive the buff until the end of its duration."], "mana": "145", "cooldown": "30.0 30.0 30.0 30.0", "details": [["BASE ATTACK TIME:", "1.25 1.2 1.15 1.1"], ["DAMAGE:", "18 29 37 46"], ["DURATION:", "55.0 55.0 55.0 55.0"], ["HP:", "200 240 280 320"], ["WOLF COUNT:", "2 2 2 2"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The very enchantment that twisted his being also summons canine familiars.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_summon_wolves.png", "description": "Summons two wolves to fight for Lycan. Level 3-4 wolves have Cripple, and level 4 wolves have permanent invisibility."},
'5396': {"cost": "", "name": "Howl", "scepter_mods": [], "scepter": "", "notes": [], "mana": "40", "cooldown": "60 55 50 45", "details": [["HERO BONUS HEALTH:", "50 100 150 200"], ["DURATION:", "13.0"], ["MINION BONUS HEALTH:", "25 50 75 100"], ["MINION BONUS DAMAGE:", "4 6 8 10"], ["HERO BONUS DAMAGE:", "10 15 20 25"], ["DURATION:", ["13"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "Blood-curdling wolf cries signal to opponents that Banehallow is among them.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_howl.png", "description": "Grants bonus damage and bonus health to Lycan, all allied heroes and all units under their control. Howl has double effect during night."},
'5397': {"cost": "", "name": "Feral Impulse", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900 900 900 900"], ["%BONUS DAMAGE:", "15 26 37 48"], ["BONUS HP REGEN:", "1 3 5 7"], ["BEHAVIOR:", ["Passive"]]], "lore": "His animalistic symbiosis with canine kind gives Banehallow enhanced reflexes and hunting capabilities.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_feral_impulse.png", "description": "Increases the HP regeneration and damage of Lycan and all units under his control."},
'5398': {"cost": "", "name": "Shapeshift", "scepter_mods": [], "scepter": "", "notes": ["Hex doesn't remove Lycan's movement speed.", "Lycan has a smaller collision size in this state."], "mana": "100 100 100", "cooldown": "130 105 80", "details": [["TRANSFORM TIME:", "1.5"], ["SHAPESHIFT MOVE SPEED:", "650"], ["%CRITICAL DAMAGE:", "160 180 200"], ["%CRITICAL CHANCE:", "40"], ["BONUS NIGHT VISION:", "1000"], ["DURATION:", "18"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Forever a slave to his lycanthropy, Banehallow has come to accept his curse, and embrace his own savagery.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_shapeshift.png", "description": "Lycan assumes his lupine form, granting him and his units critical strikes and added vision at night. During Shapeshift, Lycan and all units under his control move at increased speed, cannot be slowed and have a 40% chance to deal a critical strike doing 160 180 200 damage."},
'5399': {"cost": "", "name": "Cripple", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE PER SECOND:", "8"], ["ATTACK SPEED SLOW:", "60"], ["%CRIPPLE CHANCE:", "20"], ["DURATION:", "4.0"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_summon_wolves_critical_strike.png", "description": "Gives 20% to cripple the target, causing 8 damage per second and lose 60 Attack Speed for 4.0 seconds."},
'54': {"cost": "3800", "name": "Sacred Relic", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "60 Damage"], ["BEHAVIOR:", ["Passive"]]], "lore": "An ancient weapon that often turns the tides of war.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/relic.png", "description": ""},
'5400': {"cost": "", "name": "Thunder Clap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90 105 130 150", "cooldown": "13", "details": [["%MOVEMENT SLOW:", "25 35 45 55"], ["ATTACK SLOW:", "25 35 45 55"], ["DAMAGE:", "100 175 250 300"], ["HERO DURATION:", "4.0"], ["RADIUS:", "400 400 400 400"], ["CREEP DURATION:", "8.0 8.0 8.0 8.0"], ["CAST POINT:", ["0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "A slam of Mangix' mighty keg starts the festivities.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_thunder_clap.png", "description": "Slams the ground, dealing damage and slowing the movement speed and attack rate of nearby enemy land units."},
'5401': {"cost": "", "name": "Drunken Haze", "scepter_mods": [], "scepter": "", "notes": ["Can be disjointed."], "mana": "25", "cooldown": "11 9 7 5", "details": [["%MISS CHANCE:", "70"], ["DURATION:", "4.5"], ["%MOVEMENT SLOW:", "10 20 30 40"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["850 850 850 850"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Order of the Oyo's solution to all problems - another round!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_drunken_haze.png", "description": "Drenches a target in alcohol, causing their movement speed to be reduced, and causing their attacks to have a chance to miss."},
'5402': {"cost": "", "name": "Drunken Brawler", "scepter_mods": [], "scepter": "", "notes": ["The guaranteed critical attack and guaranteed dodge chance are on separate timers.", "Stacks diminishingly with other sources of Evasion."], "mana": "", "cooldown": "", "details": [["%CRITICAL CHANCE:", "10 15 20 25"], ["%CRITICAL DAMAGE:", "230"], ["%DODGE CHANCE:", "10 15 20 25"], ["CERTAIN TRIGGER TIMER:", "13 12 11 10"], ["BEHAVIOR:", ["Passive"]]], "lore": "When Mangix won his title as the Brewmaster of the Order of Oyo, he also claimed his place in the mastery of inebriation.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_drunken_brawler.png", "description": "Gives a chance to avoid attacks and to deal critical damage. Drunken Brawler will always trigger if you have not attacked, or have not been attacked, in the last several seconds."},
'5403': {"cost": "", "name": "Primal Split", "scepter_mods": [], "scepter": "Earth gains Thunder Clap, Storm gains Drunken Haze and Fire gains Drunken Brawler.", "notes": ["The Earth Element will carry all auras that the Brewmaster has, as well as True Sight.", "The Fire Element has phased movement.", "When the spell ends, Brewmaster will take the place of an element in this order, assuming they are alive: Earth, Storm, Fire."], "mana": "125 150 175", "cooldown": "140 120 100", "details": [["DURATION:", "16 18 20"], ["CAST POINT:", ["0.65"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "It isn't clear whether Mangix is consciously aware of his potent bond with nature, as it often occurs in the midst of a drunken stupor.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_primal_split.png", "description": "Splits Brewmaster into elements, forming 3 specialized warriors, adept at survival. If any of them survive until the end of their summoned timer, the Brewmaster is reborn.<br><br>Upgradable by Aghanim's Scepter."},
'5404': {"cost": "", "name": "Hurl Boulder", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "5", "details": [["DAMAGE:", "50 100 150"], ["STUN DURATION:", "2.0 2.0 2.0 2.0"], ["CAST POINT:", ["0.25"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800 800 800 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_earth_hurl_boulder.png", "description": "Throws a boulder at a unit, doing damage and stunning it."},
'5405': {"cost": "", "name": "Spell Immunity", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_earth_spell_immunity.png", "description": "Immune to spells."},
'5406': {"cost": "", "name": "Demolish", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS BUILDING DAMAGE:", "90 180 270"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_earth_pulverize.png", "description": "Deals bonus damage to buildings."},
'5408': {"cost": "", "name": "Dispel Magic", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75 75 75 75", "cooldown": "4", "details": [["DAMAGE TO SUMMONS:", "1000"], ["RADIUS:", "600"], ["CAST POINT:", ["0.4"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500 500 500 500"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_storm_dispel_magic.png", "description": "Damages summoned units in an area and purges most buffs or debuffs.<br><br>DISPEL TYPE: Basic Dispel"},
'5409': {"cost": "", "name": "Cyclone", "scepter_mods": [], "scepter": "", "notes": [], "mana": "150 150 150 150", "cooldown": "8.0", "details": [["NON-HERO DURATION:", "20.0 20.0 20.0 20.0"], ["HERO DURATION:", "6.0"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 600 600 600"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_storm_cyclone.png", "description": "Encloses a unit in a tornado, removing it from the battlefield."},
'5410': {"cost": "", "name": "Wind Walk", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75 75 75 75", "cooldown": "5", "details": [["BONUS MOVEMENT SPEED:", "50 50 50 50"], ["DURATION:", "20.0 20.0 20.0 20.0"], ["BONUS DAMAGE:", "100 160 220"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Casting Stops Attack", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_storm_wind_walk.png", "description": "Provides temporary invisibility. Bonus movement speed and attack damage when invisible."},
'5411': {"cost": "", "name": "Permanent Immolation", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE PER SECOND:", "15 30 45"], ["RADIUS:", "220 220 220"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/brewmaster_fire_permanent_immolation.png", "description": "Burns nearby enemy units."},
'5412': {"cost": "", "name": "Summon Spirit Bear", "scepter_mods": [], "scepter": "Allows Spirit Bear to attack at any range from Lone Druid, and to survive if Lone Druid dies.", "notes": ["You can't resummon the bear if it has taken damage in the past 3 seconds.", "Entangled units can't use Blink abilities, and are revealed if they are invisible.", "Most spells interact with the Spirit Bear in the same way as they do with heroes.", "Using Hand of Midas from Spirit Bear grants the earned XP to Lone Druid."], "mana": "75 75 75 75", "cooldown": "120.0", "details": [["BEAR ARMOR:", "3 4 5 6"], ["BEAR BASE ATTACK TIME:", "1.75 1.65 1.55 1.45"], ["BEAR HP:", "1500 2000 2500 3000"], ["BEAR HP REGEN:", "4 5 6 7"], ["%BACKLASH PURE DAMAGE:", "10.0"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Sylla's lifelong companion is symbiotic with his spirit and heart, coming to aid him in any time of need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_spirit_bear.png", "description": "Summons a powerful Spirit Bear companion that can equip items. If the bear moves 1100 distance away from the Lone Druid, it cannot attack. Lone Druid suffers 10.0% of his max health as backlash damage if the Spirit Bear dies. As the bear increases in levels, it can learn the Return, Entangling Claws, and Demolish abilities. Spirit Bear does not benefit from attributes.<br><br>Upgradable by Aghanim's Scepter."},
'5413': {"cost": "", "name": "Rabid", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 50 50 50", "cooldown": "35", "details": [["ATTACK SPEED:", "20 30 40 50"], ["DURATION:", "25"], ["%MOVEMENT SPEED:", "10 15 20 25"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Bears are not commonly seen as being agile creatures, but can actually move rather quickly, especially when enraged.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_rabid.png", "description": "Increases the attack and movement speed of Lone Druid and the Spirit Bear."},
'5414': {"cost": "", "name": "Savage Roar", "scepter_mods": [], "scepter": "", "notes": ["Cooldown is shared with Lone Druid.", "An entangled hero will not be able to move.", "An entangled hero will not be able to move.", "Cooldown is shared with Spirit Bear."], "mana": "50", "cooldown": "38 32 26 20", "details": [["DURATION:", "1.2 1.6 2.0 2.4"], ["%ENEMY MOVEMENT SPEED BONUS:", "20"], ["RANGE:", "325"], ["CAST POINT:", ["0.1"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Sylla studies and masters the arts of the lost Bear Clan, enhancing his attunement with the wild.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_savage_roar.png", "description": "Spirit Bear roars fiercely causing nearby enemies to flee towards their base in terror. Their movement speed is increased by 20%."},
'5415': {"cost": "", "name": "True Form", "scepter_mods": [], "scepter": "Allows Spirit Bear to attack at any range from Lone Druid, and to survive if Lone Druid dies.", "notes": ["Manta Style's cooldown time will be based on whether Lone Druid was in his ranged or melee form when the item was used.", "You can dodge stuns during the 2 second duration of transforming."], "mana": "25 25 25", "cooldown": "0.0 0.0 0.0", "details": [["BASE ATTACK TIME:", "1.5 1.5 1.5"], ["BONUS HP:", "300 600 900"], ["BONUS ARMOR:", "4 6 8"], ["TRANSFORM TIME:", "1.933"], ["BASE SPEED LOSS:", "45"], ["CAST POINT:", ["0 0 0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "When Sylla cries in the forest, the reverberations are felt for a great distance.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_true_form.png", "description": "Lone Druid learns to morph himself into a raging bear, losing his ranged advantage and some base movement speed, but gaining melee power as well as the Battle Cry ability. He can morph freely between druid and bear form.<br><br>Upgradable by Aghanim's Scepter."},
'5416': {"cost": "", "name": "Druid Form", "scepter_mods": [], "scepter": "Allows Spirit Bear to attack at any range from Lone Druid, and to survive if Lone Druid dies.", "notes": [], "mana": "25 25 25", "cooldown": "0.0 0.0 0.0", "details": [["TRANSFORM TIME:", "0.8"], ["CAST POINT:", ["0 0 0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_true_form_druid.png", "description": "Return to Druid form.<br><br>Upgradable by Aghanim's Scepter."},
'5417': {"cost": "", "name": "Battle Cry", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 50 50", "cooldown": "45.0", "details": [["DURATION:", "5.0"], ["RADIUS:", "1000"], ["BONUS ARMOR:", "10 15 20"], ["BONUS DAMAGE:", "70 100 130"], ["CAST POINT:", ["0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target", "Ultimate", "Other (Hidden)", "Not Learnable", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "When Sylla cries in the forest, the reverberations are felt for a great distance.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_true_form_battle_cry.png", "description": "Adds attack damage and armor to the Lone Druid as well as any nearby units under his control."},
'5418': {"cost": "", "name": "Return", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "5.0", "details": [["CAST POINT:", ["0"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_spirit_bear_return.png", "description": "Immediately teleports the Spirit Bear back to the Lone Druid. The Spirit Bear cannot teleport if it has taken damage from a player unit in the last 3 seconds."},
'5419': {"cost": "", "name": "Entangling Claws", "scepter_mods": [], "scepter": "", "notes": ["Entangled units can't use Blink abilities, and are revealed if they are invisible."], "mana": "", "cooldown": "5.0", "details": [["%ENTANGLE CHANCE:", "20"], ["HERO DURATION:", "3.0"], ["CREEP DURATION:", "9.0"], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["60"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_spirit_bear_entangle.png", "description": "Attacks have a chance to cause roots to burst from the ground, immobilizing the attacked enemy unit, and dealing damage per second."},
'5420': {"cost": "", "name": "Demolish", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%BONUS BUILDING DAMAGE:", "40"], ["%SPELL RESISTANCE:", "33"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_spirit_bear_demolish.png", "description": "Increases the power of the Spirit Bear, causing it to deal more damage to buildings and have additional spell resistance."},
'5421': {"cost": "", "name": "Disruption", "scepter_mods": [], "scepter": "", "notes": [], "mana": "120 120 120 120", "cooldown": "27.0 24.0 21.0 18.0", "details": [["%ILLUSION DAMAGE TAKEN:", "300"], ["ILLUSION DURATION:", "8 10 12 14"], ["%ILLUSION DAMAGE:", "30.0 45.0 60.0 75.0"], ["BANISH DURATION:", "2.5 2.5 2.5 2.5"], ["DURATION:", ["2.5 2.5 2.5 2.5"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies", "Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "The pain of deception comes not while it happens, but when it is revealed.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_demon_disruption.png", "description": "Banishes the targeted unit from the battlefield for a short duration. Upon returning, two illusions of the banished unit are created under Shadow Demon's control."},
'5422': {"cost": "", "name": "Soul Catcher", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 60 70 80", "cooldown": "13 12 11 10", "details": [["%ILLUSION DAMAGE TAKEN:", "200"], ["RADIUS:", "450 450 450 450"], ["%ILLUSION DAMAGE:", "30 45 60 75"], ["%BONUS DAMAGE:", "20 30 40 50"], ["DURATION:", "12.0 12.0 12.0 12.0"], ["DURATION:", ["12.0 12.0 12.0 12.0"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Trying to resist the Shadow Demon's corruption is mostly a useless endeavor.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_demon_soul_catcher.png", "description": "Captures the soul of a random enemy in an area, amplifies all damage they take. Units under the effect of Disruption can still be affected by Soul Catcher."},
'5423': {"cost": "", "name": "Shadow Poison", "scepter_mods": [], "scepter": "", "notes": ["Shadow Poison can affect units under Disruption."], "mana": "50", "cooldown": "2.5", "details": [["DURATION:", "10.0 10.0 10.0 10.0"], ["RADIUS:", "200"], ["MAX STACKS TO MULTIPLY:", "5"], ["STACK DAMAGE:", "20 35 50 65"], ["DURATION:", ["10.0 10.0 10.0 10.0"]], ["CAST POINT:", ["0.25"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["26 34 42 50"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The ever growing influence of the Shadow Demon can pollute the most valiant and pure of heroes.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_demon_shadow_poison.png", "description": "Deals damage in a line, and afflicts enemy units with a poison effect. The poison deals 1/2/4/8/16 times the stack damage based on the number of stacks on the target, up to 5 stacks. Additional stacks cause 50 damage each. This deferred damage is dealt when Shadow Poison's duration is expired, or the Release sub-ability is used."},
'5424': {"cost": "", "name": "Shadow Poison Release", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0", "details": [["CAST POINT:", ["0.3"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_demon_shadow_poison_release.png", "description": "Releases the poison to do damage on all affected enemies. Units under the effect of Disruption can still be affected by Shadow Poison."},
'5425': {"cost": "", "name": "Demonic Purge", "scepter_mods": [["SCEPTER CHARGE RESTORE TIME:", "40"]], "scepter": "Cooldown is removed, replaced with 3 charges that replenish every 40 seconds. Also causes Demonic Purge to break its target's passive abilities while active.", "notes": ["Demonic Purge will slow Spell Immune units."], "mana": "200 200 200", "cooldown": "40", "details": [["PURGE DAMAGE:", "200 300 400"], ["DURATION:", "5.0 5.0 5.0"], ["DURATION:", ["5.0 5.0 5.0"]], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Once Shadow Demon no longer has any need for his collected cultist, he releases it from its subservience - and its life.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shadow_demon_demonic_purge.png", "description": "Purges the target enemy unit, removing positive buffs, and slowing the target for the duration. The unit slowly regains its speed until the end of the duration, upon which damage is dealt. Units under the effect of Disruption can still be affected by Demonic Purge.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Basic Dispel"},
'5426': {"cost": "", "name": "Chaos Bolt", "scepter_mods": [], "scepter": "", "notes": ["The stun duration and damage values dealt are inversely related."], "mana": "140 140 140 140", "cooldown": "10.0 10.0 10.0 10.0", "details": [["MINIMUM DAMAGE:", "75 100 125 150"], ["MINIMUM STUN:", "1 1 1 2"], ["MAXIMUM DAMAGE:", "200 225 250 275"], ["MAXIMUM STUN:", "2 3 4 4"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Even Chaos Knight cannot predict this manifest of unholy energy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chaos_knight_chaos_bolt.png", "description": "Throws a mysterious bolt of energy at the target unit. It stuns for a random duration and deals random damage."},
'5427': {"cost": "", "name": "Reality Rift", "scepter_mods": [], "scepter": "", "notes": ["Chaos Knight and the target unit are made to face each other, and Chaos Knight and his phantasms are issued an attack order against the target."], "mana": "50", "cooldown": "18 14 10 6", "details": [["REDUCTION DURATION:", "8"], ["ARMOR REDUCTION:", "-1 -3 -5 -7"], ["RANGE:", "550 600 650 700"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550 600 650 700"]], ["BEHAVIOR:", ["Targets Units", "Disabled By Root"]]], "lore": "Armageddon rides between the planes, bringing Chaos Knight to his victim wherever he may hide.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chaos_knight_reality_rift.png", "description": "Teleports you, any images you have and the target unit to a random point along the line between the two of you. Reduces the target's armor for 8 seconds."},
'5428': {"cost": "", "name": "Chaos Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%CRITICAL LIFESTEAL:", "75"], ["%CRITICAL CHANCE:", "12"], ["%CRITICAL DAMAGE:", "125 175 225 275"], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Chaos Knight's unwieldy power bludgeons those who stand before him, crushing the thickest of armors.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chaos_knight_chaos_strike.png", "description": "Each of Chaos Knight's attacks has a chance to deal bonus damage, also causing the critical strike to lifesteal for 75% of the damage."},
'5429': {"cost": "", "name": "Phantasm", "scepter_mods": [["SCEPTER COOLDOWN:", "110"]], "scepter": "Reduces cooldown to 110 seconds and allows Phantasm to be cast on an allied hero. 1200 Cast Range", "notes": ["Removes most negative buffs from Chaos Knight.", "Chaos Knight is invulnerable for 0.5 seconds when casting, allowing him to dodge stuns and damage."], "mana": "125 200 275", "cooldown": "145", "details": [["PHANTASM DURATION:", "42"], ["%PHANTASM DAMAGE:", "100 100 100"], ["NUMBER OF PHANTASMS:", "1 2 3"], ["%EXTRA PHANTASM CHANCE:", "50"], ["%PHANTASM DAMAGE TAKEN:", "260"], ["CAST POINT:", ["0.4 0.4 0.4"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Drawing on his battles fought across many worlds and many times, phantasms of the Chaos Knight rise up to quell all who oppose him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chaos_knight_phantasm.png", "description": "Summons several phantasmal copies of the Chaos Knight from alternate dimensions. There is a 50% chance an extra phantasm will be summoned. The phantasms deal 100 100 100 damage, but take 260 damage.<br><br>Upgradeable by Aghanim's Scepter.<br>DISPEL TYPE: Basic Dispel"},
'5430': {"cost": "", "name": "Earthbind", "scepter_mods": [], "scepter": "", "notes": ["Does not work on Spell Immune units or Roshan.", "While preventing units from going invisible, Earthbind won't hit units that are already invisible."], "mana": "100", "cooldown": "20 16 12 8", "details": [["RANGE:", "500 750 1000 1250"], ["DURATION:", "2.0"], ["RADIUS:", "220"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500 750 1000 1250"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Catching dinner in the Riftshadow Ruins can be quite the task.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/meepo_earthbind.png", "description": "Tosses a net at the target point, pinning down all enemy units. Earthbind prevents invisibility and blink."},
'5431': {"cost": "", "name": "Poof", "scepter_mods": [], "scepter": "", "notes": ["Can teleport to Meepo illusions.", "Can be cast through the minimap."], "mana": "80", "cooldown": "12 10 8 6", "details": [["RADIUS:", "375"], ["POOF DAMAGE:", "80 100 120 140"], ["CAST POINT:", ["1.5"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies"]], ["BEHAVIOR:", ["Point Target", "", "Targets Units", "Other (Normal When Stolen)", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "Sometimes breaking one of the Riftshadow Crystals can be just the trick for getting yourself out of a bind. Or your other self.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/meepo_poof.png", "description": "Drawing mystical energies from the earth, a Meepo can teleport to another Meepo or itself after channeling for 1.5 seconds, dealing damage in both the departure and arrival locations."},
'5432': {"cost": "", "name": "Geostrike", "scepter_mods": [], "scepter": "", "notes": ["Slows Spell Immune units."], "mana": "", "cooldown": "", "details": [["%MOVE SLOW:", "-5 -10 -15 -20"], ["DURATION:", "2.0"], ["DURATION:", ["2"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["DAMAGE:", ["10 20 30 40"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Keeping your pack light and having few but versatile tools is the best bet for survival.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/meepo_geostrike.png", "description": "Meepo enchants his weapon to deal damage per second, as well as slow the movement speed of the attacked unit. Geostrikes from multiple Meepos stack."},
'5433': {"cost": "", "name": "Divided We Stand", "scepter_mods": [], "scepter": "Adds an extra Meepo.", "notes": ["Clones can't use Arcane Boots or pick up runes."], "mana": "", "cooldown": "", "details": [["NUMBER OF MEEPOES:", "1 2 3"], ["BEHAVIOR:", ["Passive"]]], "lore": "Do I know you?", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/meepo_divided_we_stand.png", "description": "Meepo summons an imperfect, semi-autonomous duplicate of himself, which can gain gold and experience as he does and shares his experience, attributes and abilities. However, the clones cannot wield any items but the boots that Meepo himself wears. If any of the clones die, they all die.<br><br>Upgradable by Aghanim's Scepter."},
'5434': {"cost": "", "name": "Nature's Guise", "scepter_mods": [], "scepter": "", "notes": ["Attack out of invisibilty cannot miss.", "Nature's Guise checks in 0.75 second intervals for nearby trees, removing invisibility if none are found.", "Can cast while invisible."], "mana": "", "cooldown": "", "details": [["ROOT DURATION:", "0.4 1.0 1.6 2.2"], ["TREE RADIUS:", "265"], ["%BONUS MOVE SPEED:", "10 18 26 34"], ["FADE TIME:", "7 6 5 3"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The Protectors don't often come into vision; their natural state being nestled within their leafy brethren.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/treant_natures_guise.png", "description": "Turns Treant invisible after a short delay when he is within close radius of a tree. Increases movement speed while invisible, and causes a disarming root when attacking out of invisibility."},
'5435': {"cost": "", "name": "Leech Seed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80 95 110 125", "cooldown": "16 13 10 7", "details": [["DAMAGE PER PULSE:", "15 30 45 60"], ["RADIUS:", "500"], ["%MOVEMENT SLOW:", "-16 -20 -24 -28"], ["DURATION:", "4.5"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Rooftrellen nurtures the beings under his stewardship, sustained by the lifeforce of trespassers into his sacred ground.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/treant_leech_seed.png", "description": "Treant plants a life-sapping seed in an enemy unit, draining its health, while simultaneously slowing it. The seed heals friendly units around it. Pulses 6 times."},
'5436': {"cost": "", "name": "Living Armor", "scepter_mods": [], "scepter": "", "notes": ["Can be cast through the minimap."], "mana": "50", "cooldown": "30 24 18 12", "details": [["DAMAGE INSTANCES:", "4 5 6 7"], ["REGEN:", "4 7 10 13"], ["DURATION:", "15.0"], ["BLOCK:", "20 40 60 80"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "The roots and tendrils of the Treant Protectors are far-reaching, stimulating the growth and rejuvenation of all of nature.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/treant_living_armor.png", "description": "Infuses the target hero or structure with a protective coating which grants bonus regeneration. Also blocks some damage from all sources. Dispels when a number of damage instances are taken."},
'5437': {"cost": "", "name": "Overgrowth", "scepter_mods": [], "scepter": "When Overgrowth is cast, it is also cast around Eye of the Forest to deal 175 damage per second.", "notes": ["Being entangled by Overgrowth through enchanted trees from Eyes of the Forest does damage. Being entangled by Overgrowth directly from Treant Protector does not.", "Works on Spell Immune units, but if units gain spell immunity after the effect starts, they'll break free."], "mana": "150 175 200", "cooldown": "100 85 70", "details": [["DURATION:", "3.0 3.75 4.5"], ["RADIUS:", "800"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Rooftrellen calls the ancestral spirit of nature, releasing its power through all of his kin.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/treant_overgrowth.png", "description": "Summons an overgrowth of vines and branches around Treant that prevent afflicted enemies from moving, blinking, going invisible, or attacking."},
'5438': {"cost": "", "name": "Fireblast", "scepter_mods": [], "scepter": "", "notes": ["When Multicast, Fireblast hits the same target each time with a 0.3 seconds interval.", "Mana cost is increased by 20 / 40 / 60 when learning Multi Cast."], "mana": "75 85 95 105", "cooldown": "12", "details": [["STUN DURATION:", "1.5"], ["FIREBLAST DAMAGE:", "55 110 165 220"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["475"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Ogre Magi is easily amused, entertained for hours by playing with fire.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_fireblast.png", "description": "Blasts an enemy unit with a wave of fire, dealing damage and stunning the target."},
'5439': {"cost": "", "name": "Ignite", "scepter_mods": [], "scepter": "", "notes": ["Multicast makes this spell have 150 additional cast range for every Multicast level.", "Multicast makes this spell have an area of effect (150/300/450 based on Multicast level).", "Multicast makes this spell have a chance to cast multiple times at random enemy units with 1400 area of effect."], "mana": "90", "cooldown": "15", "details": [["BURN DAMAGE:", "26 34 42 50"], ["DURATION:", "5 6 7 8"], ["%SLOW:", "-20 -22 -24 -26"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "Batter up!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_ignite.png", "description": "Drenches a target in volatile chemicals, causing it to burst into flames. The target is in immense pain, taking damage and moving more slowly."},
'5440': {"cost": "", "name": "Bloodlust", "scepter_mods": [], "scepter": "", "notes": ["When multicast, nearby allies will be selected randomly in an 575 area of effect to receive Bloodlust.", "Can affect siege units.", "Can be cast on Spell Immune allies."], "mana": "65", "cooldown": "20", "details": [["%BONUS MOVE SPEED:", "10 12 14 16"], ["DURATION:", "30"], ["BONUS ATTACK SPEED:", "30 40 50 60"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Casting Stops Attack"]]], "lore": "'Running's not as fun as hitting... Not one bit fun.'", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_bloodlust.png", "description": "Incites a frenzy in a friendly unit, increasing its movement speed and attack speed. Can be cast on towers."},
'5441': {"cost": "", "name": "Multicast", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%4X CAST CHANCE:", "0 0 12.5"], ["FIREBLAST COOLDOWN REDUCTION:", "2 4 6"], ["IGNITE CAST RANGE INCREASE:", "150 300 450"], ["%3X CAST CHANCE:", "0 20 25"], ["BLOODLUST RADIUS:", "575"], ["BLOODLUST COOLDOWN REDUCTION:", "5 10 15"], ["FIREBLAST MANA INCREASE:", "20 40 60"], ["%2X CAST CHANCE:", "40 50 60"], ["IGNITE RADIUS:", "150 300 450"], ["BEHAVIOR:", ["Passive"]]], "lore": "Despite being largely incapacitated by his IQ, the Ogre Magi's success in battle is attributed to pure skill.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_multicast.png", "description": ""},
'5442': {"cost": "", "name": "Decay", "scepter_mods": [["SCEPTER STRENGTH STEAL:", "10"]], "scepter": "Increases strength steal.", "notes": ["Affects invisible units.", "The strength stolen stacks, but can't cause a hero to have strength below 1.", "The strength steal takes effect before the damage is dealt."], "mana": "70 85 100 115", "cooldown": "10.0 8.0 6.0 4.0", "details": [["STRENGTH STEAL:", "4"], ["STEAL DURATION:", "45"], ["BASE DAMAGE:", "20 50 80 110"], ["RADIUS:", "325"], ["DURATION:", ["21.0 24.0 27.0 30.0"]], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The strength of the living is simply borrowed from the strength of the dead.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/undying_decay.png", "description": "Undying steals strength from all enemy heroes in an area, dealing base damage as he claims the enemy's strength for himself.<br><br>Upgradable by Aghanim's Scepter."},
'5443': {"cost": "", "name": "Soul Rip", "scepter_mods": [], "scepter": "", "notes": ["Can heal Tombstone, but can't heal or damage other buildings.", "Does not rip from invisible units."], "mana": "100 110 120 130", "cooldown": "24.0 18.0 12.0 6.0", "details": [["DAMAGE/HEAL PER UNIT:", "18 22 26 30"], ["TOMBSTONE HEAL:", "2 4 6 8"], ["MAX UNITS:", "10 12 14 16"], ["RIP RADIUS:", "1300"], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Even allies feel despair in Undying's presence.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/undying_soul_rip.png", "description": "Undying rips health away from all nearby units and uses it to heal an ally, or damage an enemy. Soul Rip can also be used to heal Tombstone."},
'5444': {"cost": "", "name": "Tombstone", "scepter_mods": [], "scepter": "", "notes": ["Zombies and Tombstone are Spell Immune.", "Tombstone is Spell Immune, but can be healed by Soul Rip.", "If their initial target dies or goes out of vision, the Zombie will die."], "mana": "120 130 140 150", "cooldown": "85 80 75 70", "details": [["ZOMBIE SPAWN INTERVAL:", "4.5 4.0 3.5 3.0"], ["ZOMBIE SPAWN RADIUS:", "1200"], ["%DEATHLUST PCT HEALTH THRESHOLD:", "20 25 30 35"], ["TOMBSTONE DURATION:", "30.0"], ["DEATHLUST FLAT HEALTH THRESHOLD:", "100 200 300 400"], ["ATTACKS TO DESTROY:", "4 5 6 8"], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "Dirge calls on his fallen brothers to fight for the Dead God.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/undying_tombstone.png", "description": "Summons a tombstone at the target point. Zombies will frequently spawn next to every enemy unit in the area around the Tombstone, and attack them. Zombies have the Deathlust ability, which causes their attacks to slow the target, and if the target reaches below a certain amount of health, increases the attack and movement speed of the zombie."},
'5445': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5446': {"cost": "", "name": "Deathlust", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%HEALTH THRESHOLD BY PERCENT:", "20 25 30 35"], ["%BONUS SPEED:", "50"], ["HEALTH THRESHOLD BY NUMBER:", "100 200 300 400"], ["SLOW DURATION:", "2.5"], ["%MOVEMENT SLOW:", "-7"], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/undying_tombstone_zombie_deathstrike.png", "description": "Slows enemy units on attack. If the attacked unit's health goes below the threshold, the zombie receives enhanced movement and attack speed."},
'5447': {"cost": "", "name": "Flesh Golem", "scepter_mods": [], "scepter": "", "notes": ["Dying illusions don't trigger the heal.", "Undying is healed when affected units die in range, regardless of who killed it.", "The minimum damage amplification and move slow from Plague Aura is 1%.", "Plague Aura goes through spell immunity."], "mana": "100 100 100", "cooldown": "75.0 75.0 75.0", "details": [["DURATION:", "30"], ["%MAX MOVE SLOW:", "20"], ["%DEATH HEAL (HEROES):", "10"], ["%MIN MOVE SLOW:", "1"], ["%MAX DAMAGE AMP:", "20 25 30"], ["%DEATH HEAL (CREEPS):", "2"], ["%MIN DAMAGE AMP:", "1"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The flesh of the recently dead add to the power of Dirge's plague.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/undying_flesh_golem.png", "description": "Undying transforms into a horrifying flesh golem that possesses a Plague Aura. This aura slows all enemy units within 750 range and amplifies the damage they take; the closer to Undying, the more damage and slow. When a plagued unit dies, Undying is healed equal to a percentage of his own maximum health."},
'5448': {"cost": "", "name": "Telekinesis", "scepter_mods": [], "scepter": "", "notes": ["When the unit lands, it isn't affected by the area of effect stun.", "While the target is in the air, Rubick may use a secondary ability to throw the enemy in a targeted direction.", "The farthest you can throw an enemy is 375."], "mana": "125", "cooldown": "22", "details": [["CAST RANGE:", "550 575 600 625"], ["LIFT DURATION:", "1.5 1.75 2.0 2.25"], ["STUN DURATION:", "1.0 1.25 1.5 1.75"], ["MAX THROW DISTANCE:", "375 375 375 375"], ["IMPACT RADIUS:", "325 325 325 325"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["550 575 600 625"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Even the Grandest Magus may use his powers for enjoyment.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_telekinesis.png", "description": "Chooses the location the target will land when Telekinesis finishes."},
'5449': {"cost": "", "name": "Telekinesis Land", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Point Target", "Other (Hidden)", "AOE"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_telekinesis_land.png", "description": "Chooses the location the target will land when Telekinesis finishes."},
'5450': {"cost": "", "name": "Fade Bolt", "scepter_mods": [], "scepter": "", "notes": [], "mana": "120 130 140 150", "cooldown": "16 14 12 10", "details": [["CREEP DAMAGE REDUCTION:", "10 13 15 17"], ["DEBUFF DURATION:", "10.0 10.0 10.0 10.0"], ["DAMAGE:", "80 160 240 320"], ["%JUMP REDUCTION:", "8"], ["HERO DAMAGE REDUCTION:", "20 25 30 35"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800 800 800 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Rubick's favorite spell for dispatching would-be assassins is a rather simple conjuration.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_fade_bolt.png", "description": "Rubick creates a powerful stream of arcane energy that travels between enemy units, dealing damage and reducing their attack damage. Each jump deals less damage."},
'5451': {"cost": "", "name": "Null Field", "scepter_mods": [], "scepter": "", "notes": ["Stacks multiplicatively with other spell resistance sources."], "mana": "", "cooldown": "30", "details": [["RADIUS:", "1200"], ["%MAGIC RESISTANCE:", "10 14 18 22"], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "Not every magus can be a Grand Magus...", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_null_field.png", "description": "Rubick's mastery of the arcane creates an aura that nullifies nearby enemy senses or increases his own. Can be toggled offensively or defensively to reduce enemy magic resistance or increase allied magic resistance."},
'5452': {"cost": "", "name": "Spell Steal", "scepter_mods": [["SCEPTER COOLDOWN:", "2"]], "scepter": "Decreases cooldown, increases cast range and upgrades the spell to the Scepter level.", "notes": ["Cannot steal item abilities."], "mana": "25 25 25", "cooldown": "20.0 18.0 16.0", "details": [["DURATION:", "180.0 240.0 300.0"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000 1000 1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "...but even their lesser magics can be a source of much utility.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_spell_steal.png", "description": "Rubick studies the trace magical essence of one enemy hero, learning the secrets of the last spell the hero cast. Rubick can use this spell as his own for several minutes or until he dies.<br><br>Upgradable by Aghanim's Scepter."},
'5453': {"cost": "", "name": "Stolen Spell", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_empty1.png", "description": "Spells acquired with Spell Steal will replace this slot."},
'5454': {"cost": "", "name": "Stolen Spell", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/rubick_empty2.png", "description": "Spells acquired with Spell Steal will replace this slot."},
'5455': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5456': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5457': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5458': {"cost": "", "name": "Thunder Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "130 130 130 130", "cooldown": "12 11 10 9", "details": [["STRIKE DAMAGE:", "40 60 80 100"], ["STRIKES:", "4 4 4 4"], ["STRIKE INTERVAL:", "2.0 2.0 2.0 2.0"], ["RADIUS:", "240 240 240 240"], ["CAST POINT:", ["0.05 0.05 0.05 0.05"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800 800 800 800"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Disruptor's charged coils occasionally overload, and a singed armor plate or tuft of fur is the enemy's result.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/disruptor_thunder_strike.png", "description": "Repeatedly strikes the targeted unit with lightning. Each strike damages nearby enemy units in a small radius. Provides vision of its target."},
'5459': {"cost": "", "name": "Glimpse", "scepter_mods": [], "scepter": "", "notes": ["The travel time is a function of the distance the target will travel."], "mana": "100", "cooldown": "60.0 46.0 32.0 18.0", "details": [["CAST RANGE:", "600 1000 1400 1800"], ["CAST POINT:", ["0.05 0.05 0.05 0.05"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 1000 1400 1800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Playing with electricity can have unexpected results.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/disruptor_glimpse.png", "description": "Teleports the target hero back to where it was 4 seconds ago. Instantly kills illusions."},
'5460': {"cost": "", "name": "Kinetic Field", "scepter_mods": [], "scepter": "", "notes": ["Spell Immune units can travel through the field."], "mana": "70 70 70 70", "cooldown": "13 12 11 10", "details": [["RADIUS:", "340"], ["DURATION:", "2.6 3.2 3.8 4.4"], ["FORMATION DELAY:", "1.2 1.2 1.2 1.2"], ["CAST POINT:", ["0.05 0.05 0.05 0.05"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900 900 900 900"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "The stryder is immune to the gale-force winds that will consume its adversaries.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/disruptor_kinetic_field.png", "description": "After a short formation time, creates a circular barrier of kinetic energy that enemies can't pass."},
'5461': {"cost": "", "name": "Static Storm", "scepter_mods": [["SCEPTER PULSES:", "28"], ["SCEPTER DURATION:", "7.0"]], "scepter": "Mutes items and increases duration.", "notes": [], "mana": "125 175 225", "cooldown": "90 80 70", "details": [["PULSES:", "20"], ["MAX DAMAGE PER SECOND:", "200 250 300"], ["DURATION:", "5.0"], ["RADIUS:", "450"], ["CAST POINT:", ["0.05 0.05 0.05 0.05"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["800 800 800 800"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "A summer squall in Druud is a hardship that only an Oglodi can survive.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/disruptor_static_storm.png", "description": "Creates a damaging static storm that also silences all enemy units in the area for the duration. The damage starts off weak, but increases in power over the duration.<br><br>Upgradable by Aghanim's Scepter."},
'5462': {"cost": "", "name": "Impale", "scepter_mods": [], "scepter": "", "notes": ["Impale cannot be blocked by Linken's Sphere.", "The spikes move at 1600 units per second, over 700 range."], "mana": "95 115 135 155", "cooldown": "14.0", "details": [["STUN DURATION:", "1.6 2.0 2.4 2.8"], ["IMPALE DAMAGE:", "80 140 200 260"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)"]]], "lore": "All zealot scarabs possess intimate knowledge of underground pathways, using them to their advantage.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_impale.png", "description": "Rock spikes burst from the earth along a straight path. Enemy units are hurled into the air, then are stunned and take damage when they fall."},
'5463': {"cost": "", "name": "Mana Burn", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "28.0 20.0 12.0 4.0", "details": [["INTELLIGENCE MULTIPLIER:", "3.5 4 4.5 5"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600 600 600 600"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "The tome in Ultimyr describes one scarab with the ability eat away at the mind of lesser beings.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_mana_burn.png", "description": "Destroys the target hero's mana equal to a multiplier of its Intelligence, and deals damage equal to the mana burned."},
'5464': {"cost": "", "name": "Spiked Carapace", "scepter_mods": [], "scepter": "", "notes": ["Spiked Carapace will only trigger on damage from other player controlled units.", "The damage is calculated after all reductions."], "mana": "40 40 40 40", "cooldown": "25 20 15 10", "details": [["REFLECT DURATION:", "2.25"], ["STUN DURATION:", "0.6 1.2 1.8 2.4"], ["%DAMAGE REFLECTED:", "100"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "While their carapace is relatively thin, it's guarded by a retractable field of razor-sharp spikes.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_spiked_carapace.png", "description": "When activated while above ground, Spiked Carapace reflects and negates damage dealt to Nyx Assassin (max once from each source), as well as stunning the source of the damage. Activating Spiked Carapace will not break Vendetta invisibility.<br><br>While Burrowed, Spiked Carapace instantly stuns nearby enemies when cast."},
'5465': {"cost": "", "name": "Vendetta", "scepter_mods": [], "scepter": "", "notes": ["Has a 0 second fadetime.", "If a spell is used to break the invisibility, or the invisibility expires, the bonus damage is lost."], "mana": "160 210 260", "cooldown": "70.0 60.0 50.0", "details": [["%MOVEMENT SPEED:", "16 18 20"], ["BONUS DAMAGE:", "250 400 550"], ["DURATION:", "40 50 60"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Doesnt Cancel Channeling"]]], "lore": "The scarab kills for the glory of his queen.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_vendetta.png", "description": "Allows Nyx Assassin to become invisible and gain a speed bonus. If Nyx Assassin attacks to break the invisibility, massive bonus damage is dealt with the attack."},
'5466': {"cost": "", "name": "Unrefined Fireblast", "scepter_mods": [], "scepter": "", "notes": [], "mana": "400", "cooldown": "6", "details": [["FIREBLAST DAMAGE:", "275"], ["STUN DURATION:", "1.5"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["475"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The 'who-casts-spell-first' argument between himself is solved simply by both casting at once.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ogre_magi_unrefined_fireblast.png", "description": "Blasts an enemy unit with a wave of fire, dealing damage and stunning the target. Its mana cost is 60% of Ogre Magi's current mana."},
'5467': {"cost": "", "name": "Mirror Image", "scepter_mods": [], "scepter": "", "notes": ["Naga Siren is invulnerable for 0.3 seconds when casting, allowing her to dodge stuns and damage.", "Upon casting, most effects are removed from Naga Siren."], "mana": "70 80 90 100", "cooldown": "40.0 40.0 40.0 40.0", "details": [["%IMAGE DAMAGE:", "25 30 35 40"], ["IMAGE DURATION:", "30.0 30.0 30.0 30.0"], ["IMAGE COUNT:", "3 3 3 3"], ["%IMAGE DAMAGE TAKEN:", "550 500 450 400"], ["CAST POINT:", ["0.65"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Slithice, while being strong in her own right, is notoriously hard to track down.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/naga_siren_mirror_image.png", "description": "Creates multiple images of Naga Siren under her control.<br><br>DISPEL TYPE: Basic Dispel"},
'5468': {"cost": "", "name": "Ensnare", "scepter_mods": [], "scepter": "", "notes": ["Works on Spell Immune units."], "mana": "70 80 90 100", "cooldown": "12", "details": [["DURATION:", "2.0 3.0 4.0 5.0"], ["CAST POINT:", ["0.6"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["650 650 650 650"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The only way to escape the onslaught of a Slithereen is to never oppose one in the first place.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/naga_siren_ensnare.png", "description": "Interrupts the target and traps them in place, preventing movement or blinking."},
'5469': {"cost": "", "name": "Rip Tide", "scepter_mods": [], "scepter": "", "notes": ["Naga's illusions will also cast Rip Tide, but enemies in multiple areas of effect will only be hit once."], "mana": "80 90 100 110", "cooldown": "10.0", "details": [["DURATION:", "8.0 8.0 8.0 8.0"], ["ARMOR REDUCTION:", "-2 -3 -4 -5"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["120 160 200 240"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "A torrent from the Deep Ones crushes the defenses of the Siren's enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/naga_siren_rip_tide.png", "description": "The Naga Siren and her images hit all nearby units with a damaging wave of water that lowers armor for 8 seconds."},
'5470': {"cost": "", "name": "Song of the Siren", "scepter_mods": [["%SCEPTER HEALTH REGEN:", "10"]], "scepter": "Song of the Siren regenerates all nearby allies for 10% of their health per second.", "notes": ["Doesn't affect Spell Immune units.", "Units affected by Song of the Siren are invulnerable and cannot take damage from any source.", "The area of the song follows Naga, so if she moves far enough away from affected units, they will wake up."], "mana": "100 150 200", "cooldown": "160.0 120.0 80.0", "details": [["RADIUS:", "1000 1200 1400"], ["DURATION:", "7.0 7.0 7.0"], ["CAST POINT:", ["1.0"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000 1200 1400"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Slithice's powerful voice enchants leagues of opponents, while calling her Slithereen kin in a time of need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/naga_siren_song_of_the_siren.png", "description": "Release enemy units from your song so they can be targeted again."},
'5471': {"cost": "", "name": "Illuminate", "scepter_mods": [], "scepter": "", "notes": ["Gives increasing vision over the channeling time.", "Damages mechanical units."], "mana": "150 160 170 180", "cooldown": "10.0 10.0 10.0 10.0", "details": [["DAMAGE PER SECOND CHANNELED:", "100.0 100.0 100.0 100.0"], ["MAX CHANNEL TIME:", "2.0 3.0 4.0 5.0"], ["RANGE:", "1550"], ["WIDTH:", "375"], ["TOTAL DAMAGE:", "200 300 400 500"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1800"]], ["BEHAVIOR:", ["Point Target", "Channeled"]]], "lore": "Ezalor's hidden light reveals itself in marvelous fashion.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_illuminate.png", "description": "Release the channel early."},
'5472': {"cost": "", "name": "Mana Leak", "scepter_mods": [], "scepter": "", "notes": ["If the target travels over 300 distance in less than 0.1 second (by using blink skills, for example), Mana Leak will not decrease its mana for that distance."], "mana": "160", "cooldown": "16 14 12 10", "details": [["STUN DURATION:", "1.5 2.0 2.5 3.0"], ["LEAK DURATION:", "4.0 5.0 6.0 7.0"], ["%MANA LEAK PERCENT:", "5.0"], ["CAST RANGE:", "400 500 600 700"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["400 500 600 700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Ezalor disrupts Primordial harmony, draining magical energy from those with poor constitution.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_mana_leak.png", "description": "Weakens an enemy's magical essence, causing them to lose mana as they move. If the enemy loses all of its mana, it will be stunned."},
'5473': {"cost": "", "name": "Chakra Magic", "scepter_mods": [], "scepter": "", "notes": [], "mana": "25 35 45 55", "cooldown": "17 16 15 14", "details": [["MANA RESTORE:", "75 150 225 300"], ["COOLDOWN REDUCTION DURATION:", "15"], ["ALLY COOLDOWN REDUCTION:", "3 4 5 6"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["900 900 900 900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "In the same vein, Ezalor bestows his harmony among others.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_chakra_magic.png", "description": "Restores mana to the target unit, increases its mana capacity, and reduces the cooldown of the next spell they cast."},
'5474': {"cost": "", "name": "Spirit Form", "scepter_mods": [], "scepter": "Permanent Spirit Form. During daytime, grants unobstructed vision, and allows Illuminate to heal allies for the same amount as its damage values.", "notes": ["Damages mechanical units.", "Gives increasing vision over the channeling time."], "mana": "100 100 100", "cooldown": "80.0 70.0 60.0", "details": [["DURATION:", "40.0 40.0 40.0"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "In a flash of light, Ezalor reveals his true nature.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_spirit_form.png", "description": "Ezalor temporarily turns his body luminescent, gaining various abilities. Illuminate is now channeled by a separate spirit, and gains the Blinding Light and Recall abilities.<br><br>Upgradable by Aghanim's Scepter."},
'5475': {"cost": "", "name": "Recall", "scepter_mods": [], "scepter": "", "notes": ["Recall will interrupt channeling spells.", "If Keeper of the Light dies, the spell effect is interrupted.", "Can be cast through the minimap, choosing the nearest friendly hero.", "You can disable help to prevent Keeper from casting this spell on you."], "mana": "100 100 100", "cooldown": "15", "details": [["TELEPORT DELAY:", "5.0 4.0 3.0"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Channeled", "Targets Units", "No Target", "Casting Stops Attack", "Not Learnable", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Walk towards the light.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_recall.png", "description": "After a short delay, teleports the targeted friendly hero to your location. If the targeted friendly hero takes player based damage during this time, the ability is interrupted."},
'5476': {"cost": "", "name": "Blinding Light", "scepter_mods": [], "scepter": "", "notes": ["Does not interrupt channeling.", "Causes knockback of 250 range over 0.4 seconds, centered on the middle of the target area. Upon landing, units will destroy trees in a 150 radius."], "mana": "50 50 50", "cooldown": "20 16 12", "details": [["%MISS CHANCE:", "80 80 80"], ["KNOCKBACK DISTANCE:", "525"], ["DURATION:", "4.0 5.0 6.0"], ["RADIUS:", "675 675 675"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900 900 900"]], ["BEHAVIOR:", ["AOE", "Point Target", "Not Learnable", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "The Primordial light turns the tides of battle in favor of Ezalor and his allies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_blinding_light.png", "description": "A blinding light flashes over the targeted area, knocking back and blinding the units in the area, causing them to miss attacks."},
'5477': {"cost": "", "name": "Release Illuminate", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Other (Hidden)", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_illuminate_end.png", "description": "Release the channel early."},
'5478': {"cost": "", "name": "Song of the Siren End", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0 1.0 1.0", "details": [["CAST POINT:", ["0 0 0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/naga_siren_song_of_the_siren_cancel.png", "description": "Release enemy units from your song so they can be targeted again."},
'5479': {"cost": "", "name": "Illuminate", "scepter_mods": [], "scepter": "Allows Illuminate to heal allies for 100% of its damage values during daytime.", "notes": ["Damages mechanical units.", "Gives increasing vision over the channeling time."], "mana": "150 160 170 180", "cooldown": "10.0 10.0 10.0 10.0", "details": [["MAX CHANNEL TIME:", "2.0 3.0 4.0 5.0"], ["RANGE:", "1550"], ["DAMAGE PER SECOND CHANNELED:", "100.0 100.0 100.0 100.0"], ["WIDTH:", "375"], ["TOTAL DAMAGE:", "200 300 400 500"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1800"]], ["BEHAVIOR:", ["Point Target", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Ezalor's hidden light reveals itself in marvelous fashion.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_spirit_form_illuminate.png", "description": "Release the channel early."},
'5480': {"cost": "", "name": "Grave Chill", "scepter_mods": [], "scepter": "", "notes": ["The two buffs can be removed separately by purge.", "The speed gained is independent of the speed lost on the target."], "mana": "90", "cooldown": "16.0 14.0 12.0 10.0", "details": [["%MOVE SPEED DRAIN:", "32 32 32 32"], ["ATTACK SPEED DRAIN:", "64 64 64 64"], ["DURATION:", "3.25 4.5 5.75 7.0"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The warmth of the sun is never felt in the dark cold of the Narrow Maze.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/visage_grave_chill.png", "description": "Visage drains the movement and attack speed of the targeted unit, gaining it for itself."},
'5481': {"cost": "", "name": "Soul Assumption", "scepter_mods": [], "scepter": "", "notes": ["Soul Assumption cannot be disjointed.", "Charges are only gained for damage greater than 2 and less than 3000 that is dealt by a player or Roshan. Self-damage or Soul Assumption damage isn't counted."], "mana": "170 160 150 140", "cooldown": "4.0 4.0 4.0 4.0", "details": [["CHARGE DURATION:", "6.0"], ["GATHER DAMAGE THRESHOLD:", "110"], ["DAMAGE PER CHARGE:", "65"], ["MAX CHARGES:", "3 4 5 6"], ["GATHER DAMAGE RADIUS:", "1375"], ["BASE DAMAGE:", "20"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900 900 900 900"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The collected souls of the dead reach out to bring another into their fold.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/visage_soul_assumption.png", "description": "Visage gathers charges of soul essence each time nearby heroes take more than 110 damage. When the essence is released, it deals base damage as well as damage for each gathered soul charge."},
'5482': {"cost": "", "name": "Gravekeeper's Cloak", "scepter_mods": [], "scepter": "", "notes": ["Each time Visage receives damage greater than 50 that was not self-inflicted and was from a player owned source, a layer is removed."], "mana": "", "cooldown": "", "details": [["LAYER RECOVERY TIME:", "6 5 4 3"], ["MAX LAYERS:", "4"], ["%DAMAGE REDUCTION PER LAYER:", "8 12 16 20"], ["MINIMUM DAMAGE:", "50"], ["BEHAVIOR:", ["Passive"]]], "lore": "Visage's tough scales share equal properties of ghost and stone, making it nearly impervious to blade and magical assault.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/visage_gravekeepers_cloak.png", "description": "Visage generates a layered barrier that protects him from damage. If he receives damage from a player, one layer is removed, and takes time to recover."},
'5483': {"cost": "", "name": "Summon Familiars", "scepter_mods": [], "scepter": "Summons 3 familiars.", "notes": ["Casting Summon Familiars will replace any existing Familiars."], "mana": "150 150 150", "cooldown": "130", "details": [["FAMILIAR SPEED:", "430"], ["HP:", "400 550 700"], ["FAMILIAR ATTACK DAMAGE:", "30 45 60"], ["CAST POINT:", ["0 0 0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Guardians of the Narrow Maze, Necro'lic's Familiars stand watch over his domain.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/visage_summon_familiars.png", "description": "Conjures two blind Familiars to fight for Visage. Familiars possess the Stone Form ability, that allows them to turn into stone, stunning enemies upon landing. While in Stone Form, Familiars are invulnerable, and rapidly regenerate their health. Familiars grant high bounty when killed.<br><br>Upgradable by Aghanim's Scepter."},
'5484': {"cost": "", "name": "Stone Form", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "14.0", "details": [["STUN DURATION:", "1.0 1.25 1.5"], ["STONE DURATION:", "6.0"], ["DAMAGE:", "60 100 140"], ["STUN RADIUS:", "350"], ["BONUS REGEN:", "150 175 200"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["160"]], ["BEHAVIOR:", ["No Target", "AOE"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/visage_summon_familiars_stone_form.png", "description": "After a short delay, the Familiar turns into stone and smashes into the ground, stunning and damaging all targets in the area. The Familiar becomes invulnerable, and will regain its health very rapidly. After 6.0 seconds, the Familiar will automatically leave Stone Form."},
'5485': {"cost": "", "name": "Tether", "scepter_mods": [], "scepter": "", "notes": ["The tethered unit will heal 50% faster.", "If you try to tether a unit that is 700 distance or further away from Io, he will latch on and pull himself closer to the tethered unit (to a distance of 300)."], "mana": "40 40 40 40", "cooldown": "12.0 12.0 12.0 12.0", "details": [["%ENEMY MOVEMENT SLOW:", "-100"], ["MAX TETHER DISTANCE:", "900 900 900 900"], ["%MOVEMENT SPEED BONUS:", "10 12 14 16"], ["TETHER DURATION:", "14"], ["ENEMY ATTACK SLOW:", "-100"], ["ENEMY SLOW DURATION:", "0.75 1.25 1.75 2.25"], ["DURATION:", ["14"]], ["CAST POINT:", ["0.001 0.001 0.001 0.001"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1800 1800 1800 1800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The benevolent touch of Io brings strength from between the planes.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_tether.png", "description": "Break the link to the tethered unit."},
'5486': {"cost": "", "name": "Spirits", "scepter_mods": [], "scepter": "", "notes": ["Min/Max Range: 100/875."], "mana": "150", "cooldown": "20.0 18.0 16.0 14.0", "details": [["OSCILLATION RADIUS:", "700"], ["EXPLOSION RADIUS:", "300 300 300 300"], ["CREEP DAMAGE:", "8 14 20 26"], ["DURATION:", "19.0 19.0 19.0 19.0"], ["HERO DAMAGE:", "25 50 75 100"], ["DURATION:", ["19.0 19.0 19.0 19.0"]], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Io twists the particles of the universe with its unimaginable capabilities.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_spirits.png", "description": "Summon five particle spirits that dance in a circle around Io. If a particle collides with an enemy hero, it explodes, damaging all enemy units in an area around it. Creeps take minor damage from touching a particle spirit, but do not cause them to explode. When its duration ends, any remaining Spirits explode."},
'5487': {"cost": "", "name": "Overcharge", "scepter_mods": [], "scepter": "", "notes": ["Io's tethered unit will also benefit from the attack speed and reduction, but only Io pays the drain in HP and mana."], "mana": "", "cooldown": "2.0", "details": [["ATTACK SPEED:", "40 50 60 70"], ["%INCOMING DAMAGE REDUCTION:", "-5 -10 -15 -20"], ["%HEALTH/MANA DRAIN:", "6.0"], ["CAST POINT:", ["0 0 0 0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Toggle"]]], "lore": "Drawing on the energy of matter from all worlds, Io begins the unravelling of time.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_overcharge.png", "description": "Io gains bonus attack speed and damage reduction, at the cost of draining a percentage of its current health and mana per second. If Io is Tethered to an ally, that unit also gains the bonuses."},
'5488': {"cost": "", "name": "Relocate", "scepter_mods": [], "scepter": "", "notes": ["Enemies receive a visual indicator in the world and on the minimap of the target location during the cast delay.", "If Io is disabled during the cast delay, Relocate is cancelled.", "If an allied hero is Tethered, that hero will teleported along with you. You can break the tether at any time to prevent that hero from teleporting with you."], "mana": "100 100 100", "cooldown": "120.0 100.0 80.0", "details": [["CAST DELAY:", "2.7 2.35 2.0"], ["RETURN TIME:", "12.0 12.0 12.0"], ["CAST POINT:", ["0 0 0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Io is the embodiment of the mystery of the universe.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_relocate.png", "description": "Teleports Io and any tethered ally to any location. After the spell expires Io and any tethered ally will return to their original location. Double-click to teleport to your team's base fountain."},
'5489': {"cost": "", "name": "Break Tether", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0 1.0 1.0 1.0", "details": [["CAST POINT:", ["0 0 0 0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_tether_break.png", "description": "Break the link to the tethered unit."},
'5490': {"cost": "", "name": "Spirits In", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0 0 0 0"]], ["BEHAVIOR:", ["No Target", "Toggle", "Not Learnable", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_spirits_in.png", "description": "Calls the spirits closer to you. Can be toggled on and off."},
'5491': {"cost": "", "name": "Mana Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["MANA REGEN:", "1.5"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/forest_troll_high_priest_mana_aura.png", "description": "Provides bonus mana regeneration to all nearby allies."},
'5492': {"cost": "", "name": "Go To Secret Shop", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/courier_go_to_secretshop.png", "description": "Sends the courier to your team's secret shop"},
'5493': {"cost": "", "name": "Spirits Out", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0 0 0 0"]], ["BEHAVIOR:", ["No Target", "Toggle", "Not Learnable", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/wisp_spirits_out.png", "description": "Sends the spirits farther away from you. Can be toggled on and off."},
'5494': {"cost": "", "name": "Dark Pact", "scepter_mods": [], "scepter": "", "notes": ["You can't kill yourself with this skill.", "The pulses stop if Slark dies.", "1.5 seconds after cast, a series of 10 pulses separated by 0.1 seconds deal the damage.", "Each pulse also removes debuffs from Slark."], "mana": "55 50 45 40", "cooldown": "9.0 8.0 7.0 6.0", "details": [["RADIUS:", "325"], ["DELAY:", "1.5"], ["DAMAGE:", "75 150 225 300"], ["CAST POINT:", ["0.001 0.001 0.001 0.001"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["325"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Slithereen are capable of quickly regrowing appendages, in case of critical injury, to save their own lives.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slark_dark_pact.png", "description": "After a short delay, Slark sacrifices some of his life blood, purging most negative debuffs and dealing damage to enemy units around him and to himself. Slark only takes 50% of the damage.<br><br>DISPEL TYPE: Strong Dispel"},
'5495': {"cost": "", "name": "Pounce", "scepter_mods": [], "scepter": "", "notes": ["Blinking or teleporting can break the leash.", "Trees will be destroyed around Slark's landing location.", "On cast, Slark leaps forward at a speed of 933.33, stopping when he latches onto an enemy hero or has traveled 700 distance.", "Spell Immune units cannot be leashed."], "mana": "75 75 75 75", "cooldown": "20.0 16.0 12.0 8.0", "details": [["DISTANCE:", "700"], ["LEASH DURATION:", "3.5"], ["LEASH RADIUS:", "325"], ["POUNCE DAMAGE:", "40 80 120 160"], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Disabled By Root"]]], "lore": "Time in the Dark Reef made Slark a dangerous assassin; aggressive and fearless.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slark_pounce.png", "description": "Slark leaps forward, grabbing the first hero he connects with. That unit takes damage and is leashed to Slark, and can only move a limited distance away from Slark's landing position."},
'5496': {"cost": "", "name": "Essence Shift", "scepter_mods": [], "scepter": "", "notes": ["Attributes cannot be dropped below 1.", "Essence Shifted stats are returned to normal on death. The stat return for Slark and for the affected hero are separate."], "mana": "", "cooldown": "", "details": [["ALL ATTRIBUTE LOSS:", "1"], ["AGILITY GAINED:", "3"], ["DURATION:", "15 30 60 120"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "With each strike at his adversaries, Slark's knowledge of their weaknesses improves.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slark_essence_shift.png", "description": "Slark steals the life essence of enemy heroes with his attacks, draining each of their attributes and converting them to bonus Agility."},
'5497': {"cost": "", "name": "Shadow Dance", "scepter_mods": [], "scepter": "Reduces cooldown and causes Shadow Dance active to be an area of effect ability, hiding nearby allied heroes underneath it.", "notes": ["If Slark is damaged by a neutral unit, the passive movement and health regeneration bonuses are lost for 2 seconds.", "The passive movement and health regeneration bonuses have a 0.5 second activation and deactivation delay."], "mana": "120 120 120", "cooldown": "60.0", "details": [["SCEPTER RADIUS:", "325"], ["DURATION:", "4.0"], ["%HEALTH GAINED PER SECOND:", "3 5 7"], ["%BONUS MOVEMENT SPEED:", "30 35 40"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target"]]], "lore": "The hidden Thirteenth is a slippery foe.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/slark_shadow_dance.png", "description": "When used, Slark hides himself in a cloud of shadows, becoming immune to detection. Attacking, casting spells, and using items will not reveal Slark. Passively, when not visible to the enemy team, Slark gains bonus movement speed and health regeneration.<br><br>Upgradable by Aghanim's Scepter."},
'55': {"cost": "2000", "name": "Hyperstone", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "55 Attack Speed"], ["BEHAVIOR:", ["Passive"]]], "lore": "A mystical, carved stone that boosts the fervor of the holder.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/hyperstone.png", "description": ""},
'5500': {"cost": "", "name": "Invisibility", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lycan_summon_wolves_invisibility.png", "description": "Permanently invisible when not attacking."},
'5501': {"cost": "", "name": "Empty", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "", "description": ""},
'5502': {"cost": "", "name": "Empty", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive", "Not Learnable"]]], "lore": "", "icon": "", "description": ""},
'5503': {"cost": "", "name": "Release Illuminate", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Other (Hidden)", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/keeper_of_the_light_spirit_form_illuminate_end.png", "description": "Release the channel early."},
'5504': {"cost": "", "name": "Split Shot", "scepter_mods": [], "scepter": "", "notes": ["Secondary targets will be the closest enemy units excluding the primary target.", "If illusions of Medusa are created while Split Shot is active, they will also have this ability."], "mana": "", "cooldown": "", "details": [["%OUTGOING DAMAGE:", "30 45 60 75"], ["EXTRA TARGETS:", "3"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "All who encounter the cursed Gorgon will feel her rage.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/medusa_split_shot.png", "description": "Medusa magically splits her shot into several arrows. These arrows deal a lower percent of her normal damage.<br><br>The extra targets will not receive other attack effects (such as critical strike)."},
'5505': {"cost": "", "name": "Mystic Snake", "scepter_mods": [], "scepter": "Causes Mystic Snake to turn enemies into stone for 1.0 second, increases by 0.3 seconds per bounce.", "notes": ["Mystic Snake cannot be disjointed."], "mana": "140 150 160 170", "cooldown": "11", "details": [["%DAMAGE INCREASE PER JUMP:", "35"], ["SCEPTER DURATION BOUNCE INCREASE:", "0.3"], ["JUMPS:", "3 4 5 6"], ["DAMAGE:", "80 120 160 200"], ["SCEPTER BASE DURATION:", "1.0"], ["%MANA STEAL:", "11 14 17 20"], ["JUMP RADIUS:", "475 475 475 475"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The Gorgon's curse is her greatest strength.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/medusa_mystic_snake.png", "description": "A mystic snake made of energy jumps from target to target dealing damage and stealing mana. After it reaches its last target, it returns to Medusa to replenish her with mana. The snake deals more damage per jump and steals %snake_mana_steal% of the targets' total mana. Deals Pure damage to units petrified by Stone Gaze.<br><br>Upgradable by Aghanim's Scepter."},
'5506': {"cost": "", "name": "Mana Shield", "scepter_mods": [], "scepter": "", "notes": ["Absorbs damage before any damage reduction takes place, meaning that armor will not reduce the amount of mana needed to absorb damage."], "mana": "", "cooldown": "", "details": [["DAMAGE PER MANA:", "1.6 1.9 2.2 2.5"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Toggle", "Other (Immediate)"]]], "lore": "While Medusa was not gifted with eternal life upon birth, her curse bestowed her with impressive defensive powers.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/medusa_mana_shield.png", "description": "Creates a shield that absorbs 60% of the incoming damage in exchange for Medusa's mana."},
'5507': {"cost": "", "name": "Stone Gaze", "scepter_mods": [], "scepter": "", "notes": ["Affects Spell Immune units.", "Regardless of when a unit receives the Stone Gaze buff while the ability is active on Medusa, it will still receive the full debuff duration."], "mana": "200 200 200", "cooldown": "90", "details": [["STONE DURATION:", "3.0"], ["%SLOW:", "35"], ["%BONUS PHYSICAL DAMAGE:", "50"], ["RADIUS:", "1000 1000 1000"], ["DURATION:", "5 6 7"], ["CAST POINT:", ["0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["1000 1000 1000"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The beauty of Medusa is legendary.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/medusa_stone_gaze.png", "description": "Any enemy units looking at Medusa will have their movement and attack speed slowed. If 2 seconds of total time is accumulated looking at Medusa while Stone Gaze is active, that unit will turn to stone. Petrified units are stunned, have 100% magic damage resistance, and take bonus physical damage. If the petrified unit is an illusion, it is immediately killed."},
'5508': {"cost": "", "name": "Berserker's Rage", "scepter_mods": [], "scepter": "", "notes": ["The bash stun goes through spell immunity.", "Doesn't stack with Skull Basher.", "Manta Style's cooldown time will be based on whether Troll Warlord was in his ranged or melee form when the item was used."], "mana": "", "cooldown": "", "details": [["BASH BONUS DAMAGE:", "20 30 40 50"], ["MELEE BASE ATTACK TIME:", "1.50"], ["%BASH CHANCE:", "10"], ["BONUS MOVE SPEED:", "10 20 30 40"], ["BONUS ARMOR:", "6"], ["BASH STUN DURATION:", "0.8 1.2 1.6 2.0"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["BEHAVIOR:", ["No Target", "Toggle", "Other (Immediate)"]]], "lore": "Like his anger, Troll Warlord's supply of axes is infinite.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/troll_warlord_berserkers_rage.png", "description": "While active, Troll Warlord swaps from using ranged to melee attacks. Melee attacks have a chance to bash, dealing bonus damage and stunning the target. Berserker's Rage also grants additional movement speed, armor, and increased attack speed.<br><br>Whirling Axes has different functionality while Berserker's Rage is active."},
'5509': {"cost": "", "name": "Whirling Axes (Ranged)", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "9", "details": [["%MOVEMENT SLOW:", "40"], ["SLOW DURATION:", "2.5 3 3.5 4"], ["AXE DAMAGE:", "75"], ["CAST POINT:", ["0.2 0.2 0.2 0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Point Target", "Other (Ignore Backswing)"]]], "lore": "Only axes fueled by hate whirl with such a deadly spin.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/troll_warlord_whirling_axes_ranged.png", "description": "Troll hurls a fistful of five axes in a cone shape over 900 range, slowing and damaging enemy units."},
'5510': {"cost": "", "name": "Whirling Axes (Melee)", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "9", "details": [["DAMAGE:", "75 125 175 225"], ["%MISS CHANCE:", "60"], ["RADIUS:", "450.0"], ["BLIND DURATION:", "5"], ["WHIRL DURATION:", "3.0"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Keep your enemies close.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/troll_warlord_whirling_axes_melee.png", "description": "Troll hurls two axes around him in a close range area of effect, damaging enemy units and causing them to miss some attacks."},
'5511': {"cost": "", "name": "Fervor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["MAX STACKS:", "7"], ["ATTACK SPEED PER STACK:", "15 20 25 30"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "If at first you don't succeed, strike, strike again.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/troll_warlord_fervor.png", "description": "With each continuous blow on the same target, Troll gains increased attack speed. If Troll changes targets, the stacks drop to zero."},
'5512': {"cost": "", "name": "Battle Trance", "scepter_mods": [], "scepter": "", "notes": ["Doesn't work on illusions."], "mana": "75 75 75", "cooldown": "35", "details": [["ATTACK SPEED:", "60 120 180"], ["TRANCE DURATION:", "5.0"], ["CAST POINT:", ["0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "An adrenaline rush of pure hatred quickens your blades.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/troll_warlord_battle_trance.png", "description": "Troll's presence on the battlefield increases the attack speed of himself and all allied heroes."},
'5514': {"cost": "", "name": "Hoof Stomp", "scepter_mods": [], "scepter": "", "notes": [], "mana": "130", "cooldown": "13.0 13.0 13.0 13.0", "details": [["STUN DURATION", "2.0 2.25 2.5 2.75"], ["RADIUS:", "315"], ["STOMP DAMAGE:", "100 150 200 250"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "When the mighty hoof of the Warrunner touches soil, the tremors are felt far and wide.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_hoof_stomp.png", "description": "Slams the ground, stunning and damaging nearby enemy units."},
'5515': {"cost": "", "name": "Double Edge", "scepter_mods": [], "scepter": "", "notes": ["Double Edge deals magic type damage to both the targets and himself."], "mana": "0 0 0 0", "cooldown": "5.0", "details": [["DAMAGE:", "175 250 325 400"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150 150 150 150"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "In the spurs of combat, Bradwarden's vicious strikes sometimes cause self-inflicted collateral damage.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_double_edge.png", "description": "Centaur strikes a mighty blow at melee range, damaging both himself and a small area around the target. Centaur cannot die from Double Edge."},
'5516': {"cost": "", "name": "Return", "scepter_mods": [], "scepter": "", "notes": ["Return deals damage to towers.", "Return triggers when the attack hits."], "mana": "", "cooldown": "", "details": [["DAMAGE:", "16 18 20 22"], ["%STRENGTH BONUS DAMAGE:", "30 45 60 75"], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Bradwarden has no need to parry his opponent's attacks; his armor-like hide does it for him.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_return.png", "description": "Centaur counters all attacks, dealing damage back to the attacker based on a percentage of Centaur's strength."},
'5517': {"cost": "", "name": "Stampede", "scepter_mods": [["%SCEPTER DAMAGE REDUCTION:", "40"]], "scepter": "Heroes affected by Stampede take reduced damage, and are able to run through obstructions, including trees and up cliffs.", "notes": ["Doesn't affect Spell Immune units."], "mana": "100", "cooldown": "90.0 75.0 60.0", "details": [["STRENGTH MULTIPLIER DAMAGE:", "1.0 2.0 3.0"], ["STAMPEDE DURATION:", "4.0"], ["TRAMPLE RADIUS:", "105"], ["STOP DURATION:", "1.8"], ["DISPELLABLE:", ["No"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The great belt of Omexe, which labels Bradwarden as the greatest warrior of his kind, incites his fellow gladiators to follow him into barbarous combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/centaur_stampede.png", "description": "Centaur leads all allies into a vicious charge causing them to move through units at max speed and stop any enemy units they trample. Trampled enemies take damage based on Centaur Warrunner's strength. Each enemy can be trampled once.<br><br>Upgradable by Aghanim's Scepter."},
'5518': {"cost": "", "name": "Shockwave", "scepter_mods": [], "scepter": "Increases travel distance and speed, and causes Shockwave to come back. Return wave slows units, but deals half damage to creeps.", "notes": [], "mana": "90 90 90 90", "cooldown": "10.0 9.0 8.0 7.0", "details": [["SCEPTER SLOW DURATION:", "2"], ["DAMAGE:", "75 150 225 300"], ["%SCEPTER MOVEMENT SLOW:", "60"], ["DURATION:", ["0.6875 0.6875 0.6875 0.6875"]], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1150"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "Mt. Joerlak was a somewhat unstable mass, and Magnus has learned to channel its reverberations.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/magnataur_shockwave.png", "description": "Magnus sends out a wave of force, damaging enemy units in a line.<br><br>Upgradable by Aghanim's Scepter."},
'5519': {"cost": "", "name": "Empower", "scepter_mods": [], "scepter": "", "notes": ["Ranged units cannot Cleave.", "Cleave damage goes through spell immunity.", "Cleave damage is reduced by armor type but not by armor value.", "The bonus damage is based only on base damage and damage from primary attributes."], "mana": "30 50 70 90", "cooldown": "8", "details": [["DURATION:", "40.0 40.0 40.0 40.0"], ["%CLEAVE DAMAGE:", "20 30 40 50"], ["%BONUS DAMAGE:", "20 30 40 50"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "With a deep bellow, Magnus displays his true power.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/magnataur_empower.png", "description": "Gives an allied unit bonus damage and cleave on attack."},
'5520': {"cost": "", "name": "Skewer", "scepter_mods": [], "scepter": "", "notes": ["Doesn't affect Spell Immune units."], "mana": "80 80 80 80", "cooldown": "25", "details": [["DAMAGE:", "70 140 210 280"], ["SPEED:", "950"], ["SLOW DURATION:", "2.5 2.75 3 3.25"], ["DISTANCE:", "900 1000 1100 1200"], ["%SLOW:", "25 30 35 40"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Point Target", "Disabled By Root"]]], "lore": "Magnoceros horns are valuable in direct proportion to their danger to prospective merchants.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/magnataur_skewer.png", "description": "Magnus rushes forward, goring enemy units on his massive tusk. Heroes hit on the way will be dragged to the destination, then damaged and slowed."},
'5521': {"cost": "", "name": "Reverse Polarity", "scepter_mods": [], "scepter": "", "notes": ["Disable and pull work through spell immunity."], "mana": "200 250 300", "cooldown": "120", "details": [["DAMAGE:", "50 125 200"], ["STUN DURATION:", "2.25 3.0 3.75"], ["PULL RADIUS:", "410"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["410 410 410"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Magnus fights with the fury of the erupting Mt. Joerlak.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/magnataur_reverse_polarity.png", "description": "Magnus changes properties of matter, sucking all nearby enemies in front of him and stunning them with a powerful slam and dealing damage."},
'5522': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "200 200 200 200", "cooldown": "24.0 24.0 24.0 24.0", "details": [["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600 600 600 600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/chen_test_of_faith_teleport.png", "description": "Teleports an allied unit back to the base. Creeps are teleported instantly, while Heroes have a delay before teleporting. If cast on Chen, all units controlled by Chen through Holy Persuasion will be teleported to him after a delay."},
'5523': {"cost": "", "name": "Nightmare End", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "No Target", "Toggle", "Usable While Disabled"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bane_nightmare_end.png", "description": "Ends all ongoing Nightmares."},
'5524': {"cost": "", "name": "Whirling Death", "scepter_mods": [], "scepter": "", "notes": [], "mana": "70", "cooldown": "6", "details": [["DAMAGE:", "100 150 200 250"], ["STAT LOSS DURATION:", "14.0"], ["RADIUS:", "300"], ["%STAT LOSS PERCENT:", "15"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Other (Ignore Backswing)"]]], "lore": "In the case that Rizzrack gets surrounded by the the vines and plants of his nightmares, he has an immediate chainsaw defense.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_whirling_death.png", "description": "Timbersaw whirls extremely sharp edges, damaging enemies and destroying trees around him in an area. If an enemy hero is affected, it loses some of its primary attribute for a short duration. Whirling Death will deal Pure damage if a tree is cut down in the process."},
'5525': {"cost": "", "name": "Timber Chain", "scepter_mods": [], "scepter": "", "notes": [], "mana": "60 70 80 90", "cooldown": "4", "details": [["SPEED:", "1600 2000 2400 2800"], ["LATCH RANGE:", "850 1050 1250 1450"], ["DAMAGE:", "100 140 180 220"], ["RADIUS:", "225 225 225 225"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["850 1050 1250 1450"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "You never know when you might need to escape from malevolent saplings.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_timber_chain.png", "description": "Timbersaw fires a chain that embeds itself in the first tree it hits, pulling him towards it. Any enemy in the path takes damage."},
'5526': {"cost": "", "name": "Reactive Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["MAX STACKS:", "5 10 15 20"], ["BONUS ARMOR:", "1 1.2 1.4 1.6"], ["BONUS HP REGEN:", "1 1.15 1.3 1.45"], ["STACK DURATION:", "10 13 16 19"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The saw-suit is equipped to react to the slightest touch with fortified defenses.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_reactive_armor.png", "description": "Each time Timbersaw is attacked, he gains increased health regen and armor."},
'5527': {"cost": "", "name": "Chakram", "scepter_mods": [], "scepter": "Grants a second Chakram.", "notes": ["The Chakram will return if Timbersaw runs out of mana or moves over 2000 distance away.", "The Chakram will return if Timbersaw runs out of mana or moves over 2000 distance away."], "mana": "100 150 200", "cooldown": "8.0 8.0 8.0", "details": [["MANA COST PER SECOND:", "20.0 25.0 30.0"], ["PASS DAMAGE:", "100 140 180"], ["%SLOW:", "5"], ["RADIUS:", "200.0"], ["DAMAGE PER SECOND:", "50 75 100"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1200 1200 1200"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "The ultimate in anti-flora weaponry.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_chakram.png", "description": "Fires a secondary saw blade at the target location where it will spin in place, dealing damage in an area around it. Additionally, for each 5% of health missing, enemies caught in the saw blade move more slowly. The blade deals damage and cuts down trees in its path when fired and retracted. While active the ability costs mana, and you lose the ability to attack."},
'5528': {"cost": "", "name": "Return Chakram", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0 0.0 0.0", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling", "Not Learnable", "Other (Hidden)", "Casting Stops Attack", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_return_chakram.png", "description": "Returns the Chakram to Timbersaw."},
'5529': {"cost": "", "name": "Greevil Missile", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "6.0", "details": [["DURATION:", "1.0"], ["DAMAGE:", "35 45 55"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_magic_missile.png", "description": "BLUE ESSENCE<br>Fires a greevilish magic missile at an enemy unit, stunning and dealing damage."},
'5530': {"cost": "", "name": "Greevil Snap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "10", "details": [["INITIAL DAMAGE:", "25 30 35"], ["BONUS DAMAGE:", "10 15 20"], ["FREEZE DURATION:", "0.4"], ["FREEZE COOLDOWN:", "0.7"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Not Learnable"]]], "lore": "", "icon": "", "description": "The greevil draws the heat from an enemy, chilling them to their very core. The enemy will take damage and be briefly frozen. Further damage taken in this state will freeze the enemy again, dealing bonus damage."},
'5531': {"cost": "", "name": "Degreevilfy", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "10.0", "details": [["DURATION:", "1.0 1.5 2.0"], ["%BONUS SPELL DAMAGE:", "-15 -20 -25"], ["%SLOW:", "-50"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_decrepify.png", "description": "RED ESSENCE<br>A powerful banishing spell that slows a unit and renders it unable to attack or be attacked. Afflicted units take extra magic damage."},
'5532': {"cost": "", "name": "Greevolic Edict", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "20", "details": [["RADIUS:", "500"], ["EXPLOSIONS:", "20"], ["DURATION:", "5.0"], ["DAMAGE:", "8 13 18"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient", "Building"]], ["DAMAGE TYPE:", ["Physical"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "", "description": "Saturates the area around the Greevil with magical explosions that deal mixed damage to enemy units and structures. The fewer units available to attack, the more damage those units will take."},
'5533': {"cost": "", "name": "Greevildict", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "30.0", "details": [["RADIUS:", "150"], ["BONUS DAMAGE:", "8 9 11"], ["DURATION:", "10.0"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_maledict.png", "description": "PURPLE ESSENCE<br>Curses all enemy Heroes in an area, causing them to take damage every 4 seconds and adding bonus damage for every 100 HP lost since the curse began."},
'5534': {"cost": "", "name": "Shadow Greevil Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "12.0", "details": [["STRIKE DAMAGE:", "20 25 30"], ["DURATION:", "6.0"], ["%SLOW:", "-40"], ["DAMAGE PER TICK:", "10 15 20"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "PURPLE ESSENCE<br>Hurls a poisoned dagger which deals large initial damage, and then deals damage over time. The poisoned unit has its movement speed slowed. An instance of damage is dealt every 3 seconds."},
'5535': {"cost": "", "name": "Greevilaguna Blade", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "30", "details": [["DAMAGE:", "80 105 130"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_laguna_blade.png", "description": "RED EGG<br>Fires off a bolt of lightning at a single enemy unit, dealing massive damage."},
'5536': {"cost": "", "name": "Greevilmare", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "15.0", "details": [["DURATION:", "7.0"], ["DURATION:", ["6.0"]], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE:", ["20"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "", "icon": "", "description": "Puts the target enemy or friendly Hero to sleep and deals damage per second. Sleeping units are awakened when attacked, but the Greevilmare passes to the attacking unit. The nightmared unit instantly wakes up if it takes damage."},
'5537': {"cost": "", "name": "Greevil Brain Sap", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "14.0", "details": [["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["DAMAGE:", ["200"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Feasts on the vital energies of an enemy unit, dealing damage and gaining health equal to the damage dealt."},
'5538': {"cost": "", "name": "Cold Greevil Feet", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "9.0", "details": [["STUN DURATION:", "3.5"], ["BREAK DISTANCE:", "740"], ["DAMAGE PER TICK:", "75"], ["DURATION:", ["4.0"]], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Places a frozen hex on an enemy unit that deals damage over time, but can be dispelled by moving away from the initial cast point. If the enemy unit doesn't move outside of the given range, it will be stunned and frozen in place after 4 seconds."},
'5539': {"cost": "", "name": "Ice Greevortex", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "12.0", "details": [["RADIUS:", "275"], ["%DECREASE RESIST:", "-25"], ["%SLOW:", "-30"], ["DURATION:", ["6.0"]], ["CAST POINT:", ["0.3"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "", "icon": "", "description": "Creates a vortex of icy energy that slows movement speed and increases magic damage done in its range. Lasts 12 seconds."},
'5540': {"cost": "", "name": "Greevilshock", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "6.0", "details": [["RADIUS:", "385"], ["%SLOW:", "-55"], ["DURATION:", ["4.0"]], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["240"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "", "description": "Slams the earth, causing a powerful shock to damage and slow all enemy units in a nearby area for 4 seconds."},
'5541': {"cost": "", "name": "Greevilpower", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "10.0", "details": [["BONUS SPEED:", "300"], ["ATTACKS:", "5"], ["DURATION:", ["15.0"]], ["CAST POINT:", ["0.3"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "", "description": "Gains increased attack speed for a number of subsequent attacks."},
'5542': {"cost": "", "name": "Greevil Shell", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "10", "details": [["RADIUS:", "250"], ["DAMAGE PER SECOND:", "90"], ["DURATION:", "20"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Surrounds the target unit with a bristling shield that damages enemy units in an area around it."},
'5543': {"cost": "", "name": "Greevil Surge", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "9.0", "details": [["DURATION:", "7.5"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Charges a target friendly unit with power, giving it a brief burst of maximum movement speed."},
'5544': {"cost": "", "name": "Greevilication", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "10.0", "details": [["RADIUS:", "225"], ["HEAL/DAMAGE:", "360"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Instantly heals a friendly unit and damages all nearby enemy units."},
'5545': {"cost": "", "name": "Degreevil Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%SLOW:", "-28"], ["RADIUS:", "315"], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "", "icon": "", "description": "Greatly degenerates the movement and attack capabilities of enemy units that stray too near."},
'5546': {"cost": "", "name": "Greevil Nova", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "40.0", "details": [["DAMAGE:", "11 14 17"], ["DURATION:", "10.0"], ["RADIUS:", "830"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_poison_nova.png", "description": "PURPLE EGG<br>A spreading ring of poison that does damage over time to enemy units. Poison Nova's effect cannot bring units below 1 HP."},
'5547': {"cost": "", "name": "Greevice Wall", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "20", "details": [["DURATION:", "3.0 4.0 5.0"], ["DAMAGE PER SECOND:", "13 18 23"], ["%SLOW:", "-40"], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_ice_wall.png", "description": "BLUE ESSENCE<br>Generates a wall of solid ice directly in front of the Greevil. The bitter cold emanating from it greatly slows nearby enemies and deals damage each second."},
'5548': {"cost": "", "name": "Viscous Nasal Goo", "scepter_mods": [["SCEPTER RADIUS:", "750"]], "scepter": "Viscous Nasal Goo becomes a no target area of effect ability, applying to all enemies within range.", "notes": [], "mana": "25", "cooldown": "1.5 1.5 1.5 1.5", "details": [["STACK LIMIT:", "4"], ["%MOVE SLOW PER STACK:", "3 6 9 12"], ["%BASE MOVEMENT SLOW:", "20"], ["ARMOR LOSS:", "1 1.4 1.8 2.2"], ["DURATION:", "5.0"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "Having caught a cold while stuck in the snow, Bristleback turns it to his advantage.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bristleback_viscous_nasal_goo.png", "description": "Covers a target in snot, causing it to have reduced armor and movement speed. Multiple casts stack and refresh the duration.<br><br>Upgradable by Aghanim's Scepter."},
'5549': {"cost": "", "name": "Quill Spray", "scepter_mods": [], "scepter": "", "notes": ["Quill Spray damage is not reduced by damage block abilities."], "mana": "35 35 35 35", "cooldown": "3.0 3.0 3.0 3.0", "details": [["QUILL STACK DAMAGE:", "30.0 32.0 34.0 36.0"], ["QUILL BASE DAMAGE:", "20.0 40.0 60.0 80.0"], ["MAX DAMAGE:", "550.0"], ["STACK DURATION:", "14.0"], ["RADIUS:", "700"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["650"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "An enforcer's honor can be a prickly thing. So can his quills.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bristleback_quill_spray.png", "description": "Sprays enemy units with quills dealing damage in an area of effect around Bristleback. Deals bonus damage for every time a unit was hit by Quill Spray in the last 14 seconds."},
'5550': {"cost": "", "name": "Bristleback", "scepter_mods": [], "scepter": "", "notes": ["Bristleback's rear is considered to be within 70 degrees from the back.", "Bristleback's side is considered to be within 110 degrees from the back."], "mana": "", "cooldown": "", "details": [["%BACK DAMAGE REDUCTION:", "16 24 32 40"], ["DAMAGE THRESHOLD:", "210"], ["%SIDE DAMAGE REDUCTION:", "8 12 16 20"], ["BEHAVIOR:", ["Passive"]]], "lore": "Turning his back to a fight might be just the thing.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bristleback_bristleback.png", "description": "Bristleback takes less damage if hit on the sides or rear. If Bristleback takes 210 damage from the rear, he releases a Quill Spray of the current level."},
'5551': {"cost": "", "name": "Warpath", "scepter_mods": [], "scepter": "", "notes": ["Items will not trigger Warpath.", "Bristleback's illusions will receive the bonuses."], "mana": "", "cooldown": "", "details": [["MAX STACKS:", "5 7 9"], ["DAMAGE PER STACK:", "18 24 30"], ["STACK DURATION:", "14.0"], ["%MOVEMENT PER STACK:", "3 4 5"], ["DURATION:", ["10.0 10.0 10.0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Passive"]]], "lore": "'Temper, temper,' his mum always chided. But in a fight, a temper can come in handy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/bristleback_warpath.png", "description": "Bristleback works himself up into a fury every time he casts a spell, increasing his movement speed and damage."},
'5552': {"cost": "", "name": "Greevil Bonds", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "20.0", "details": [["ENEMIES BOUND:", "4"], ["%DAMAGE SHARED:", "6 9 12"], ["DURATION:", "10.0"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_fatal_bonds.png", "description": "ORANGE ESSENCE<br>Binds several enemy units together, causing a portion of the damage dealt to one of them to be felt by the others."},
'5553': {"cost": "", "name": "Greevil Fury", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "25.0", "details": [["RADIUS:", "250"], ["DPS:", "28 33 38"], ["DURATION:", "5.0"], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_blade_fury.png", "description": "ORANGE ESSENCE<br>Causes a bladestorm of destructive force around the Greevil, rendering him immune to magic and dealing damage to nearby enemy units."},
'5554': {"cost": "", "name": "Phantom Greevil Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "8", "details": [["MAX ATTACKS:", "3"], ["BONUS ATTACK SPEED:", "100"], ["RANGE:", "1000 1000 1000 1000"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["1000 1000 1000 1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_phantom_strike.png", "description": "YELLOW ESSENCE<br>Teleports to a unit, friendly or enemy, and grants bonus attack speed while attacking if it's an enemy unit."},
'5555': {"cost": "", "name": "Greevil Lock", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE:", "7 11 15"], ["%CHANCE:", "10 15 20"], ["DURATION:", "1.0"], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_time_lock.png", "description": "YELLOW ESSENCE<br>Adds the chance for an attack to lock an enemy unit in time, stunning it and dealing bonus damage."},
'5556': {"cost": "", "name": "Greevil Wave", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "10", "details": [["DAMAGE RADIUS:", "185"], ["TARGETS:", "4"], ["DAMAGE:", "28 33 38"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_shadow_wave.png", "description": "GREEN ESSENCE<br>Shadow Wave heals several allies, which in turn cause damage equal to their healing in a small area around them. The Greevil is always healed by Shadow Wave, and it does not count toward the number of targets."},
'5557': {"cost": "", "name": "Leech Greevil", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "16.0", "details": [["%MOVEMENT SLOW:", "-24"], ["RADIUS:", "500"], ["DURATION:", "3.0"], ["DAMAGE PER PULSE:", "12 15 18"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["350"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_leech_seed.png", "description": "GREEN ESSENCE<br>Plants a life-sapping seed in an enemy unit, draining its health, while simultaneously slowing it. The seed heals friendly units around it equal to the amount drained. Pulses 4 times."},
'5558': {"cost": "", "name": "Greevil Slam", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "30.0", "details": [["RADIUS:", "500"], ["BASE DAMAGE:", "30 40 50"], ["ECHO DAMAGE:", "14 17 20"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_echo_slam.png", "description": "ORANGE EGG<br>Shockwaves travel through the ground, damaging enemy units. Each enemy hit causes an echo to damage nearby units."},
'5559': {"cost": "", "name": "Greevil's Attendants", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "20.0", "details": [["WISPS:", "4 5 6"], ["HEAL PER SECOND:", "7 8 9"], ["RADIUS:", "275"], ["DURATION:", "5.0"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_natures_attendants.png", "description": "GREEN EGG<br>A cloud of wisps heals Enchantress and any friendly units nearby. Lasts 10 seconds."},
'5560': {"cost": "", "name": "Greevilust", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "20", "details": [["ATTACK SPEED:", "18 23 28"], ["%MOVE SPEED:", "12 14 16"], ["DURATION:", "20"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_bloodlust.png", "description": "YELLOW EGG<br>Incites a frenzy in a friendly unit, increasing its movement speed and attack speed."},
'5561': {"cost": "", "name": "Greevilication", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "15.0", "details": [["RADIUS:", "225"], ["HEAL/DAMAGE:", "50 55 60"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Pure"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["400 500 600 700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_purification.png", "description": "WHITE EGG<br>Instantly heals a friendly unit and damages all nearby enemy units."},
'5562': {"cost": "", "name": "Greevil Golem", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "40.0", "details": [["%HEALTH REGEN:", "1"], ["RADIUS:", "700"], ["BONUS DAMAGE:", "12"], ["ARMOR BONUS:", "3"], ["DURATION:", "8.0"], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_flesh_golem.png", "description": "BLACK EGG<br>The Greevil transforms into a horrifying greevil golem, increasing his health regen, armor, and attack damage. Nearby units have their armor reduced."},
'5563': {"cost": "", "name": "Greevil Hook", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "13.0", "details": [["DISTANCE:", "1300"], ["DAMAGE:", "50"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Pure"]], ["CAST RANGE:", ["700 900 1100 1300"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_hook.png", "description": "PURPLE ESSENCE<br>Launches a hook at a unit or location. The hook will snag the first unit it encounters, dragging the unit back to the Greevil and dealing damage if it is an enemy."},
'5564': {"cost": "", "name": "Greevil Rot", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE:", "20"], ["RADIUS:", "250"], ["%SLOW:", "-20"], ["CAST POINT:", ["0 0 0 0"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target", "Toggle", "Doesnt Cancel Channeling"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_rot.png", "description": "RED ESSENCE<br>A toxic cloud that deals intense damage and slows movement--harming not only enemy units but the Greevil itself."},
'5565': {"cost": "", "name": "Ice Shards", "scepter_mods": [], "scepter": "", "notes": ["Creates an impassable barrier."], "mana": "100 105 110 115", "cooldown": "19.0 16.0 13.0 10.0", "details": [["SHARD DAMAGE:", "60 120 180 240"], ["RADIUS:", "200"], ["SHARD DURATION:", "7.0"], ["CAST RANGE:", "1800"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["2000"]], ["BEHAVIOR:", ["Directional Cast", "Point Target", "Other (Ignore Backswing)"]]], "lore": "In the frozen tundra near the Barrier, after the last sun of autumn has set, ice can form with alarming speed.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk_ice_shards.png", "description": "Stop."},
'5566': {"cost": "", "name": "Snowball", "scepter_mods": [], "scepter": "", "notes": ["The snowball travels at 675 movement speed.", "Each Meepo clone added to the snowball will add its own bonus damage and speed.", "Doesn't carry illusions, but will carry Meepo clones and other units that Tusk controls.", "Allies can click on a snowball to add themselves to it.", "The snowball destroys trees."], "mana": "75 75 75 75", "cooldown": "21 20 19 18", "details": [["BASE DAMAGE:", "80 120 160 200"], ["LAUNCH TIME:", "3.0"], ["BONUS DAMAGE PER ALLY:", "20 30 40 50"], ["SNOWBALL SPEED:", "675"], ["STUN DURATION:", "0.5 0.75 1.0 1.25"], ["GATHER RADIUS:", "100"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1250"]], ["BEHAVIOR:", ["Targets Units", "Disabled By Root"]]], "lore": "Tales are still told of the wild feat that ended the grand brawl at White Fields.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk_snowball.png", "description": "Tusk begins rolling into a snowball. Allies within a 350 radius can also be added to the snowball by right-clicking on them, even while the snowball is moving. Once launched, any enemies caught in the snowball's path will be stunned and take damage. Each allied Hero in the snowball will add to its damage."},
'5567': {"cost": "", "name": "Frozen Sigil", "scepter_mods": [], "scepter": "", "notes": ["If no order is given, the Sigil will follow Tusk.", "The Sigil has unobstructed movement, has a 310 movement speed, requires 3/3/4/4 hero attacks to destroy and 12/12/16/16 creep attacks to destroy, provides 400/400 vision, and gives a 90/100/110/120 gold bounty.", "Heroes deal 1 damage to the sigil, while non-hero units deal 0.25 damage."], "mana": "75 75 75 75", "cooldown": "50.0 50.0 50.0 50.0", "details": [["DURATION:", "30.0"], ["ATTACK SLOW:", "30 40 50 60"], ["AURA RADIUS:", "600"], ["%MOVEMENT SLOW:", "10 15 20 25"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "The chill of home!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk_frozen_sigil.png", "description": "Tusk summons a Frozen Sigil by calling upon the deepest cold of winter. The Sigil creates a snowstorm which slows all enemy units within 600 range."},
'5568': {"cost": "", "name": "Walrus PUNCH!", "scepter_mods": [], "scepter": "", "notes": ["Works fully on Spell Immune units."], "mana": "50 75 100", "cooldown": "36 24 12", "details": [["%CRITICAL DAMAGE:", "350"], ["%MOVEMENT SLOW:", "40"], ["AIR TIME:", "1.0"], ["SLOW DURATION:", "2.0 3.0 4.0"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Autocast", "Attack Modifier"]]], "lore": "It never matters who throws the first punch, only who throws the last.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk_walrus_punch.png", "description": "Tusk connects with his mighty Walrus Punch, a critical strike so powerful it launches its victim into the air. The victim is slowed upon landing."},
'5569': {"cost": "", "name": "Greevil Hole", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "40.0", "details": [["MIN DAMAGE:", "10 13 16"], ["DURATION:", "3.0"], ["MAX DAMAGE:", "30 35 40"], ["RADIUS:", "200"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["250"]], ["BEHAVIOR:", ["AOE", "Point Target", "Channeled"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/greevil_black_hole.png", "description": "BLUE EGG<br>CHANNELED - Summons a vortex that sucks in nearby enemy units. Enemies affected by Greevil Hole cannot move, attack, or cast spells. The closer units get to the center, the more damage is dealt."},
'5570': {"cost": "", "name": "Greeviling Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "14.0", "details": [["DURATION:", "10.0"], ["BLOCK:", "40"], ["REGEN:", "7"], ["DAMAGE INSTANCES:", "6"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "", "description": "Infuses the target with a protective coating which grants bonus regeneration. Also grants physical damage block from damage from heroes. Dispels when a number of damage instances are taken."},
'5571': {"cost": "", "name": "Greevil Overgrowth", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "20", "details": [["DURATION:", "3.0"], ["RADIUS:", "625"], ["CAST POINT:", ["0.5 0.5 0.5 0.5"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "", "description": "Summons an overgrowth of vines and branches that prevent afflicted enemies from moving, blinking, going invisible, or attacking."},
'5572': {"cost": "", "name": "Greevil Dragon Breath", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "9", "details": [["DURATION:", ["0.6875 0.6875 0.6875 0.6875"]], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["170"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "Point Target"]]], "lore": "", "icon": "", "description": "Channels the breath of a dragon, sending out a wave of fire that scorches every enemy in its path."},
'5573': {"cost": "", "name": "Greevil Light Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "11", "details": [["DURATION:", ["1.6 1.6 1.6 1.6"]], ["CAST POINT:", ["0.45 0.45 0.45 0.45"]], ["DAMAGE TYPE:", ["Magical"]], ["DAMAGE:", ["150"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "", "icon": "", "description": "Summons a column of flames that damages and stuns enemies."},
'5574': {"cost": "", "name": "Venomous Greevil Spit", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "12.0", "details": [["STRIKE DAMAGE:", "50"], ["DAMAGE PER TICK:", "30"], ["%SLOW:", "-50"], ["DURATION:", "10"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "", "icon": "", "description": "Launches a ball of venom in a line, poisoning enemy units so that they take both initial damage and damage over time, as well as suffering slowed movement. Venomous Gale deals damage every 2 seconds over its duration."},
'5575': {"cost": "", "name": "Greevil Ward", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "10", "details": [["DURATION:", "30.0"], ["WARD DAMAGE:", "19"], ["WARD HP:", "200"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Physical"]], ["CAST RANGE:", ["450"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "", "icon": "", "description": "Summons a ward to attack enemy units and structures. The ward is immune to magic."},
'5576': {"cost": "", "name": "Greevil Sight", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": "There is nothing the googly greevils eyes can't see!"},
'5577': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5578': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5579': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5581': {"cost": "", "name": "Arcane Bolt", "scepter_mods": [], "scepter": "", "notes": ["The projectile moves very slowly (500 ms), providing 325 vision around it. Upon impact, it will reveal the target area for 3.34 seconds.", "Arcane Bolt cannot be disjointed."], "mana": "70 70 70 70", "cooldown": "5.0 4.0 3.0 2.0", "details": [["BASE DAMAGE:", "60 80 100 120"], ["INT DAMAGE MULTIPLIER:", "1.6"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["875"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Within the Ghastly Eyrie's endless intrigue, only the clever and calm can hope to survive.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skywrath_mage_arcane_bolt.png", "description": "Skywrath Mage launches a slow-moving bolt of arcane magic, dealing damage to an enemy unit based on Skywrath Mage's intelligence."},
'5582': {"cost": "", "name": "Concussive Shot", "scepter_mods": [], "scepter": "", "notes": ["Damages creeps around the impact area.", "Does not work when no heroes are in range or heroes are in fog.", "Provides 400 vision around the projectile, and reveals the target area for 3.34 seconds upon impact."], "mana": "95", "cooldown": "18.0 16.0 14.0 12.0", "details": [["DAMAGE RADIUS:", "250"], ["SHOT RANGE:", "1600"], ["%SLOW:", "30 35 40 45"], ["DAMAGE:", "70 140 210 280"], ["SLOW DURATION:", "4.0"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1600"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Those who serve the court of the Ghastly Eyrie are ever locked in covert war. One must always know where danger lurks nearest.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skywrath_mage_concussive_shot.png", "description": "Skywrath Mage sets off a long range shot that hits the closest hero within a long range. Upon impact, it deals damage and slows in an area of effect."},
'5583': {"cost": "", "name": "Ancient Seal", "scepter_mods": [], "scepter": "", "notes": ["The magic damage resistance reduction doesn't affect creeps."], "mana": "80 90 100 110", "cooldown": "14", "details": [["DURATION:", "3.0 4.0 5.0 6.0"], ["%INCREASED MAGIC DAMAGE:", "-30 -35 -40 -45"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A holy incantation, whosoever finds themselves touched by Avilliva's sigil must suffer in penitent silence.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skywrath_mage_ancient_seal.png", "description": "Skywrath Mage seals the targeted unit with an ancient rune, silencing it and causing it to take additional damage from spells."},
'5584': {"cost": "", "name": "Mystic Flare", "scepter_mods": [], "scepter": "Anytime Skywrath Mage casts an ability, a different random nearby target will be hit with the same ability. Heroes will take priority.", "notes": ["Spell immune enemies do not count toward the damage distribution.", "Mystic Flare only affects Heroes; it does not damage illusions or creep heroes."], "mana": "300 550 800", "cooldown": "60.0 40.0 20.0", "details": [["DURATION:", "2.4"], ["RADIUS:", "170"], ["DAMAGE:", "600 1000 1400"], ["CAST POINT:", ["0.1 0.1 0.1 0.1"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "Only the most practiced of Skywrath sorcerers could hope to shape the skies into such a storm.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/skywrath_mage_mystic_flare.png", "description": "Skywrath Mage uses his ultimate magical ability to conjure a precise and violent mystical field that lays waste to his adversaries. Deals massive damage distributed evenly among any Heroes in the area over 2.4 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5585': {"cost": "", "name": "Mist Coil", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50 60 70 80", "cooldown": "4.5", "details": [["DAMAGE/HEAL:", "100 150 200 250"], ["SELF DAMAGE:", "75 100 125 150"], ["CAST POINT:", ["0.25"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "A mysterious vapor from the Font of Avernus now infuses the breath of Abaddon, who releases it at will.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abaddon_death_coil.png", "description": "Abaddon releases a coil of deathly mist that can damage an enemy unit or heal a friendly unit at the cost of some of Abaddon's health."},
'5586': {"cost": "", "name": "Aphotic Shield", "scepter_mods": [], "scepter": "", "notes": [], "mana": "115", "cooldown": "12.0 10.0 8.0 6.0", "details": [["DURATION:", "15.0"], ["BURST RADIUS:", "675"], ["MAX DAMAGE ABSORBED:", "110 140 170 200"], ["CAST POINT:", ["0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The powers of the black mist rise to absorb attacks like the black mist absorbs light.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abaddon_aphotic_shield.png", "description": "Summons dark energies around an ally unit, creating a shield that absorbs a set amount of damage before expiring. When the shield is destroyed it will burst and deal damage equal to the amount it could absorb to an area around it. Removes certain types of negative buffs and stuns on cast.<br><br>DISPEL TYPE: Strong Dispel"},
'5587': {"cost": "", "name": "Curse of Avernus", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%MOVEMENT SLOW:", "8 12 16 20"], ["ATTACK SLOW:", "8 12 16 20"], ["DEBUFF DURATION:", "2.5"], ["BUFF DURATION:", "4.5"], ["ATTACK SPEED BONUS:", "10 20 30 40"], ["%MOVE SPEED BONUS:", "15"], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "The curse that slows an enemy, speeds an ally.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abaddon_frostmourne.png", "description": "Abaddon strikes an enemy with chilling curse on each attack, causing all units who attack the slowed enemy to gain increased movement speed, along with faster attack speed, for a limited time."},
'5588': {"cost": "", "name": "Borrowed Time", "scepter_mods": [["SCEPTER DURATION:", "5.0 6.0 7.0"], ["SCEPTER REDIRECT RANGE:", "900"], ["%SCEPTER DAMAGE REDIRECT:", "50"]], "scepter": "Increases duration. While Borrowed Time is active, a percentage of all damage taken by allied Heroes in a radius will be redirected to Abaddon.", "notes": ["Borrowed Time can be activated while Abaddon is disabled, but not while silenced."], "mana": "0 0 0", "cooldown": "60.0 50.0 40.0", "details": [["DURATION:", "4.0 5.0 6.0"], ["HEALTH THRESHOLD:", "400"], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Usable While Disabled"]]], "lore": "The most unnatural of all the gifts of the Font of Avernus, this power defies mortal understanding. What should hurt, instead heals; and what should kill gives strength anew.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abaddon_borrowed_time.png", "description": "When activated, all damage dealt to you will heal instead of harm. Most negative buffs will also be removed. If the ability is not on cooldown, it will automatically activate if your health falls below 400.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Strong Dispel"},
'5589': {"cost": "", "name": "Echo Stomp", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "14 13 12 11", "details": [["SLEEP DURATION:", "2.0 3.0 4.0 5.0"], ["CAST TIME:", "1.7"], ["RADIUS:", "500"], ["STOMP DAMAGE:", "70 100 130 160"], ["WAKEUP DAMAGE THRESHOLD:", "50 100 150 200"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["Strong Dispels"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["No Target", "Channeled"]]], "lore": "The force of creation still echoes in the stomp of the Titan.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_echo_stomp.png", "description": "Elder Titan and his Astral Spirit both stomp the ground, damaging and knocking nearby enemy units unconscious around their locations. The Elder Titan stomp deals physical damage, while the Spirit stomp deals magical damage."},
'5590': {"cost": "", "name": "Echo Stomp", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0 0 0 0", "cooldown": "14 13 12 11", "details": [["STOMP DAMAGE:", "70 100 130 160"], ["RADIUS:", "500"], ["CAST TIME:", "1.7"], ["SLEEP DURATION:", "2.0 3.0 4.0 5.0"], ["CAST POINT:", ["0.0"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["No Target", "Channeled"]]], "lore": "The force of creation still echoes in the stomp of the Titan.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_echo_stomp_spirit.png", "description": "Elder Titan and his Astral Spirit both stomp the ground, damaging and knocking nearby enemy units unconscious around their locations. The Elder Titan stomp deals physical damage, while the Spirit stomp deals magical damage. Unconscious enemies will wake if they take damage."},
'5591': {"cost": "", "name": "Astral Spirit", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80 90 100 110", "cooldown": "16.0", "details": [["BUFF DURATION:", "9.0"], ["RADIUS:", "275"], ["%BONUS SPEED(HEROES):", "5"], ["DAMAGE:", "60 90 120 150"], ["%BONUS SPEED(CREEPS):", "1"], ["BONUS DAMAGE(CREEPS):", "6 9 12 15"], ["BONUS DAMAGE(HEROES):", "15 30 45 60"], ["DURATION:", "8.0"], ["CAST POINT:", ["0.4 0.4 0.4 0.4"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "Like the four fundamentals, Elder Titan exists across all planes at once and can draw other aspects of himself to assist in times of need.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_ancestral_spirit.png", "description": "Elder Titan sends forth his Astral Spirit, damaging any units it passes through. When the spirit rejoins the Titan, it grants bonus damage and movement speed for each unit it damaged.<br><br>The Astral Spirit possesses the Echo Stomp, Return Spirit, and Natural Order abilities."},
'5592': {"cost": "", "name": "Return Astral Spirit", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0 0.0 0.0", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Not Learnable", "Casting Stops Attack", "Other (Hidden)", "Other (Ignore Backswing)", "Doesnt Cancel Channeling"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_return_spirit.png", "description": "Returns the Astral Spirit to Elder Titan."},
'5593': {"cost": "", "name": "Natural Order", "scepter_mods": [], "scepter": "", "notes": ["When the Astral Spirit isn't present, both the armor and magic armor reduction is centered around Elder Titan.", "When the Astral Spirit isn't present, both the armor and magic armor reduction is centered around Elder Titan."], "mana": "", "cooldown": "", "details": [["RADIUS:", "350"], ["%BASE RESIST REDUCTION:", "40 60 80 100"], ["%BASE ARMOR REDUCTION:", "40 60 80 100"], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "As it was at the beginning, Elder Titan makes it so again.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_natural_order.png", "description": "Reduces all elements to their basic levels, removing base armor and magic damage resistance from nearby enemy units. The armor reduction is centered around the hero, while the magic armor reduction is centered around Astral Spirit."},
'5594': {"cost": "", "name": "Earth Splitter", "scepter_mods": [["SCEPTER SLOW/DISARM DURATION:", "4.0 5.0 6.0"]], "scepter": "Increases slow duration, and units pulled in by Earth Splitter are also disarmed.", "notes": [], "mana": "125 175 225", "cooldown": "100.0 100.0 100.0", "details": [["%MAX HP AS DAMAGE:", "30 40 50"], ["EXPLODE DELAY:", "3.14"], ["CRACK LENGTH:", "2400"], ["%MOVEMENT SLOW:", "30 40 50"], ["SLOW DURATION:", "3.0 4.0 5.0"], ["CRACK WIDTH:", "315"], ["CAST POINT:", ["0.4 0.4 0.4"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["2400"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "That which he created, the titan tears asunder.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_earth_splitter.png", "description": "Sends forth a jagged crack in front of Elder Titan. After 3 seconds, the crack implodes, slowing movement while dealing damage to each enemy based on their maximum life. Half of the damage dealt is Magical damage, while the other half is Physical damage.<br><br>Upgradable by Aghanim's Scepter."},
'5595': {"cost": "", "name": "Overwhelming Odds", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 110 120 130", "cooldown": "15", "details": [["SPEED DURATION:", "7.0"], ["DAMAGE PER CREEP:", "14 16 18 20"], ["%ILLUSION DAMAGE:", "25"], ["%BONUS SPEED (HEROES):", "9"], ["%BONUS SPEED (CREEPS):", "3"], ["DAMAGE PER HERO:", "30 60 90 120"], ["RADIUS:", "330"], ["BASE DAMAGE:", "40 60 80 100"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["AOE", "Point Target", "Other (Ignore Backswing)"]]], "lore": "The archers of Stonehall are ready at Tresdin's command.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/legion_commander_overwhelming_odds.png", "description": "Turns the enemies' numbers against them, dealing damage and granting you bonus movement speed per unit or per hero. Deals bonus damage to illusions and summoned units as a percent of their current health."},
'5596': {"cost": "", "name": "Press The Attack", "scepter_mods": [], "scepter": "", "notes": [], "mana": "110", "cooldown": "16.0 15.0 14.0 13.0", "details": [["HP REGEN:", "30 35 40 45"], ["DURATION:", "5.0"], ["BONUS ATTACK SPEED:", "65 90 115 140"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "The rallying horn of the Bronze Legion is able to inspire any heart.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/legion_commander_press_the_attack.png", "description": "Removes debuffs and disables from the target friendly unit, and grants bonus attack speed and health regen for a short time.<br><br>DISPEL TYPE: Strong Dispel"},
'5597': {"cost": "", "name": "Moment of Courage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "2.3 1.8 1.3 0.8", "details": [["%COUNTERATTACK CHANCE:", "25"], ["%LIFESTEAL:", "55 65 75 85"], ["BEHAVIOR:", ["Passive"]]], "lore": "Tresdin knows that an enemy's most vulnerable moment often follows their fiercest stroke.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/legion_commander_moment_of_courage.png", "description": "When attacked, Legion Commander has a chance to immediately counterattack with bonus lifesteal."},
'5598': {"cost": "", "name": "Duel", "scepter_mods": [["SCEPTER DURATION:", "6 7 8"]], "scepter": "Increases Duel duration, makes Legion Commander Spell Immune in Duel, and makes Legion Commander and her opponent only take damage from each other.", "notes": ["Duels will end if the units are pushed 2000 units apart."], "mana": "75 75 75", "cooldown": "50.0 50.0 50.0", "details": [["BONUS DAMAGE:", "10 14 18"], ["DURATION:", "4.0 4.75 5.5"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "To face a soldier of Stonehall in single combat is a challenge few can resist.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/legion_commander_duel.png", "description": "Legion Commander and the target enemy hero are forced to attack each other for a short duration. Neither hero can use items or abilities. If either hero dies during the duration, the hero winning the Duel gains permanent bonus damage.<br><br>Upgradable by Aghanim's Scepter."},
'5599': {"cost": "", "name": "Proximity Mines", "scepter_mods": [], "scepter": "", "notes": ["Mines will not be triggered by some flying units.", "Grants 30 gold if destroyed by an enemy hero.", "Mines last until they explode or are destroyed.", "Mines are triggered by invisible units.", "Cannot be placed within active AoE of another Proximity Mine.", "Proximity Mines do not block neutral creep camps from spawning."], "mana": "110 130 150 170", "cooldown": "12", "details": [["DAMAGE:", "200 400 600 800"], ["ACTIVATION DELAY:", "1.75"], ["RADIUS:", "400"], ["%BUILDING DAMAGE:", "25"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["100"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "The bane of Toterin!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_land_mines.png", "description": "Plant an invisible mine that cannot be detected by True Sight, but is visible if an enemy is within the active 400 AoE of the mine. Mines detonate if an enemy is standing within the active AoE for 1.6 seconds. The explosion deals full damage in the blast radius, and deals 25 damage to buildings."},
'56': {"cost": "850", "name": "Ring of Health", "scepter_mods": [], "scepter": "", "notes": ["Ring of Health is shareable."], "mana": "", "cooldown": "", "details": [["+", "5 HP Regeneration"], ["BEHAVIOR:", ["Passive"]]], "lore": "A shiny ring found beneath a fat halfling's corpse.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/ring_of_health.png", "description": ""},
'5600': {"cost": "", "name": "Stasis Trap", "scepter_mods": [], "scepter": "", "notes": ["Stasis Traps do not block neutral creep camps from spawning.", "Stasis Traps destroy all other Stasis Traps in their area of effect when they detonate.", "Stasis Traps are not triggered by invisible units."], "mana": "80 110 140 160", "cooldown": "20.0 16.0 13.0 10.0", "details": [["TRAP FADE TIME:", "2.0"], ["ROOT RADIUS:", "600"], ["TRIGGER RADIUS:", "400"], ["ROOT DURATION:", "2 3 4 5"], ["CAST POINT:", ["1.0"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Point Target", "Other (Normal When Stolen)", "AOE"]]], "lore": "The scourge of Trapper Town!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_stasis_trap.png", "description": "Plant an invisible trap that roots nearby enemy units instantly when triggered."},
'5601': {"cost": "", "name": "Blast Off!", "scepter_mods": [], "scepter": "", "notes": ["This ability destroys trees.", "Techies still earn experience for suicide kills made with this ability.", "Dying from this ability counts as suicide, and does not award gold or experience to the enemy team."], "mana": "100 125 150 175", "cooldown": "35", "details": [["%MAX HP SELF DAMAGE:", "50"], ["RADIUS:", "400"], ["SILENCE DURATION:", "4 5 6 7"], ["FULL DAMAGE:", "300 400 500 600"], ["CAST POINT:", ["1.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Normal When Stolen)"]]], "lore": "Where we going?", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_suicide.png", "description": "Techies hurtle themselves into the enemy's midst, detonating charges upon impact which deal massive area of effect damage and silence enemies. Upon landing, the assault deals Techies damage equal to 50% of their max health."},
'5602': {"cost": "", "name": "Remote Mines", "scepter_mods": [["SCEPTER CAST RANGE:", "700"], ["SCEPTER DAMAGE:", "450 600 750"]], "scepter": "Increases damage and cast range.", "notes": ["Grants 10 gold if destroyed by an enemy hero."], "mana": "200 240 300", "cooldown": "10.0 10.0 10.0", "details": [["EXPLOSION RADIUS:", "425"], ["FADE TIME:", "2.0"], ["DAMAGE:", "300 450 600"], ["CAST RANGE:", "500"], ["MINE DURATION:", "600.0"], ["CAST POINT:", ["1.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Point Target", "Other (Normal When Stolen)"]]], "lore": "Kablooey!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_remote_mines.png", "description": "Plant an invisible explosive that will only detonate after a brief delay when triggered. Does not damage buildings.<br><br>Upgradable by Aghanim's Scepter."},
'5603': {"cost": "", "name": "Searing Chains", "scepter_mods": [], "scepter": "", "notes": ["Does not affect Spell Immune or invisible units.", "Targets are chosen randomly around Xin.", "Interrupts channeling spells."], "mana": "110", "cooldown": "14.0 12.0 10.0 8.0", "details": [["DURATION:", "1.0 2.0 2.0 3.0"], ["TOTAL DAMAGE:", "80 120 240 300"], ["DAMAGE PER SECOND:", "80 60 120 100"], ["RADIUS:", "400"], ["UNIT COUNT:", "2"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Xin's harshest lessons often employed the use of red-hot chains.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ember_spirit_searing_chains.png", "description": "Ember Spirit unleashes fiery bolas that wrap around nearby enemies, anchoring them in place and dealing damage each second."},
'5604': {"cost": "", "name": "Sleight of Fist", "scepter_mods": [], "scepter": "", "notes": ["Abilities and items can be used while Sleight of Fist is active.", "Any attack modifier that Xin has (such as Critical Strike, Bash, Cleave, or Orb effects) will be applied normally on these attacks.", "A regular attack is done to each target every 0.2 seconds.", "Targets are determined when the spell is cast."], "mana": "50", "cooldown": "30.0 22.0 14.0 6.0", "details": [["%CREEP DAMAGE PENALTY:", "-50"], ["BONUS HERO DAMAGE:", "30 60 90 120"], ["ATTACK INTERVAL:", "0.2"], ["RADIUS:", "250 350 450 550"], ["CAST POINT:", ["0"]], ["DAMAGE TYPE:", ["Physical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "The studied warrior must whip and weave through its enemies, burning each without pause.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ember_spirit_sleight_of_fist.png", "description": "Ember Spirit dashes around with blazing speed, attacking all enemies in the targeted area of effect, then returning to his start location. Deals bonus damage to heroes, and less damage to creeps."},
'5605': {"cost": "", "name": "Flame Guard", "scepter_mods": [], "scepter": "", "notes": ["Magic damage reduction is calculated before any reductions."], "mana": "80 90 100 110", "cooldown": "35.0", "details": [["RADIUS:", "400"], ["MAGIC ABSORB:", "50 200 350 500"], ["DAMAGE PER SECOND:", "30 40 50 60"], ["DURATION:", "8.0 12.0 16.0 20.0"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["400"]], ["BEHAVIOR:", ["No Target"]]], "lore": "An enemy should never be allowed to approach without difficulty.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ember_spirit_flame_guard.png", "description": "Ember Spirit surrounds himself with a ring of fire that consumes incoming magic damage, leaving him unharmed. Flame Guard deals damage per second in an area around Ember Spirit while Flame Guard is active. If the shield is broken, the damage is also lost."},
'5606': {"cost": "", "name": "Fire Remnant", "scepter_mods": [], "scepter": "", "notes": ["Fire Remnants move to where you targeted them at 2.5x your speed.", "Starts with 3 charges (maximum)."], "mana": "0", "cooldown": "0.0", "details": [["MAX CHARGES:", "3"], ["DAMAGE:", "100 200 300"], ["CHARGE RESTORE TIME:", "35.0"], ["DURATION:", "45.0"], ["RADIUS:", "450"], ["CAST POINT:", ["0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1500"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "By the spirit's power are Xin's teachings spread anew.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ember_spirit_fire_remnant.png", "description": "Ember Spirit generates Fire Remnant charges every %charge_restore_time% seconds, with a max of 3 charges. Releasing a charge sends a Fire Remnant that runs to the target location at 2.5x Ember Spirit's speed. Using Activate Fire Remnant, Ember Spirit can dash out to his Remnants, exploding them for area of effect damage. The targeted Remnant will be arrived at last."},
'5607': {"cost": "", "name": "Activate Fire Remnant", "scepter_mods": [], "scepter": "", "notes": [], "mana": "150", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["99999"]], ["BEHAVIOR:", ["Point Target", "Not Learnable", "Disabled By Root", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "With blazing speed does a spirit fly!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/ember_spirit_activate_fire_remnant.png", "description": "Select the Fire Remnant to arrive at."},
'5608': {"cost": "", "name": "Boulder Smash", "scepter_mods": [], "scepter": "", "notes": ["Boulder Smash's cooldown is not reset if it fails to knock back a unit or Remnant.", "Stun is only applied if the initial target is a Stone Remnant."], "mana": "100", "cooldown": "22.0 18.0 14.0 10.0", "details": [["TRAVEL SPEED:", "900"], ["DISTANCE (REMNANT):", "2000.0"], ["DAMAGE:", "50 100 150 200"], ["REMNANT SMASH RADIUS:", "200"], ["STUN DURATION:", "0.5 1.0 1.5 2.0"], ["DISTANCE:", "500.0 600.0 700.0 800.0"], ["CAST POINT:", ["0.01"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Point Target", "Targets Units", "Other (Ignore Backswing)"]]], "lore": "It is with the power of a mountain that Earth Spirit strikes his enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_boulder_smash.png", "description": "Earth Spirit smashes the target enemy or ally, sending them in the direction he is facing. If Earth Spirit targets an area, he will smash the nearest Stone Remnant in a 200 radius. The travelling unit or Remnant damages all enemy units it hits. If an enemy is hit by a Stone Remnant, they are also stunned. Stone Remnants travel further than other units."},
'5609': {"cost": "", "name": "Rolling Boulder", "scepter_mods": [], "scepter": "", "notes": ["Rolling over a Stone Remnant will destroy the Remnant.", "The boulder has a radius of 150."], "mana": "50", "cooldown": "16.0 12.0 8.0 4.0", "details": [["SLOW DURATION:", "0.8 1.2 1.6 2.0"], ["SPEED:", "800"], ["DAMAGE:", "100"], ["DISTANCE:", "800.0"], ["%MOVEMENT SLOW:", "80"], ["DISTANCE (REMNANT):", "1600.0"], ["SPEED (REMNANT):", "1600"], ["CAST POINT:", ["0.01"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["3000"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "Calling upon his connection to the land, the Earth Spirit draws loose stone to him, which forms a protective ball that he can use to roll short distances.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_rolling_boulder.png", "description": "Earth Spirit gathers himself into a boulder and, after a 0.6s delay, rolls toward the target location, damaging enemy units. He will stop if he collides with an enemy hero or is stunned. If he rolls over a Stone Remnant, he will travel further and faster, and enemies hit by the boulder will have their movement speed slowed."},
'5610': {"cost": "", "name": "Geomagnetic Grip", "scepter_mods": [], "scepter": "", "notes": ["Will not work on a unit inside Chronosphere, Duel, or Black Hole."], "mana": "100", "cooldown": "13", "details": [["REMNANT PULL SPEED:", "1000"], ["HERO PULL SPEED:", "600"], ["SILENCE DURATION:", "2.0 2.5 3 3.5"], ["REMNANT DAMAGE:", "50 100 150 200"], ["CAST POINT:", ["0.01"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1100"]], ["BEHAVIOR:", ["Point Target", "Targets Units", "Other (Ignore Backswing)"]]], "lore": "Like calls to like. Even the minerals found in the blood and bones of living beings are not immune to the call of the Earth Spirit.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_geomagnetic_grip.png", "description": "Earth Spirit pulls the target Stone Remnant. Enemies struck by the gripped target will be silenced, and take damage if the gripped target is a Stone Remnant."},
'5611': {"cost": "", "name": "Stone Remnant", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "0.0", "details": [["DURATION:", "120.0"], ["MAX CHARGES:", "6"], ["CHARGE RESTORE TIME:", "30.0"], ["CAST POINT:", ["0.0"]], ["CAST RANGE:", ["1100"]], ["BEHAVIOR:", ["Point Target", "Not Learnable", "Other (Ignore Backswing)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Earth Spirit calls forth a remnant of his stone army, long buried with him in the dark embrace of the Earth.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_stone_caller.png", "description": "Call a Stone Remnant to the target location. Stone Remnants have no vision and are invulnerable, and can be used with Earth Spirit's abilities. Calling a Stone Remnant consumes a charge, which recharge over time."},
'5612': {"cost": "", "name": "Magnetize", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100.0", "cooldown": "100 90 80", "details": [["REMNANT EXPLOSION RADIUS:", "600"], ["DAMAGE PER SECOND:", "50 75 100"], ["RADIUS:", "300"], ["REMNANT REFRESH RADIUS:", "400"], ["MAGNETIZE DURATION:", "6.0"], ["CAST POINT:", ["0.01"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["300"]], ["BEHAVIOR:", ["No Target", "Other (Ignore Backswing)"]]], "lore": "At the Earth Spirit's call, the minerals in the blood and bones of his enemies rebel against the bodies they find themselves in.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_magnetize.png", "description": "Magnetizes units in a small nearby area, causing them to take damage for a short duration. Magnetized heroes cause nearby Stone Remnants to explode, destroying the remnant and refreshing Magnetize's duration on all nearby enemies. This process can repeat multiple times. If an enemy hero is affected by silence or slows as a result of Geomagnetic Grip or Rolling Boulder, all magnetized heroes share the effects."},
'5613': {"cost": "", "name": "Firestorm", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 110 120 130", "cooldown": "12.0", "details": [["WAVE INTERVAL", "1.0"], ["%MAX HP BURN DAMAGE:", "1 2 3 4"], ["BURN DURATION:", "2.0"], ["WAVE DAMAGE:", "25 40 55 70"], ["WAVE COUNT:", "6"], ["RADIUS:", "400"], ["CAST POINT:", ["0.6"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "The flames of conquest blaze forth from the darkest depths of the abyss.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abyssal_underlord_firestorm.png", "description": "Calls down waves of fire that damage enemy units in the target area, burning for additional damage over time."},
'5614': {"cost": "", "name": "Pit of Malice", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100 115 130 145", "cooldown": "32 28 24 20", "details": [["PIT DURATION:", "12.0"], ["RADIUS:", "375"], ["DISABLE DURATION:", "0.9 1.2 1.5 1.8"], ["DISABLE INTERVAL:", "3.6"], ["CAST POINT:", ["0.45"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["750"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Twisting into the seams of reality itself, Vrogros' manifest hatred paralyzes those who defy his will.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abyssal_underlord_pit_of_malice.png", "description": "A deadly pit is conjured at the target location; any unit that enters will be rooted. Each enemy unit within the pit are affected every 3.6 seconds."},
'5615': {"cost": "", "name": "Atrophy Aura", "scepter_mods": [], "scepter": "Causes bonus damage to be granted to nearby allied heroes for half the values.", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS DAMAGE(CREEP):", "5"], ["BONUS DAMAGE(HERO):", "30 35 40 45"], ["DURATION:", "30 40 50 60"], ["RADIUS:", "900"], ["%DAMAGE REDUCTION:", "7 18 29 40"], ["DISPELLABLE:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "To merely stand in the presence of the Underlord is to feel the conviction of battle sapped from one's soul.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abyssal_underlord_atrophy_aura.png", "description": "Nearby enemy units are weakened, losing a portion of their base damage. If a unit dies while under this effect, Underlord gains bonus damage.<br><br>Upgradable by Aghanim's Scepter."},
'5616': {"cost": "", "name": "Dark Rift", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75 150 225", "cooldown": "130 120 110", "details": [["TELEPORT DELAY:", "6.0 5.0 4.0"], ["TELEPORT RADIUS:", "600"], ["CAST POINT:", ["0.6"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Building", "Creep"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "Targets Units"]]], "lore": "They come without warning, leaving fire and blood where kingdoms once flourished.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abyssal_underlord_dark_rift.png", "description": "Opens a dark rift at the targeted friendly unit's position. After a short delay, Underlord and all nearby friendly heroes are teleported to that unit's location. Dark Rift can be cancelled at anytime during the cast. If it is cancelled in this way or the target unit dies before the spell becomes active, Dark Rift goes into cooldown."},
'5617': {"cost": "", "name": "Cancel Dark Rift", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Other (Hidden)", "Casting Stops Attack"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/abyssal_underlord_cancel_dark_rift.png", "description": "Stop the teleport."},
'5618': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5619': {"cost": "", "name": "Reflection", "scepter_mods": [], "scepter": "", "notes": ["Reflections are untargetable, invulnerable illusions.", "Reflections can only attack their source."], "mana": "50", "cooldown": "22 20 18 16", "details": [["%REFLECTION DAMAGE:", "40 60 80 100"], ["RADIUS:", "900"], ["REFLECTION DURATION:", "2.5 3.5 4.5 5.5"], ["%MOVEMENT SLOW:", "25"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target"]]], "lore": "In the fractal prison of Foulfell, Terrorblade learned the truth of this old tale: you are your own worst enemy. Now it is a lesson he teaches others.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/terrorblade_reflection.png", "description": "Terrorblade brings forth an invulnerable dark reflection of all nearby enemy heroes. Affected enemy heroes are slowed and attacked by their reflection."},
'5620': {"cost": "", "name": "Conjure Image", "scepter_mods": [], "scepter": "", "notes": [], "mana": "70", "cooldown": "16", "details": [["%ILLUSION DAMAGE:", "30 40 50 60"], ["ILLUSION DURATION:", "34.0"], ["%ILLUSION DAMAGE TAKEN:", "400.0"], ["CAST POINT:", ["0.15"]], ["BEHAVIOR:", ["No Target"]]], "lore": "There's only one thing more dangerous than facing Terrorblade. Facing MORE Terrrorblades!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/terrorblade_conjure_image.png", "description": "Creates an illusion of Terrorblade that deals damage."},
'5621': {"cost": "", "name": "Metamorphosis", "scepter_mods": [], "scepter": "", "notes": ["Manta Style's cooldown time will be based on whether Terrorblade was in his ranged or melee form when the item was used."], "mana": "100", "cooldown": "155.0", "details": [["MOVEMENT SPEED LOSS:", "25"], ["ILLUSION AURA RADIUS:", "900"], ["TRANSFORMATION TIME:", "0.35"], ["BONUS DAMAGE:", "20 40 60 80"], ["BASE ATTACK TIME:", "1.5"], ["DURATION:", "40 44 48 52"], ["ATTACK RANGE:", "550"], ["CAST POINT:", ["0."]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Temper, temper. The rage rises up and takes control. Meet Terrorblade's own worst self.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/terrorblade_metamorphosis.png", "description": "Terrorblade transforms into a powerful demon with a ranged attack. Any of Terrorblade's illusions that are within 900 range will also be transformed by Metamorphosis."},
'5622': {"cost": "", "name": "Sunder", "scepter_mods": [], "scepter": "", "notes": [], "mana": "200 100 0", "cooldown": "120.0 80.0 40.0", "details": [["%MINIMUM HP SWAP:", "25"], ["CAST POINT:", ["0.35"]], ["TARGET TYPE:", ["Other"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["550"]], ["BEHAVIOR:", ["Targets Units", "Casting Stops Attack"]]], "lore": "You didn't need that life, did you? The demon marauder steals that which you hold most dear.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/terrorblade_sunder.png", "description": "Severs the life from both Terrorblade and a target hero, exchanging a percentage of both units' current health. Some health points must remain."},
'5623': {"cost": "", "name": "Icarus Dive", "scepter_mods": [], "scepter": "", "notes": ["Icarus Dive has a 2 second travel duration, and can be cancelled by casting the ability again while in flight."], "mana": "0", "cooldown": "36", "details": [["BURN DURATION:", "4"], ["%HP COST:", "15"], ["DIVE LENGTH:", "1400"], ["%MOVE SLOW:", "-28"], ["DAMAGE PER SECOND:", "10 30 50 70"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["Point Target", "Other (Ignore Backswing)", "Disabled By Root"]]], "lore": "SCREE!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_icarus_dive.png", "description": "Immediately cancels the dive."},
'5624': {"cost": "", "name": "Stop Icarus Dive", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["Other (Immediate)", "No Target", "Not Learnable", "Other (Hidden)", "Casting Stops Attack"]]], "lore": "SCREE!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_icarus_dive_stop.png", "description": "Immediately cancels the dive."},
'5625': {"cost": "", "name": "Fire Spirits", "scepter_mods": [], "scepter": "", "notes": ["Fire Spirits reveal the area they strike for 1 second."], "mana": "80 90 100 110", "cooldown": "45 40 35 30", "details": [["ATTACK SPEED SLOW:", "-80 -100 -120 -140"], ["SPIRIT DURATION:", "20"], ["BURN DURATION:", "4.0"], ["%HP COST:", "20"], ["RADIUS:", "175 175 175 175"], ["DAMAGE PER SECOND:", "10 30 50 70"], ["CAST POINT:", ["0.01 0.01 0.01 0.01"]], ["DISPELLABLE:", ["Any"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1400"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The ever-collapsing core of Phoenix often emits short-lived bursts of conscious light.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_fire_spirits.png", "description": "Summons 4 fire spirits that circle around Phoenix. Each spirit can be launched independently at a targeted area of effect. Affected enemy units take damage over time and have their attack speed greatly reduced."},
'5626': {"cost": "", "name": "Sun Ray", "scepter_mods": [], "scepter": "", "notes": ["Sun Ray has a width of 130 units, and a length of 1300 units."], "mana": "100", "cooldown": "26", "details": [["BASE HEAL PER SECOND:", "7 10 13 16"], ["%MAX HEAL:", "0.625 1.25 1.875 2.5"], ["%HEALTH COST PER SECOND:", "6"], ["DURATION:", "6"], ["%MAX DAMAGE:", "1.5 3.25 5.0 6.75"], ["BASE DAMAGE PER SECOND:", "14 20 26 32"], ["DURATION:", ["6.0"]], ["CAST POINT:", ["0.01"]], ["DISPELLABLE:", ["No"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1300"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "CHIRP!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_sun_ray.png", "description": "Toggles slow forward movement during Sun Ray firing."},
'5627': {"cost": "", "name": "Stop Sun Ray", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Other (Hidden)", "Casting Stops Attack", "Other (Immediate)"]]], "lore": "CHIRP!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_sun_ray_stop.png", "description": "Immediately stops the Sun Ray."},
'5628': {"cost": "", "name": "Toggle Movement", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Not Learnable", "Casting Stops Attack", "Other (Immediate)"]]], "lore": "SQAWRK!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_sun_ray_toggle_move.png", "description": ""},
'5630': {"cost": "", "name": "Supernova", "scepter_mods": [["SCEPTER CAST RANGE:", "500"], ["SCEPTER ATTACKS TO DESTROY:", "7 10 13"]], "scepter": "Increases number of attacks to destroy Supernova and allows Phoenix to cast Supernova on an allied hero, bringing both into the sun to be reborn together. Does not refresh ultimate abilities.", "notes": [], "mana": "200 200 200", "cooldown": "110.0 110.0 110.0", "details": [["DAMAGE PER SECOND:", "60 90 120"], ["DURATION:", "6"], ["ATTACKS TO DESTROY:", "5 8 11"], ["RADIUS:", "1000 1000 1000"], ["STUN DURATION:", "1.5 2.0 2.5"], ["DURATION:", ["6.0"]], ["CAST POINT:", ["0.01"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["No Target", "Casting Stops Attack"]]], "lore": "The solar crucible of a Supernova may be fatal, yet from its flames arise new beacons to wander infinity.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_supernova.png", "description": "The Phoenix willingly ends its current life for the chance to be reborn. Transforms into a burning sun that scorches enemies in a huge area. The sun can be destroyed by attacks from enemy Heroes. After 6 seconds the sun explodes, stunning all nearby enemies while restoring Phoenix to full health and mana with refreshed abilities.<br><br>Upgradable by Aghanim's Scepter.<br><br>DISPEL TYPE: Strong Dispel"},
'5631': {"cost": "", "name": "Launch Fire Spirit", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0 0 0 0", "cooldown": "0 0 0 0", "details": [["BURN DURATION:", "4.0"], ["ATTACK SPEED SLOW:", "-80 -100 -120 -140"], ["%HP COST:", "20"], ["DAMAGE PER SECOND:", "10 30 50 70"], ["RADIUS:", "175 175 175 175"], ["SPIRIT DURATION:", "20.0 20.0 20.0 20.0"], ["CAST POINT:", ["0.01 0.01 0.01 0.01"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1400"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)", "Other (Hidden)"]]], "lore": "PKAWW! BOOM", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/phoenix_launch_fire_spirit.png", "description": "Each fire spirit can be launched independently at a targeted area of effect. Affected enemy units take damage over time and have their attack speed greatly reduced. Reveals the area it strikes for 1 second."},
'5632': {"cost": "", "name": "Gust", "scepter_mods": [], "scepter": "", "notes": [], "mana": "90", "cooldown": "16 15 14 13", "details": [["KNOCKBACK MAX:", "350"], ["KNOCKBACK DURATION:", "0.6 0.7 0.8 0.9"], ["WIDTH:", "250"], ["CAST RANGE:", "900"], ["SILENCE DURATION:", "3 4 5 6"], ["CAST POINT:", ["0.25"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Point Target"]]], "lore": "Traxex is rather fond of the tranquility of physical combat, calling on her Drow heritage to end the incantations of opposing magi.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/drow_ranger_wave_of_silence.png", "description": "Releases a wave that silences and knocks back enemy units. Knockback distance is relative to how close they are to you."},
'5635': {"cost": "", "name": "Focused Detonate", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "1.0 1.0 1.0", "details": [["RADIUS:", "700"], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "AOE", "Not Learnable", "Other (Unrestricted)", "Other (Immediate)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Why light one fuse when you can light them all?", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_focused_detonate.png", "description": "Detonate all remote mines in the target area."},
'5636': {"cost": "", "name": "PINPOINT DETONATE", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "Kablooey!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_remote_mines_self_detonate.png", "description": "Detonate all selected remote mines."},
'5637': {"cost": "", "name": "Fortune's End", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "15 12 9 6", "details": [["DAMAGE:", "90 120 150 180"], ["RADIUS:", "300"], ["MAX STOP DURATION:", "2.5"], ["MIN STOP DURATION:", "0.5"], ["CAST POINT:", ["0"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies and Enemies"]], ["CAST RANGE:", ["850"]], ["BEHAVIOR:", ["Targets Units", "AOE", "Channeled", "Doesnt Cancel Channeling"]]], "lore": "The astral orb crackles with power while raw energy lances out, temporarily disrupting an enemy's connection to their own body.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/oracle_fortunes_end.png", "description": "CHANNELED - Gathers Oracle's power into a bolt of scouring energy that, when released, damages, roots, and purges enemies of buffs in an area around the target. If target is an ally it will only purge. Can be channeled for up to 2.5 seconds. The root duration is equal to the time spent channeling.<br><br>DISPEL TYPE: Basic Dispel"},
'5638': {"cost": "", "name": "Fate's Edict", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "16 13 10 7", "details": [["DURATION:", "3.0 3.5 4.0 4.5"], ["RANGE:", "500 600 700 800"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_NO"]], ["TARGETS:", ["Enemies", "Allies"]], ["CAST RANGE:", ["500 600 700 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "An unbreakable prophecy resounds: a chosen ally shall briefly suffer no magics. Other kinds of suffering however...", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/oracle_fates_edict.png", "description": "Oracle enraptures a target, disarming them and granting them 100% magic damage resistance. Can be cast on allies and enemies."},
'5639': {"cost": "", "name": "Purifying Flames", "scepter_mods": [["SCEPTER COOLDOWN:", "1.0"]], "scepter": "Reduces cooldown and improves cast point.", "notes": ["The healing from Purifying Flames can be stacked with itself."], "mana": "80 85 90 95", "cooldown": "2.25", "details": [["HEAL PER SECOND:", "11.0 22.0 33.0 44.0"], ["DURATION:", "9.0"], ["TOTAL HEAL:", "99 198 297 396"], ["DAMAGE:", "90 180 270 360"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Allies", "Enemies"]], ["CAST RANGE:", ["850"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Like a hall of mirrors might amplify the light of a single candle, the shattered walls of the universe can transform the light of prophecy into a burning torch.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/oracle_purifying_flames.png", "description": "Burns away impurities, dealing heavy magic damage to the target before causing them to regenerate health over time. The amount of health regenerated over its duration exceeds the amount of initial damage. Can be cast on enemies and allies.<br><br>Upgradable by Aghanim's Scepter."},
'5640': {"cost": "", "name": "False Promise", "scepter_mods": [], "scepter": "", "notes": ["Delayed damage and healing will take armor and magic resistance reductions into account when received.", "The delayed damage and healing takes effect as soon as the target becomes vulnerable."], "mana": "100", "cooldown": "100 65 30", "details": [["DURATION:", "8 9 10"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "Foes and false prophets oft make lies of men's fates.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/oracle_false_promise.png", "description": "Temporarily alters an ally's destiny, delaying any healing or damage taken until False Promise ends. Any healing that is delayed by False Promise is doubled. Removes most negative status effects and disables on initial cast.<br><br>DISPEL TYPE: Strong Dispel"},
'5641': {"cost": "", "name": "Launch Snowball", "scepter_mods": [], "scepter": "", "notes": ["Each Meepo clone added to the snowball will add its own bonus damage and speed.", "Doesn't carry illusions, but will carry Meepo clones and other units that Tusk controls.", "The snowball destroys trees.", "The snowball travels at 675 movement speed."], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Not Learnable", "Other (Immediate)", "Usable While Disabled"]]], "lore": "Into the great wide white!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk/glaciomarine_ability_icons/tusk_launch_snowball.png", "description": "Launch the snowball toward the target."},
'5642': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5643': {"cost": "", "name": "Destroy Spin Web", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "0", "details": [["CAST POINT:", ["0"]], ["BEHAVIOR:", ["Not Learnable", "No Target", "Other (Immediate)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/broodmother_spin_web_destroy.png", "description": "Destroys the selected Spin Web."},
'5644': {"cost": "", "name": "Minefield Sign", "scepter_mods": [], "scepter": "Allows Minefield Sign to hide any Proximity Mines, Stasis Traps, and Remote Mines in an area around the sign from True Sight.", "notes": [], "mana": "0", "cooldown": "360.0", "details": [["SIGN DURATION:", "180"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["DAMAGE_TYPE_NONE"]], ["CAST RANGE:", ["10"]], ["BEHAVIOR:", ["Point Target", "AOE", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Watch your step!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/techies_minefield_sign.png", "description": "Plant a warning sign to remind enemies to step lightly. Only one sign can exist at a time. Lasts 180 seconds.<br><br>Upgradable by Aghanim's Scepter."},
'5645': {"cost": "", "name": "Chakram", "scepter_mods": [], "scepter": "", "notes": ["The Chakram will return if Timbersaw runs out of mana or moves over 2000 distance away."], "mana": "100 150 200", "cooldown": "8.0 8.0 8.0", "details": [["DAMAGE PER SECOND:", "50 75 100"], ["%SLOW:", "5"], ["MANA COST PER SECOND:", "20.0 25.0 30.0"], ["PASS DAMAGE:", "100 140 180"], ["RADIUS:", "200.0"], ["CAST POINT:", ["0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1200 1200 1200"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)", "Not Learnable", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Cut cut cut cut cut cut cut cut cut cut cut!", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_chakram_2.png", "description": "Fires a secondary saw blade at the target location where it will spin in place, dealing damage in an area around it. Additionally, for each 5% of health missing, enemies caught in the saw blade move more slowly. The blade deals damage and cuts down trees in its path when fired and retracted. While active the ability costs mana, and you lose the ability to attack."},
'5646': {"cost": "", "name": "Return Chakram", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "0.0 0.0 0.0", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)", "Doesnt Cancel Channeling", "Not Learnable", "Other (Hidden)", "Casting Stops Attack", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/shredder_return_chakram_2.png", "description": "Returns the Chakram to Timbersaw."},
'5648': {"cost": "", "name": "Enchant Remnant", "scepter_mods": [], "scepter": "", "notes": [], "mana": "150", "cooldown": "45", "details": [["REMNANT DURATION:", "3"], ["SHATTER RADIUS:", "300"], ["SHATTER DAMAGE:", "300"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Other"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["125"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Kaolin uses the elemental power of the Earth to temporarily petrify living beings, so that they might be conscripted into his stone funerary army.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/earth_spirit_petrify.png", "description": "Earth Spirit temporarily enchants a hero, granting them the properties of a Stone Remnant. After a short duration the remnant shatters, releasing the hero and damaging nearby enemies."},
'5649': {"cost": "", "name": "Eyes In The Forest", "scepter_mods": [], "scepter": "", "notes": ["Being entangled by Overgrowth through enchanted trees from Eyes of the Forest does damage. Being entangled by Overgrowth directly from Treant Protector does not.", "If the enemy has True Sight, they will be able to see which trees are enchanted."], "mana": "100", "cooldown": "35", "details": [["SCEPTER OVERGROWTH DAMAGE PER SEC:", "175"], ["TREE VISION RADIUS:", "800"], ["SCEPTER OVERGROWTH RADIUS:", "800"], ["CAST POINT:", ["0.2"]], ["TARGET TYPE:", ["Tree"]], ["DAMAGE TYPE:", ["Magical"]], ["CAST RANGE:", ["160"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "One can never be too certain who, or what, might need protecting.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/treant_eyes_in_the_forest.png", "description": "Treant Protector enchants a tree, which grants him unobstructed vision in that location. If Overgrowth is cast, units within a radius of an enchanted tree will be entangled and damaged."},
'5650': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5651': {"cost": "", "name": "Arctic Burn", "scepter_mods": [["SCEPTER MANA PER SECOND:", "40"]], "scepter": "Causes Arctic Burn to be a toggle ability, draining 40 mana per second when active. Removes limit on number of attacks per target.", "notes": ["Reduces Winter Wyvern's attack point to 0.1.", "This ability does not affect Roshan.", "Enemy units can only receive the Arctic Burn debuff once per cast."], "mana": "90", "cooldown": "50.0 40.0 30.0 20.0", "details": [["%MOVEMENT SLOW:", "22 28 34 40"], ["%HEALTH BURN:", "6 7 8 9"], ["BONUS ATTACK RANGE:", "275 375 475 575"], ["BURN DURATION:", "5.0"], ["FLIGHT DURATION:", "8.0"], ["ADDED NIGHT VISION RANGE:", "400"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Immediate)"]]], "lore": "The same organ where some dragons stoke their inner flame is, in Auroth, a crucible of unimaginable cold. From deep within her frosty gullet, an exhalation sends enemies into burning agony.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/winter_wyvern_arctic_burn.png", "description": "Winter Wyvern soars upon an arctic wind, granting her unobstructed movement and allowing her to exhale a blistering chill into each attack. While soaring, her attacks travel further and faster, and slow enemies with a magical freeze that strips them of 6 7 8 9% of their current health each second. Her sight is also hardened against night's chill, granting her 400 additional vision range at night while soaring.<br><br>Upgradable by Aghanim's Scepter."},
'5652': {"cost": "", "name": "Splinter Blast", "scepter_mods": [], "scepter": "", "notes": ["The primary projectile moves at 500 movespeed, or reaches the target in 1 second, whichever is faster up to 4000 speed.", "The primary projectile cannot be disjointed."], "mana": "120 130 140 150", "cooldown": "7", "details": [["SHATTER RADIUS:", "500"], ["SLOW DURATION:", "4.0"], ["%MOVEMENT SLOW:", "25"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["DAMAGE:", ["100 180 260 340"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "Produced slowly by specialized vesicles in her frozen gullet, Winter Wyvern blast shards of ice at her enemies.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/winter_wyvern_splinter_blast.png", "description": "Launches a ball of brittle ice toward an enemy. The ice shatters on impact, leaving the primary target completely unaffected, while hurling damaging splinters into nearby enemies in a 500 radius. Enemies struck by these splinters are slowed by 25."},
'5653': {"cost": "", "name": "Cold Embrace", "scepter_mods": [], "scepter": "", "notes": ["Cannot be dispelled."], "mana": "75 75 75 75", "cooldown": "24 21 18 15", "details": [["DURATION:", "4.0"], ["%MAX HEALTH REGEN:", "3.0 4.0 5.0 6.0"], ["BASE HEALTH REGEN:", "10"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["SPELL_IMMUNITY_ALLIES_YES"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "From winter's heart comes a cold, healing embrace. The ice slows the blood and allows the spell to better work its curative magic.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/winter_wyvern_cold_embrace.png", "description": "Encases an ally in an icy cocoon, freezing them solid while healing a base amount as well as a percentage of their maximum health each second. The cocoon blocks all physical damage."},
'5654': {"cost": "", "name": "Winter's Curse", "scepter_mods": [], "scepter": "", "notes": ["If the target dies to its allies, Winter Wyvern will receive credit for the kill.", "Will only pierce the spell immunity of the primary target, not the target's surrounding allies."], "mana": "250", "cooldown": "80", "details": [["CURSE ATTACK SPEED:", "85"], ["CURSE RADIUS:", "500"], ["%CURSE DAMAGE REDUCTION:", "100"], ["CURSE DURATION:", "3.25 4 4.75"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units", "AOE"]]], "lore": "The oldest of the bookwurm\u2019s spells, this curse lends truth to the old saw: sometimes the enemy of my enemy is my enemy still.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/winter_wyvern_winters_curse.png", "description": "Winter Wyvern freezes an enemy in place while striking those nearby with a maddening curse which causes them to attack their frozen ally with increased attack speed. The frozen ally and those cursed to attack their ally are immune to all damage from their enemies."},
'5655': {"cost": "", "name": "Control", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Other (Unrestricted)", "Other (Immediate)", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_control.png", "description": "Lifestealer seizes control of the host body's nervous system, allowing him to issue movement and attack orders from within. Controlled units share Lifestealer's movement speed. Cannot be used on heroes."},
'5656': {"cost": "", "name": "Granite Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["RADIUS:", "900"], ["BONUS HP PERCENTAGE:", "15"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/granite_golem_hp_aura.png", "description": "Increases the health capacity of nearby units."},
'5657': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_empty_1.png", "description": ""},
'5658': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_empty_2.png", "description": ""},
'5659': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_empty_3.png", "description": ""},
'5660': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Other (Hidden)", "Passive", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_empty_4.png", "description": ""},
'5661': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5662': {"cost": "", "name": "Sonic Wave", "scepter_mods": [], "scepter": "", "notes": ["Sonic Wave can hit units up to 1350 units away."], "mana": "250", "cooldown": "135", "details": [["WAVE MAX RADIUS:", "450"], ["DAMAGE:", "290 390 490 590 690 790 890 990 1090 1190"], ["CAST POINT:", ["0.452"]], ["DAMAGE TYPE:", ["Pure"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["700"]], ["BEHAVIOR:", ["Directional Cast", "Point Target"]]], "lore": "", "icon": "", "description": "Creates a gigantic wave of sound in front of Year Beast, dealing heavy damage to all enemy units in its wake."},
'5663': {"cost": "", "name": "Black Hole", "scepter_mods": [], "scepter": "", "notes": ["Disables enemies through spell immunity."], "mana": "275", "cooldown": "200.0", "details": [["MAX DAMAGE PER SECOND:", "50 100 150"], ["MIN DAMAGE PER SECOND:", "25 50 75"], ["DURATION:", "4.0 4.0 4.0"], ["RADIUS:", "400 425 450 475 500 525 550 575 600 625"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["275"]], ["BEHAVIOR:", ["AOE", "Point Target", "Channeled"]]], "lore": "", "icon": "", "description": "CHANNELED - Summons a vortex that sucks in nearby enemy units. Enemies affected by Black Hole cannot move, attack, or cast spells. The closer units get to the center, the more damage is dealt."},
'5664': {"cost": "", "name": "Chronosphere", "scepter_mods": [], "scepter": "", "notes": ["Pauses all units and buildings, friendly or enemy.", "Faceless Void is never affected by Chronospheres from any owner."], "mana": "150", "cooldown": "130.0", "details": [["RADIUS:", "425 450 475 500 525 550 575 600 625 650 675"], ["DURATION:", "4.0 4.5 5.0"], ["CAST POINT:", ["0.35"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["AOE", "Point Target"]]], "lore": "", "icon": "", "description": "Creates a blister in spacetime, trapping all units caught in its sphere of influence and causes you to move very quickly inside it. Only a Year Beast and Faceless Void are unaffected. Invisible units in the sphere will be revealed."},
'5665': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5666': {"cost": "", "name": "Burrow", "scepter_mods": [], "scepter": "", "notes": ["Casting Vendetta will cancel burrow."], "mana": "", "cooldown": "", "details": [["%BURROW HEALTH/MANA REGEN:", "1.5"], ["BURROW MANA BURN RANGE:", "1050"], ["BURROW IMPALE COOLDOWN:", "7"], ["BURROW SPIKED CARAPACE RANGE:", "300"], ["BURROW IMPALE RANGE:", "1225"], ["%BURROW DAMAGE REDUCTION:", "40"], ["CAST POINT:", ["1.5"]], ["DISPELLABLE:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "Some castes of zealot scarab are known to create small burrows to lie in wait, ready to ambush their prey.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_burrow.png", "description": "Nyx Assassin buries himself beneath the battlefield over a short duration. Once burrowed, Spiked Carapace instantly stuns nearby enemies when cast, the range of Mana Burn and Impale is increased, and Impale's cooldown is decreased. While burrowed, Nyx Assassin is stationary, unable to attack, and invisible. His health and mana regeneration are also increased, and he gains damage reduction from all damage sources."},
'5667': {"cost": "", "name": "Shard Split", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mud_golem_rock_destroy.png", "description": "On death, Mud Golems shatter into 2 Shard Golems. Shard Golems have 240 health, deal 9 damage per attack, and live for 60 seconds."},
'5668': {"cost": "", "name": "Ice Shards Stop", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target"]]], "lore": "", "icon": "", "description": "Stop."},
'5669': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5670': {"cost": "", "name": "Hurl Boulder", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "30", "details": [["STUN DURATION:", "0.6"], ["DAMAGE:", "125"], ["CAST POINT:", ["0.3"]], ["DISPELLABLE:", ["Strong Dispels"]], ["TARGET TYPE:", ["Hero", "Creep"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mud_golem_hurl_boulder.png", "description": "Hurls a boulder at the target, damaging and stunning them. Golems do not do this unless commanded to."},
'5671': {"cost": "", "name": "Assimilate", "scepter_mods": [], "scepter": "", "notes": [], "mana": "50", "cooldown": "50", "details": [["ERUPT RADIUS:", "700 700 700"], ["ERUPT DAMAGE:", "300"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero"]], ["DAMAGE TYPE:", ["Magical"]], ["TARGETS:", ["Allies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)"]]], "lore": "How can Lifestealer resist the chance to sample an ally?", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_assimilate.png", "description": "Lifestealer swallows an allied hero, allowing them to hide within him. Any healing Lifestealer receives is shared with the hero within. When an assimilated hero leaves Lifestealer, they erupt outward, damaging nearby enemies.<br><br>DISPEL TYPE: Strong Dispel"},
'5672': {"cost": "", "name": "Walrus Kick", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "8", "details": [["SLOW DURATION:", "4"], ["%MOVE SLOW:", "40"], ["DAMAGE:", "350"], ["KICK PUSH DISTANCE:", "1400"], ["CAST POINT:", ["0.2"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["150"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)", "DOTA_ABILITY_BEHAVIOR_SHOW_IN_GUIDES"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/tusk_walrus_kick.png", "description": "Kicks the target unit back, damaging them and slowing their movement speed."},
'5673': {"cost": "", "name": "Unburrow", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0", "cooldown": "0.0", "details": [["CAST POINT:", ["0.0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Other (Ignore Backswing)"]]], "lore": "Some castes of zealot scarab are known to create small burrows to lie in wait, ready to ambush their prey.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/nyx_assassin_unburrow.png", "description": "Emerge from the burrow."},
'5674': {"cost": "", "name": "Hybrid", "scepter_mods": [], "scepter": "", "notes": [], "mana": "200", "cooldown": "60", "details": [["DURATION:", "20.0"], ["CAST POINT:", ["0.25"]], ["TARGET TYPE:", ["Other"]], ["TARGETS:", ["Other"]], ["CAST RANGE:", ["600"]], ["BEHAVIOR:", ["Targets Units", "Other (Hidden)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/morphling_hybrid.png", "description": "Morphling creates a hybrid replication of a target allied hero, which can cast all of that hero's current, non-ultimate abilities. Enemies are able to see which unit is a hybrid."},
'5675': {"cost": "", "name": "Eject", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ERUPT RADIUS:", "700 700 700"], ["ERUPT DAMAGE:", "300"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["DAMAGE TYPE:", ["Magical"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)", "Other (Immediate)", "Not Learnable"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/life_stealer_assimilate_eject.png", "description": "Ejects an Assimilated hero, damaging nearby enemies."},
'5676': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5677': {"cost": "", "name": "Flux", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "18.0", "details": [["CAST RANGE:", "500 600 700 800"], ["ALLY SEARCH RADIUS:", "225"], ["%MOVEMENT SPEED SLOW:", "20 30 40 50"], ["DURATION:", "6.0"], ["DAMAGE PER SECOND:", "15 30 45 60"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DISPELLABLE:", ["Any"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500 600 700 800"]], ["BEHAVIOR:", ["Targets Units"]]], "lore": "An infinitesimal fraction of the power which imprisoned the Ancients.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/arc_warden_flux.png", "description": "Infuses a lone enemy unit with swirling, volatile energy, slowing its movement speed and dealing damage over time. The effect is muted if another enemy unit is near the target."},
'5678': {"cost": "", "name": "Magnetic Field", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80 90 100 110", "cooldown": "35 30 25 20", "details": [["RADIUS:", "275"], ["ATTACK SPEED BONUS:", "50 60 70 80"], ["DURATION:", "3.5 4.5 5.5 6.5"], ["%EVASION BONUS:", "100"], ["CAST POINT:", ["0.3"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["900"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Ignore Backswing)"]]], "lore": "Time and space are of little consequence to one as old as Zet.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/arc_warden_magnetic_field.png", "description": "Generates a circular distortion field of magnetic energy that protects allied heroes and buildings within it by evading attacks coming from outside the field."},
'5679': {"cost": "", "name": "Spark Wraith", "scepter_mods": [], "scepter": "", "notes": [], "mana": "80", "cooldown": "4.0 4.0 4.0 4.0", "details": [["SLOW DURATION:", "0.4 0.5 0.6 0.7"], ["SEARCH RADIUS:", "375"], ["DURATION:", "50"], ["ACTIVATION DELAY:", "2.0"], ["WRAITH SPEED:", "400"], ["DAMAGE:", "100 160 220 280"], ["CAST POINT:", ["0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["2000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "Lesser fragments of Zet's original self.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/arc_warden_spark_wraith.png", "description": "Summons a Spark Wraith that slowly materializes and patrols a targeted area until an enemy comes within its range. Once a target has been found the wraith fuses with them, dealing magical damage and slowing the unit."},
'5680': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5681': {"cost": "", "name": "Dragonhide Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS ARMOR:", "3"], ["AURA RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/black_dragon_dragonhide_aura.png", "description": "The Ancient Black Dragon's dreaded presence grants nearby allies additional armor. This bonus can stack with itself."},
'5682': {"cost": "", "name": "War Drums Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["ATTACK SPEED BONUS:", "15"], ["%ATTACK DAMAGE INCREASE:", "15"], ["RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/big_thunder_lizard_wardrums_aura.png", "description": "The rhythm of the Thunderhide's heartbeat increases the attack speed and attack damage of nearby allies."},
'5683': {"cost": "", "name": "Tempest Double", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "60 50 40", "details": [["DURATION:", "14 16 18"], ["CAST POINT:", ["0.15"]], ["BEHAVIOR:", ["No Target"]]], "lore": "Warped by the power of its peers, Arc Warden becomes what it despises most: disharmony.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/arc_warden_tempest_double.png", "description": "Briefly refocusing its fractured elements into a single form, the Arc Warden is able to create a perfect electrical duplication of itself. The duplicate can use all of Arc Warden's current items and spells, except consumables and items that drop on death. The duplicate has seperate item and ability cooldowns."},
'5684': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5685': {"cost": "", "name": "Spirit Siphon", "scepter_mods": [], "scepter": "", "notes": ["Cannot cast multiple on same target."], "mana": "70 65 60 55", "cooldown": "0", "details": [["%MAX HP AS DAMAGE:", "1.0 2.5 4.0 5.5"], ["MAX CHARGES:", "1 2 3 4"], ["BASE DAMAGE:", "14"], ["DURATION:", "6"], ["CHARGE RESTORE TIME:", "45"], ["%ENEMY SLOW:", "5 10 15 20"], ["CAST POINT:", ["0.1"]], ["DISPELLABLE:", ["No"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["500"]], ["BEHAVIOR:", ["Targets Units", "Other (Ignore Backswing)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/death_prophet_spirit_siphon.png", "description": "Creates a spirit link between Death Prophet and an enemy unit, draining 14 + 1.0 2.5 4.0 5.5 Max HP per second and slowing the enemy's movement speed by 5 10 15 20%."},
'5686': {"cost": "", "name": "", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [], "lore": "", "icon": "", "description": ""},
'5687': {"cost": "", "name": "Savage Roar", "scepter_mods": [], "scepter": "", "notes": ["An entangled hero will not be able to move.", "Cooldown is shared with Lone Druid."], "mana": "50", "cooldown": "38 32 26 20", "details": [["RANGE:", "325"], ["DURATION:", "1.2 1.6 2.0 2.4"], ["%ENEMY MOVEMENT SPEED BONUS:", "20"], ["CAST POINT:", ["0.1"]], ["DISPELLABLE:", ["Any"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["BEHAVIOR:", ["No Target", "Other (Hidden)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/lone_druid_savage_roar_bear.png", "description": "Spirit Bear roars fiercely causing nearby enemies to flee towards their base in terror. Their movement speed is increased by 20%."},
'5688': {"cost": "", "name": "Cloak Aura", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["%MAGIC RESISTANCE HEROES:", "10"], ["%MAGIC RESISTANCE CREEPS:", "20"], ["AURA RADIUS:", "900"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/mudgolem_cloak_aura.png", "description": "This creature protects its allies with a Magic resistance aura. Creeps are better protected."},
'5689': {"cost": "", "name": "Fireball", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "10", "details": [["DURATION:", "10.0"], ["RADIUS:", "300"], ["BURN INTERVAL:", "0.5"], ["DAMAGE PER SECOND:", "85"], ["CAST POINT:", ["0.3 0.3 0.3 0.3"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Point Target", "AOE"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/black_dragon_fireball.png", "description": "The Black Dragon hurls a fire blast on the ground, igniting the area in a 300 radius for 10.0 seconds. Enemies caught in the fire will take 85 damage per second."},
'5690': {"cost": "", "name": "Attribute Bonus", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BONUS:", "6"], ["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": "Improves all attributes per point spent"},
'5691': {"cost": "", "name": "Time Dilation", "scepter_mods": [], "scepter": "", "notes": [], "mana": "75", "cooldown": "40 34 28 22", "details": [["DURATION:", "6 8 10 12"], ["%SLOW PER COOLDOWN:", "14"], ["RADIUS:", "725"], ["CAST POINT:", ["0.1"]], ["DISPELLABLE:", ["Any"]], ["BEHAVIOR:", ["No Target"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/faceless_void_time_dilation.png", "description": "Faceless Void traps all nearby enemies in a time dilation field for 6 8 10 12 seconds, freezing their cooldowns and slowing their movement and attack speed by 14% for each cooldown frozen."},
'57': {"cost": "850", "name": "Void Stone", "scepter_mods": [], "scepter": "", "notes": ["Void Stone is shareable."], "mana": "", "cooldown": "", "details": [["+", "1.0 Mana Regeneration"], ["BEHAVIOR:", ["Passive"]]], "lore": "Jewelry that was once used to channel nether realm magic, this ring pulses with energy.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/void_stone.png", "description": ""},
'5716': {"cost": "", "name": "Boundless Strike", "scepter_mods": [], "scepter": "", "notes": [], "mana": "100", "cooldown": "22", "details": [["DISTANCE:", "1200"], ["STUN DURATION:", "0.4 0.8 1.2 1.6"], ["%CRITICAL DAMAGE:", "150 175 200 225"], ["CAST POINT:", ["0.4"]], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["DAMAGE TYPE:", ["Physical"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1200"]], ["BEHAVIOR:", ["Point Target", "Other (Normal When Stolen)"]]], "lore": "The legendary Jingu Bang grows to match its master's will, ensuring no enemy can escape the Monkey King's reach.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_boundless_strike.png", "description": "Monkey King enlarges his staff and slams it against the ground, stunning enemies in a line and damaging them with a critical hit based on his attack. Has True Strike."},
'5719': {"cost": "", "name": "Mischief", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0 0 0 0", "cooldown": "3", "details": [["MOVE SPEED:", "200"], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Casting Stops Attack", "Not Learnable"]]], "lore": "Watch out for that tree.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_mischief.png", "description": "Changes Monkey King's shape to deceive opponents, using the environment nearby as inspiration for the disguise. Taking damage, attacking, or using any item or ability breaks Monkey King's disguise."},
'5721': {"cost": "", "name": "Tree Dance", "scepter_mods": [], "scepter": "", "notes": ["Right-click ground to drop from tree.", "Tree Dance cooldown starts upon landing."], "mana": "0", "cooldown": "1.2", "details": [["DISTANCE:", "1000"], ["PRIMAL SPRING DAMAGE:", "140 210 280 350"], ["%PRIMAL SPRING SLOW:", "20 40 60 80"], ["DAMAGE COOLDOWN:", "3.0"], ["CAST POINT:", ["0.3"]], ["TARGET TYPE:", ["Tree"]], ["TARGETS:", ["Enemies"]], ["CAST RANGE:", ["1000"]], ["BEHAVIOR:", ["Targets Units", "Disabled By Root"]]], "lore": "Sun Wukong dances nimbly along the treetop canopy, always just out of arm's reach.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_tree_dance.png", "description": "Monkey King jumps to a tree and perches atop it. While perched, he gains the Primal Spring ability-a channeled leap attack. If Monkey King's tree is destroyed, he falls and is stunned for 4 seconds. Taking damage from player controlled units or Roshan while on the ground puts Tree Dance on cooldown."},
'5722': {"cost": "", "name": "Revert Form", "scepter_mods": [], "scepter": "", "notes": [], "mana": "0 0 0 0", "cooldown": "1", "details": [["DURATION:", ["10.0 10.0 10.0 10.0"]], ["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["No Target", "Casting Stops Movement", "Casting Stops Attack", "Not Learnable", "Other (Hidden)"]]], "lore": "", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_untransform.png", "description": "Reverts Monkey King's shape to his original form."},
'5723': {"cost": "", "name": "Jingu Mastery", "scepter_mods": [], "scepter": "", "notes": ["Hitting an enemy with Boundless Strike adds to the hit counter."], "mana": "", "cooldown": "0", "details": [["CHARGES:", "4"], ["COUNTER DURATION:", "10"], ["BONUS DAMAGE:", "60 90 120 150"], ["%BONUS LIFESTEAL:", "15 30 45 60"], ["REQUIRED HITS:", "4"], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["BEHAVIOR:", ["Passive"]]], "lore": "Always sensitive to the moods of its master, the Jingu Bang radiates power when Sun Wukong's combat fervor is on full display.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_jingu_mastery.png", "description": "Monkey King's attacks awaken the Jingu Bang's power. Upon the fourth hit on the same enemy hero, Monkey King earns four charged attacks that have bonus damage and lifesteal."},
'5724': {"cost": "", "name": "Primal Spring", "scepter_mods": [], "scepter": "", "notes": [], "mana": "130 120 110 100", "cooldown": "19 17 15 13", "details": [["SLOW DURATION:", "4.0"], ["MAX DISTANCE:", "1000"], ["%MOVEMENT SLOW:", "20 40 60 80"], ["DAMAGE:", "140 210 280 350"], ["CAST POINT:", ["0"]], ["DAMAGE TYPE:", ["Magical"]], ["PIERCES SPELL IMMUNITY:", ["No"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "AOE", "Channeled", "Not Learnable", "Disabled By Root"]]], "lore": "Leaping from the safety of cover into the midst of his enemies, Sun Wukong attacks without mercy.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_primal_spring.png", "description": "Monkey King springs out from his tree perch, damaging and slowing enemies in the area where he lands. Damage and slow amounts are in proportion to channel duration."},
'5725': {"cost": "", "name": "Wukong's Command", "scepter_mods": [], "scepter": "", "notes": ["Soldiers do not copy Basher or Abyssal.", "Soldiers do not receive Jingu Mastery bonuses."], "mana": "100", "cooldown": "130 110 90", "details": [["DURATION:", "13.0"], ["SOLDIER ATK SPEED:", "1.4"], ["BONUS ARMOR:", "8 14 20"], ["DURATION:", ["13.0"]], ["CAST POINT:", ["1.2"]], ["DAMAGE TYPE:", ["Physical"]], ["CAST RANGE:", ["0"]], ["BEHAVIOR:", ["Point Target", "AOE", "Other (Normal When Stolen)"]]], "lore": "Monkey King rips out a tuft of fur to blow at his enemies, charging each strand to transform into a copy of himself.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/monkey_king_wukongs_command.png", "description": "Monkey King creates a circular formation of soldiers that spread out from his position. If Monkey King leaves the area his soldiers disperse. The soldiers have Monkey King's attack and only target heroes. Monkey King is granted bonus armor for the spell's duration."},
'5726': {"cost": "", "name": "Spring Early", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["CAST POINT:", ["0.0 0.0 0.0 0.0"]], ["BEHAVIOR:", ["Other (Hidden)", "No Target", "Not Learnable", "Other (Immediate)", "Usable While Disabled"]]], "lore": "", "icon": "", "description": ""},
'5750': {"cost": "", "name": "Natural Order", "scepter_mods": [], "scepter": "", "notes": ["When the Astral Spirit isn't present, both the armor and magic armor reduction is centered around Elder Titan."], "mana": "", "cooldown": "", "details": [["RADIUS:", "350"], ["%BASE ARMOR REDUCTION:", "40 60 80 100"], ["%BASE RESIST REDUCTION:", "40 60 80 100"], ["TARGET TYPE:", ["Hero", "Non-Ancient"]], ["PIERCES SPELL IMMUNITY:", ["Yes"]], ["TARGETS:", ["Enemies"]], ["BEHAVIOR:", ["Passive", "Aura"]]], "lore": "As it was at the beginning, Elder Titan makes it so again.", "icon": "https://storage.googleapis.com/vgv-assets/images/spellicons/elder_titan_natural_order_spirit.png", "description": "Reduces all elements to their basic levels, removing base armor and magic damage resistance from nearby enemy units. The armor reduction is centered around the hero, while the magic armor reduction is centered around Astral Spirit."},
'58': {"cost": "2700", "name": "Mystic Staff", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "25 Intelligence"], ["BEHAVIOR:", ["Passive"]]], "lore": "Enigmatic staff made of only the most expensive crystals.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/mystic_staff.png", "description": ""},
'59': {"cost": "900", "name": "Energy Booster", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["+", "250 Mana"], ["BEHAVIOR:", ["Passive"]]], "lore": "This lapis gemstone is commonly added to the collection of wizards seeking to improve their presence in combat.", "icon": "https://storage.googleapis.com/vgv-assets/images/items/energy_booster.png", "description": ""},
'5900': {"cost": "", "name": "+100 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5901': {"cost": "", "name": "+125 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5902': {"cost": "", "name": "+150 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5903': {"cost": "", "name": "+250 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5904': {"cost": "", "name": "+125 Mana", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5905': {"cost": "", "name": "+150 Mana", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5906': {"cost": "", "name": "+20 Attack Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5907': {"cost": "", "name": "+30 Attack Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5908': {"cost": "", "name": "+60 Attack Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5909': {"cost": "", "name": "+4 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5910': {"cost": "", "name": "+5 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5911': {"cost": "", "name": "+8 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5912': {"cost": "", "name": "+10 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5913': {"cost": "", "name": "+14 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5914': {"cost": "", "name": "+15 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5915': {"cost": "", "name": "+1 Mana Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5916': {"cost": "", "name": "+4 Mana Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5917': {"cost": "", "name": "+15 Movement Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5918': {"cost": "", "name": "+20 Movement Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5919': {"cost": "", "name": "+25 Movement Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5920': {"cost": "", "name": "+4 All Stats", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5921': {"cost": "", "name": "+5 All Stats", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5922': {"cost": "", "name": "+6 All Stats", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5923': {"cost": "", "name": "+8 All Stats", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5924': {"cost": "", "name": "+6 Intelligence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5925': {"cost": "", "name": "+8 Intelligence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5926': {"cost": "", "name": "+12 Intelligence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5927': {"cost": "", "name": "+5 Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5928': {"cost": "", "name": "+12 Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5929': {"cost": "", "name": "+15 Agility", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5930': {"cost": "", "name": "+3 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5931': {"cost": "", "name": "+4 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5932': {"cost": "", "name": "+5 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5933': {"cost": "", "name": "+6 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5934': {"cost": "", "name": "+8 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5935': {"cost": "", "name": "+5% Magic Resistance", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5936': {"cost": "", "name": "+8% Magic Resistance", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5937': {"cost": "", "name": "+10% Magic Resistance", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5938': {"cost": "", "name": "+15 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5939': {"cost": "", "name": "+30 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5940': {"cost": "", "name": "+40 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5941': {"cost": "", "name": "+50 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5942': {"cost": "", "name": "+75 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5943': {"cost": "", "name": "+100 Attack Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5944': {"cost": "", "name": "+125 Attack Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5945': {"cost": "", "name": "+200 Attack Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5946': {"cost": "", "name": "+50 Cast Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5947': {"cost": "", "name": "+75 Cast Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5948': {"cost": "", "name": "+5% Spell Amplification", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5949': {"cost": "", "name": "+8% Spell Amplification", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5950': {"cost": "", "name": "8% Cooldown Reduction", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5951': {"cost": "", "name": "15% Cooldown Reduction", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5952': {"cost": "", "name": "20% Cooldown Reduction", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5953': {"cost": "", "name": "-20s Respawn Time", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5954': {"cost": "", "name": "-25s Respawn Time", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5955': {"cost": "", "name": "+30 Gold/Min", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5956': {"cost": "", "name": "+60 Gold/Min", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5957': {"cost": "", "name": "+150 Gold/Min", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5958': {"cost": "", "name": "+10 Movement Speed", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5959': {"cost": "", "name": "+200 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5960': {"cost": "", "name": "+20 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5961': {"cost": "", "name": "+2 Mana Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5962': {"cost": "", "name": "+20 Agility", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5963': {"cost": "", "name": "+150 Attack Range", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5964': {"cost": "", "name": "-30s Respawn Time", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5965': {"cost": "", "name": "+10 Intelligence", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5966': {"cost": "", "name": "+7 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5968': {"cost": "", "name": "+90 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5969': {"cost": "", "name": "+6 Health Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5970': {"cost": "", "name": "+7 Armor", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5971': {"cost": "", "name": "10% Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5972': {"cost": "", "name": "15% Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5973': {"cost": "", "name": "20% Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5974': {"cost": "", "name": "25% Evasion", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5975': {"cost": "", "name": "-15s Respawn Time", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5976': {"cost": "", "name": "+400 Health", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5977': {"cost": "", "name": "-0.3s Battery Assault Interval", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5979': {"cost": "", "name": "+100 Damage", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5980': {"cost": "", "name": "+6 Mana Regen", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5981': {"cost": "", "name": "+200 Purification Damage/Heal", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5982': {"cost": "", "name": "+8 Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5983': {"cost": "", "name": "+5% XP Gain", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5984': {"cost": "", "name": "+25 Strength", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5985': {"cost": "", "name": "+10% XP Gain", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5986': {"cost": "", "name": "+15% XP Gain", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5987': {"cost": "", "name": "+25% XP Gain", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},
'5988': {"cost": "", "name": "+1.5s Hoof Stomp Duration", "scepter_mods": [], "scepter": "", "notes": [], "mana": "", "cooldown": "", "details": [["BEHAVIOR:", ["Passive"]]], "lore": "", "icon": "", "description": ""},