dota 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7db9f7008f3485959218e79d9319102df959a31d
4
- data.tar.gz: eec4ff93069f2c4b23bd8febbbdf955bd10d46f4
3
+ metadata.gz: 9bb2a2f7599143b39705e01b777eac16e1302794
4
+ data.tar.gz: e0e5795180747cf1a482b3c9e8092a45450dc150
5
5
  SHA512:
6
- metadata.gz: e2994598f653a6b61d71e20895be66740363d7f2bc85b9928ae1f7f7da8885afdd528d4e4e203c52743e1b71d05b724460efdd7a6943bda6d46480b00165b243
7
- data.tar.gz: 6bc37bd715f37cff10dc68bbac773e2d6c1a0420367f81202ae6d7d19367f679625471440b9bcbb57aea381eef3f01f6cb066adb876b7479876a2d94c61d3359
6
+ metadata.gz: 41a5d35f2da35d9064292f96d0de878162ad86f82eb66078e0869fafd06423001f0138012487b5f08854ee9d5c38c7f9506f632eac72e04d8be68262ca3caa3a
7
+ data.tar.gz: cc6f57b2e1b7c1f355e711cf99f3cd9ce3e1fa58111b39b60eb62543f91b88c3762f1b5bf393f4371ca1fd4e251585b198d3bb5d66953b6062a994047eb86385
data/README.md CHANGED
@@ -56,6 +56,9 @@ api.heroes # => (Cached) All heroes
56
56
  api.items(114) # => (Cached) A single item - "Heart of Tarrasque"
57
57
  api.items # => (Cached) All items
58
58
 
59
+ api.abilities(5003) # => (Cached) A single ability - "Mana Break"
60
+ api.abilities # => (Cached) All abilities
61
+
59
62
  api.cosmetic_rarities # => All cosmetic rarities
60
63
 
61
64
  api.teams(1375614) # => A single team - "Newbee"
@@ -169,7 +172,7 @@ match.sequence # Integer, A 'sequence number', representing the order in w
169
172
  match.season # Integer, Season the match was played in
170
173
  match.cluster # Integer, Server cluster the match was played on
171
174
  match.starts_at # Time, When the match started
172
- match.first_blood # Integer, Seconds since the match started when first blood occured
175
+ match.first_blood # Integer, Seconds since the match started when first blood occurred
173
176
  match.duration # Integer, Length of the match, in seconds since the match began
174
177
  match.winner # Symbol, :radiant or :dire
175
178
  match.positive_votes # Integer, Number of thumbs-up the game has received
@@ -236,7 +239,7 @@ radiant.series_wins # Integer, Number of wins in the series so far
236
239
  player.id # Integer, 32-bit Steam ID
237
240
  player.hero # Dota::API::Hero, Player's hero
238
241
  player.items # Array[Dota::API::Item], Player's inventory (6 items)
239
- player.slot # Integer, See https://wiki.teamfortress.com/wiki/WebAPI/GetMatchDetails#Player_Slot
242
+ player.slot # Integer, (1-5)
240
243
  player.level # Integer, The player's level at match end
241
244
  player.kills # Integer, Number of kills attributed to this player
242
245
  player.deaths # Integer, Times this player died during the match
@@ -253,6 +256,8 @@ player.gold_spent # Integer, Amount of gold the player spent
253
256
  player.hero_damage # Integer, Amount of damage the player dealt to heroes
254
257
  player.tower_damage # Integer, Amount of damage the player dealt to towers
255
258
  player.hero_healing # Integer, Amount of health the player had healed on heroes
259
+ player.additional_units # Array[Dota::API::Unit], Units under player's control (for example, summoned ones)
260
+ player.ability_upgrades # Array[Dota::API:AbilityUpgrade], Player's learned abilities (up to 25)
256
261
 
257
262
  # Additional methods in LiveMatch::Player
258
263
  player.name # String, Name of the player
@@ -264,6 +269,34 @@ player.position_x # Float
264
269
  player.position_y # Float
265
270
  ```
266
271
 
272
+ #### Units
273
+
274
+ ```ruby
275
+ unit.name # String, Unit's name
276
+ unit.items # Array[Dota::API:Item], Unit's inventory (6 slots)
277
+ ```
278
+
279
+ #### Ability Upgrades
280
+
281
+ ```ruby
282
+ ability_upgrade.time # Integer, Seconds since the match started when the player learned an ability
283
+ ability_upgrade.level # Integer, Player's level when the ability was learned
284
+ ability_upgrade.ability # Dota::API:Ability
285
+ ```
286
+
287
+ #### Abilities
288
+
289
+ ```ruby
290
+ ability.id # Integer, ID of the ability
291
+ ability.name # String, Name of the ability (for example, "Mana Break")
292
+ ability.full_name # String, Full name of the ability (for example, "Antimage Mana Break")
293
+ ability.image_url # String, URL of the ability image
294
+ # Allowed arguments:
295
+ # :lg - default, 128x128 PNG image
296
+ # :hp1 - 90x90 PNG image
297
+ # :hp2 - 105x105 PNG image
298
+ ```
299
+
267
300
  #### Cosmetic Rarities
268
301
 
269
302
  ```ruby
@@ -0,0 +1,2240 @@
1
+ 5001:
2
+ - default_attack
3
+ - Default Attack
4
+ - Default Attack
5
+ 5002:
6
+ - stats
7
+ - Stats
8
+ - Stats
9
+ 5003:
10
+ - antimage_mana_break
11
+ - Mana Break
12
+ - Antimage Mana Break
13
+ 5004:
14
+ - antimage_blink
15
+ - Blink
16
+ - Antimage Blink
17
+ 5005:
18
+ - antimage_spell_shield
19
+ - Spell Shield
20
+ - Antimage Spell Shield
21
+ 5006:
22
+ - antimage_mana_void
23
+ - Mana Void
24
+ - Antimage Mana Void
25
+ 5007:
26
+ - axe_berserkers_call
27
+ - Berserkers Call
28
+ - Axe Berserkers Call
29
+ 5008:
30
+ - axe_battle_hunger
31
+ - Battle Hunger
32
+ - Axe Battle Hunger
33
+ 5009:
34
+ - axe_counter_helix
35
+ - Counter Helix
36
+ - Axe Counter Helix
37
+ 5010:
38
+ - axe_culling_blade
39
+ - Culling Blade
40
+ - Axe Culling Blade
41
+ 5011:
42
+ - bane_brain_sap
43
+ - Brain Sap
44
+ - Bane Brain Sap
45
+ 5012:
46
+ - bane_enfeeble
47
+ - Enfeeble
48
+ - Bane Enfeeble
49
+ 5013:
50
+ - bane_fiends_grip
51
+ - Fiends Grip
52
+ - Bane Fiends Grip
53
+ 5014:
54
+ - bane_nightmare
55
+ - Nightmare
56
+ - Bane Nightmare
57
+ 5015:
58
+ - bloodseeker_bloodrage
59
+ - Bloodrage
60
+ - Bloodseeker Bloodrage
61
+ 5016:
62
+ - bloodseeker_blood_bath
63
+ - Blood Bath
64
+ - Bloodseeker Blood Bath
65
+ 5017:
66
+ - bloodseeker_thirst
67
+ - Thirst
68
+ - Bloodseeker Thirst
69
+ 5018:
70
+ - bloodseeker_rupture
71
+ - Rupture
72
+ - Bloodseeker Rupture
73
+ 5019:
74
+ - drow_ranger_frost_arrows
75
+ - Frost Arrows
76
+ - Drow Ranger Frost Arrows
77
+ 5020:
78
+ - drow_ranger_silence
79
+ - Silence
80
+ - Drow Ranger Silence
81
+ 5021:
82
+ - drow_ranger_trueshot
83
+ - Trueshot
84
+ - Drow Ranger Trueshot
85
+ 5022:
86
+ - drow_ranger_marksmanship
87
+ - Marksmanship
88
+ - Drow Ranger Marksmanship
89
+ 5023:
90
+ - earthshaker_fissure
91
+ - Fissure
92
+ - Earthshaker Fissure
93
+ 5024:
94
+ - earthshaker_enchant_totem
95
+ - Enchant Totem
96
+ - Earthshaker Enchant Totem
97
+ 5025:
98
+ - earthshaker_aftershock
99
+ - Aftershock
100
+ - Earthshaker Aftershock
101
+ 5026:
102
+ - earthshaker_echo_slam
103
+ - Echo Slam
104
+ - Earthshaker Echo Slam
105
+ 5027:
106
+ - juggernaut_blade_dance
107
+ - Blade Dance
108
+ - Juggernaut Blade Dance
109
+ 5028:
110
+ - juggernaut_blade_fury
111
+ - Blade Fury
112
+ - Juggernaut Blade Fury
113
+ 5029:
114
+ - juggernaut_healing_ward
115
+ - Healing Ward
116
+ - Juggernaut Healing Ward
117
+ 5030:
118
+ - juggernaut_omni_slash
119
+ - Omnislash
120
+ - Juggernaut Omnislash
121
+ 5031:
122
+ - kunkka_torrent
123
+ - Torrent
124
+ - Kunkka Torrent
125
+ 5032:
126
+ - kunkka_tidebringer
127
+ - Tidebringer
128
+ - Kunkka Tidebringer
129
+ 5033:
130
+ - kunkka_x_marks_the_spot
131
+ - X Marks The Spot
132
+ - Kunkka X Marks The Spot
133
+ 5034:
134
+ - kunkka_return
135
+ - Return
136
+ - Kunkka Return
137
+ 5035:
138
+ - kunkka_ghostship
139
+ - Ghostship
140
+ - Kunkka Ghostship
141
+ 5040:
142
+ - lina_dragon_slave
143
+ - Dragon Slave
144
+ - Lina Dragon Slave
145
+ 5041:
146
+ - lina_light_strike_array
147
+ - Light Strike Array
148
+ - Lina Light Strike Array
149
+ 5042:
150
+ - lina_fiery_soul
151
+ - Fiery Soul
152
+ - Lina Fiery Soul
153
+ 5043:
154
+ - lina_laguna_blade
155
+ - Laguna Blade
156
+ - Lina Laguna Blade
157
+ 5044:
158
+ - lion_impale
159
+ - Impale
160
+ - Lion Impale
161
+ 5045:
162
+ - lion_voodoo
163
+ - Voodoo
164
+ - Lion Voodoo
165
+ 5046:
166
+ - lion_mana_drain
167
+ - Mana Drain
168
+ - Lion Mana Drain
169
+ 5047:
170
+ - lion_finger_of_death
171
+ - Finger Of Death
172
+ - Lion Finger Of Death
173
+ 5048:
174
+ - mirana_arrow
175
+ - Sacred Arrow
176
+ - Mirana Sacred Arrow
177
+ 5049:
178
+ - mirana_invis
179
+ - Moonlight Shadow
180
+ - Mirana Moonlight Shadow
181
+ 5050:
182
+ - mirana_leap
183
+ - Leap
184
+ - Mirana Leap
185
+ 5051:
186
+ - mirana_starfall
187
+ - Starfall
188
+ - Mirana Starfall
189
+ 5052:
190
+ - morphling_waveform
191
+ - Waveform
192
+ - Morphling Waveform
193
+ 5053:
194
+ - morphling_adaptive_strike
195
+ - Adaptive Strike
196
+ - Morphling Adaptive Strike
197
+ 5054:
198
+ - morphling_morph
199
+ - Morph
200
+ - Morphling Morph
201
+ 5055:
202
+ - morphling_morph_agi
203
+ - Morph Agi
204
+ - Morphling Morph Agi
205
+ 5056:
206
+ - morphling_morph_str
207
+ - Morph Str
208
+ - Morphling Morph Str
209
+ 5057:
210
+ - morphling_replicate
211
+ - Replicate
212
+ - Morphling Replicate
213
+ 5058:
214
+ - morphling_morph_replicate
215
+ - Morph Replicate
216
+ - Morphling Morph Replicate
217
+ 5059:
218
+ - nevermore_shadowraze1
219
+ - Shadowraze1
220
+ - Nevermore Shadowraze1
221
+ 5060:
222
+ - nevermore_shadowraze1
223
+ - Shadowraze2
224
+ - Nevermore Shadowraze2
225
+ 5061:
226
+ - nevermore_shadowraze1
227
+ - Shadowraze3
228
+ - Nevermore Shadowraze3
229
+ 5062:
230
+ - nevermore_necromastery
231
+ - Necromastery
232
+ - Nevermore Necromastery
233
+ 5063:
234
+ - nevermore_dark_lord
235
+ - Presence of the Dark Lord
236
+ - Nevermore Presence of the Dark Lord
237
+ 5064:
238
+ - nevermore_requiem
239
+ - Requiem of Souls
240
+ - Nevermore Requiem of Souls
241
+ 5065:
242
+ - phantom_lancer_spirit_lance
243
+ - Spirit Lance
244
+ - Phantom Lancer Spirit Lance
245
+ 5066:
246
+ - phantom_lancer_doppelganger
247
+ - Phantom Doppelganger
248
+ - Phantom Lancer Doppelganger
249
+ 5067:
250
+ - phantom_lancer_phantom_edge
251
+ - Phantom Rush
252
+ - Phantom Lancer Phantom Rush
253
+ 5068:
254
+ - phantom_lancer_juxtapose
255
+ - Juxtapose
256
+ - Phantom Lancer Juxtapose
257
+ 5069:
258
+ - puck_illusory_orb
259
+ - Illusory Orb
260
+ - Puck Illusory Orb
261
+ 5070:
262
+ - puck_ethereal_jaunt
263
+ - Ethereal Jaunt
264
+ - Puck Ethereal Jaunt
265
+ 5071:
266
+ - puck_waning_rift
267
+ - Waning Rift
268
+ - Puck Waning Rift
269
+ 5072:
270
+ - puck_phase_shift
271
+ - Phase Shift
272
+ - Puck Phase Shift
273
+ 5073:
274
+ - puck_dream_coil
275
+ - Dream Coil
276
+ - Puck Dream Coil
277
+ 5074:
278
+ - pudge_flesh_heap
279
+ - Flesh Heap
280
+ - Pudge Flesh Heap
281
+ 5075:
282
+ - pudge_meat_hook
283
+ - Meat Hook
284
+ - Pudge Meat Hook
285
+ 5076:
286
+ - pudge_rot
287
+ - Rot
288
+ - Pudge Rot
289
+ 5077:
290
+ - pudge_dismember
291
+ - Dismember
292
+ - Pudge Dismember
293
+ 5078:
294
+ - shadow_shaman_ether_shock
295
+ - Ether Shock
296
+ - Shadow Shaman Ether Shock
297
+ 5079:
298
+ - shadow_shaman_voodoo
299
+ - Voodoo
300
+ - Shadow Shaman Voodoo
301
+ 5080:
302
+ - shadow_shaman_shackles
303
+ - Shackles
304
+ - Shadow Shaman Shackles
305
+ 5081:
306
+ - shadow_shaman_mass_serpent_ward
307
+ - Mass Serpent Ward
308
+ - Shadow Shaman Mass Serpent Ward
309
+ 5082:
310
+ - razor_plasma_field
311
+ - Plasma Field
312
+ - Razor Plasma Field
313
+ 5083:
314
+ - razor_static_link
315
+ - Static Link
316
+ - Razor Static Link
317
+ 5084:
318
+ - razor_unstable_current
319
+ - Unstable Current
320
+ - Razor Unstable Current
321
+ 5085:
322
+ - razor_eye_of_the_storm
323
+ - Eye Of The Storm
324
+ - Razor Eye Of The Storm
325
+ 5086:
326
+ - wraith_king_hellfire_blast
327
+ - Hellfire Blast
328
+ - Wraith King Hellfire Blast
329
+ 5087:
330
+ - wraith_king_vampiric_aura
331
+ - Vampiric Aura
332
+ - Wraith King Vampiric Aura
333
+ 5088:
334
+ - wraith_king_mortal_strike
335
+ - Mortal Strike
336
+ - Wraith King Mortal Strike
337
+ 5089:
338
+ - wraith_king_reincarnation
339
+ - Reincarnation
340
+ - Wraith King Reincarnation
341
+ 5090:
342
+ - death_prophet_carrion_swarm
343
+ - Carrion Swarm
344
+ - Death Prophet Carrion Swarm
345
+ 5091:
346
+ - death_prophet_silence
347
+ - Silence
348
+ - Death Prophet Silence
349
+ 5092:
350
+ - death_prophet_witchcraft
351
+ - Witchcraft
352
+ - Death Prophet Witchcraft
353
+ 5093:
354
+ - death_prophet_exorcism
355
+ - Exorcism
356
+ - Death Prophet Exorcism
357
+ 5094:
358
+ - sven_storm_bolt
359
+ - Storm Bolt
360
+ - Sven Storm Bolt
361
+ 5095:
362
+ - sven_great_cleave
363
+ - Great Cleave
364
+ - Sven Great Cleave
365
+ 5096:
366
+ - sven_warcry
367
+ - Warcry
368
+ - Sven Warcry
369
+ 5097:
370
+ - sven_gods_strength
371
+ - Gods Strength
372
+ - Sven Gods Strength
373
+ 5098:
374
+ - storm_spirit_static_remnant
375
+ - Static Remnant
376
+ - Storm Spirit Static Remnant
377
+ 5099:
378
+ - storm_spirit_electric_vortex
379
+ - Electric Vortex
380
+ - Storm Spirit Electric Vortex
381
+ 5100:
382
+ - storm_spirit_overload
383
+ - Overload
384
+ - Storm Spirit Overload
385
+ 5101:
386
+ - storm_spirit_ball_lightning
387
+ - Ball Lightning
388
+ - Storm Spirit Ball Lightning
389
+ 5102:
390
+ - sandking_burrowstrike
391
+ - Burrowstrike
392
+ - Sandking Burrowstrike
393
+ 5103:
394
+ - sandking_sand_storm
395
+ - Sand Storm
396
+ - Sandking Sand Storm
397
+ 5104:
398
+ - sandking_caustic_finale
399
+ - Caustic Finale
400
+ - Sandking Caustic Finale
401
+ 5105:
402
+ - sandking_epicenter
403
+ - Epicenter
404
+ - Sandking Epicenter
405
+ 5106:
406
+ - tiny_avalanche
407
+ - Avalanche
408
+ - Tiny Avalanche
409
+ 5107:
410
+ - tiny_toss
411
+ - Toss
412
+ - Tiny Toss
413
+ 5108:
414
+ - tiny_craggy_exterior
415
+ - Craggy Exterior
416
+ - Tiny Craggy Exterior
417
+ 5109:
418
+ - tiny_grow
419
+ - Grow
420
+ - Tiny Grow
421
+ 5110:
422
+ - zeus_arc_lightning
423
+ - Arc Lightning
424
+ - Zeus Arc Lightning
425
+ 5111:
426
+ - zeus_lightning_bolt
427
+ - Lightning Bolt
428
+ - Zeus Lightning Bolt
429
+ 5112:
430
+ - zeus_static_field
431
+ - Static Field
432
+ - Zeus Static Field
433
+ 5113:
434
+ - zeus_thundergods_wrath
435
+ - Thundergods Wrath
436
+ - Zeus Thundergods Wrath
437
+ 5114:
438
+ - slardar_sprint
439
+ - Sprint
440
+ - Slardar Sprint
441
+ 5115:
442
+ - slardar_slithereen_crush
443
+ - Slithereen Crush
444
+ - Slardar Slithereen Crush
445
+ 5116:
446
+ - slardar_bash
447
+ - Bash
448
+ - Slardar Bash
449
+ 5117:
450
+ - slardar_amplify_damage
451
+ - Amplify Damage
452
+ - Slardar Amplify Damage
453
+ 5118:
454
+ - tidehunter_gush
455
+ - Gush
456
+ - Tidehunter Gush
457
+ 5119:
458
+ - tidehunter_kraken_shell
459
+ - Kraken Shell
460
+ - Tidehunter Kraken Shell
461
+ 5120:
462
+ - tidehunter_anchor_smash
463
+ - Anchor Smash
464
+ - Tidehunter Anchor Smash
465
+ 5121:
466
+ - tidehunter_ravage
467
+ - Ravage
468
+ - Tidehunter Ravage
469
+ 5122:
470
+ - vengefulspirit_magic_missile
471
+ - Magic Missile
472
+ - Vengeful Spirit Magic Missile
473
+ 5123:
474
+ - vengefulspirit_command_aura
475
+ - Command Aura
476
+ - Vengeful Spirit Command Aura
477
+ 5124:
478
+ - vengefulspirit_wave_of_terror
479
+ - Wave Of Terror
480
+ - Vengeful Spirit Wave Of Terror
481
+ 5125:
482
+ - vengefulspirit_nether_swap
483
+ - Nether Swap
484
+ - Vengeful Spirit Nether Swap
485
+ 5126:
486
+ - crystal_maiden_crystal_nova
487
+ - Crystal Nova
488
+ - Crystal Maiden Crystal Nova
489
+ 5127:
490
+ - crystal_maiden_frostbite
491
+ - Frostbite
492
+ - Crystal Maiden Frostbite
493
+ 5128:
494
+ - crystal_maiden_brilliance_aura
495
+ - Brilliance Aura
496
+ - Crystal Maiden Brilliance Aura
497
+ 5129:
498
+ - crystal_maiden_freezing_field
499
+ - Freezing Field
500
+ - Crystal Maiden Freezing Field
501
+ 5130:
502
+ - windrunner_shackleshot
503
+ - Shackleshot
504
+ - Windrunner Shackleshot
505
+ 5131:
506
+ - windrunner_powershot
507
+ - Powershot
508
+ - Windrunner Powershot
509
+ 5132:
510
+ - windrunner_windrun
511
+ - Windrun
512
+ - Windrunner Windrun
513
+ 5133:
514
+ - windrunner_focusfire
515
+ - Focusfire
516
+ - Windrunner Focusfire
517
+ 5134:
518
+ - lich_frost_nova
519
+ - Frost Nova
520
+ - Lich Frost Nova
521
+ 5135:
522
+ - lich_frost_armor
523
+ - Frost Armor
524
+ - Lich Frost Armor
525
+ 5136:
526
+ - lich_dark_ritual
527
+ - Dark Ritual
528
+ - Lich Dark Ritual
529
+ 5137:
530
+ - lich_chain_frost
531
+ - Chain Frost
532
+ - Lich Chain Frost
533
+ 5138:
534
+ - witch_doctor_paralyzing_cask
535
+ - Paralyzing Cask
536
+ - Witch Doctor Paralyzing Cask
537
+ 5139:
538
+ - witch_doctor_voodoo_restoration
539
+ - Voodoo Restoration
540
+ - Witch Doctor Voodoo Restoration
541
+ 5140:
542
+ - witch_doctor_maledict
543
+ - Maledict
544
+ - Witch Doctor Maledict
545
+ 5141:
546
+ - witch_doctor_death_ward
547
+ - Death Ward
548
+ - Witch Doctor Death Ward
549
+ 5142:
550
+ - riki_smoke_screen
551
+ - Smoke Screen
552
+ - Riki Smoke Screen
553
+ 5143:
554
+ - riki_blink_strike
555
+ - Blink Strike
556
+ - Riki Blink Strike
557
+ 5144:
558
+ - riki_backstab
559
+ - Backstab
560
+ - Riki Backstab
561
+ 5145:
562
+ - riki_permanent_invisibility
563
+ - Permanent Invisibility
564
+ - Riki Permanent Invisibility
565
+ 5146:
566
+ - enigma_malefice
567
+ - Malefice
568
+ - Enigma Malefice
569
+ 5147:
570
+ - enigma_demonic_conversion
571
+ - Demonic Conversion
572
+ - Enigma Demonic Conversion
573
+ 5148:
574
+ - enigma_midnight_pulse
575
+ - Midnight Pulse
576
+ - Enigma Midnight Pulse
577
+ 5149:
578
+ - enigma_black_hole
579
+ - Black Hole
580
+ - Enigma Black Hole
581
+ 5150:
582
+ - tinker_laser
583
+ - Laser
584
+ - Tinker Laser
585
+ 5151:
586
+ - tinker_heat_seeking_missile
587
+ - Heat Seeking Missile
588
+ - Tinker Heat Seeking Missile
589
+ 5152:
590
+ - tinker_march_of_the_machines
591
+ - March Of The Machines
592
+ - Tinker March Of The Machines
593
+ 5153:
594
+ - tinker_rearm
595
+ - Rearm
596
+ - Tinker Rearm
597
+ 5154:
598
+ - sniper_shrapnel
599
+ - Shrapnel
600
+ - Sniper Shrapnel
601
+ 5155:
602
+ - sniper_headshot
603
+ - Headshot
604
+ - Sniper Headshot
605
+ 5156:
606
+ - sniper_take_aim
607
+ - Take Aim
608
+ - Sniper Take Aim
609
+ 5157:
610
+ - sniper_assassinate
611
+ - Assassinate
612
+ - Sniper Assassinate
613
+ 5158:
614
+ - necrolyte_death_pulse
615
+ - Death Pulse
616
+ - Necrolyte Death Pulse
617
+ 5159:
618
+ - necrolyte_heartstopper_aura
619
+ - Heartstopper Aura
620
+ - Necrolyte Heartstopper Aura
621
+ 5160:
622
+ - necrolyte_sadist
623
+ - Sadist
624
+ - Necrolyte Sadist
625
+ 5161:
626
+ - necrolyte_reapers_scythe
627
+ - Reapers Scythe
628
+ - Necrolyte Reapers Scythe
629
+ 5162:
630
+ - warlock_fatal_bonds
631
+ - Fatal Bonds
632
+ - Warlock Fatal Bonds
633
+ 5163:
634
+ - warlock_shadow_word
635
+ - Shadow Word
636
+ - Warlock Shadow Word
637
+ 5164:
638
+ - warlock_upheaval
639
+ - Upheaval
640
+ - Warlock Upheaval
641
+ 5165:
642
+ - warlock_rain_of_chaos
643
+ - Rain Of Chaos
644
+ - Warlock Rain Of Chaos
645
+ 5166:
646
+ - warlock_golem_flaming_fists
647
+ - Flaming Fists
648
+ - Warlock Golem Flaming Fists
649
+ 5167:
650
+ - warlock_golem_permanent_immolation
651
+ - Permanent Immolation
652
+ - Warlock Golem Permanent Immolation
653
+ 5168:
654
+ - beastmaster_wild_axes
655
+ - Wild Axes
656
+ - Beastmaster Wild Axes
657
+ 5169:
658
+ - beastmaster_call_of_the_wild
659
+ - Call Of The Wild
660
+ - Beastmaster Call Of The Wild
661
+ 5170:
662
+ - beastmaster_hawk_invisibility
663
+ - Invisibility
664
+ - Beastmaster Hawk Invisibility
665
+ 5171:
666
+ - beastmaster_boar_poison
667
+ - Boar Poison
668
+ - Beastmaster Boar Poison
669
+ 5172:
670
+ - beastmaster_inner_beast
671
+ - Inner Beast
672
+ - Beastmaster Inner Beast
673
+ 5173:
674
+ - queenofpain_shadow_strike
675
+ - Shadow Strike
676
+ - Queen of Pain Shadow Strike
677
+ 5174:
678
+ - queenofpain_blink
679
+ - Blink
680
+ - Queen of Pain Blink
681
+ 5175:
682
+ - queenofpain_scream_of_pain
683
+ - Scream Of Pain
684
+ - Queen of Pain Scream Of Pain
685
+ 5176:
686
+ - queenofpain_sonic_wave
687
+ - Sonic Wave
688
+ - Queen of Pain Sonic Wave
689
+ 5177:
690
+ - beastmaster_primal_roar
691
+ - Primal Roar
692
+ - Beastmaster Primal Roar
693
+ 5178:
694
+ - venomancer_venomous_gale
695
+ - Venomous Gale
696
+ - Venomancer Venomous Gale
697
+ 5179:
698
+ - venomancer_poison_sting
699
+ - Poison Sting
700
+ - Venomancer Poison Sting
701
+ 5180:
702
+ - venomancer_plague_ward
703
+ - Plague Ward
704
+ - Venomancer Plague Ward
705
+ 5181:
706
+ - venomancer_poison_nova
707
+ - Poison Nova
708
+ - Venomancer Poison Nova
709
+ 5182:
710
+ - faceless_void_time_walk
711
+ - Time Walk
712
+ - Faceless Void Time Walk
713
+ 5183:
714
+ - faceless_void_backtrack
715
+ - Backtrack
716
+ - Faceless Void Backtrack
717
+ 5184:
718
+ - faceless_void_time_lock
719
+ - Time Lock
720
+ - Faceless Void Time Lock
721
+ 5185:
722
+ - faceless_void_chronosphere
723
+ - Chronosphere
724
+ - Faceless Void Chronosphere
725
+ 5186:
726
+ - pugna_nether_blast
727
+ - Nether Blast
728
+ - Pugna Nether Blast
729
+ 5187:
730
+ - pugna_decrepify
731
+ - Decrepify
732
+ - Pugna Decrepify
733
+ 5188:
734
+ - pugna_nether_ward
735
+ - Nether Ward
736
+ - Pugna Nether Ward
737
+ 5189:
738
+ - pugna_life_drain
739
+ - Life Drain
740
+ - Pugna Life Drain
741
+ 5190:
742
+ - phantom_assassin_stifling_dagger
743
+ - Stifling Dagger
744
+ - Phantom Assassin Stifling Dagger
745
+ 5191:
746
+ - phantom_assassin_phantom_strike
747
+ - Phantom Strike
748
+ - Phantom Assassin Phantom Strike
749
+ 5192:
750
+ - phantom_assassin_blur
751
+ - Blur
752
+ - Phantom Assassin Blur
753
+ 5193:
754
+ - phantom_assassin_coup_de_grace
755
+ - Coup De Grace
756
+ - Phantom Assassin Coup De Grace
757
+ 5194:
758
+ - templar_assassin_refraction
759
+ - Refraction
760
+ - Templar Assassin Refraction
761
+ 5195:
762
+ - templar_assassin_meld
763
+ - Meld
764
+ - Templar Assassin Meld
765
+ 5196:
766
+ - templar_assassin_psi_blades
767
+ - Psi Blades
768
+ - Templar Assassin Psi Blades
769
+ 5197:
770
+ - templar_assassin_psionic_trap
771
+ - Psionic Trap
772
+ - Templar Assassin Psionic Trap
773
+ 5198:
774
+ - templar_assassin_trap
775
+ - Trap
776
+ - Templar Assassin Trap
777
+ 5199:
778
+ - templar_assassin_self_trap
779
+ - Self Trap
780
+ - Templar Assassin Self Trap
781
+ 5200:
782
+ - necronomicon_warrior_last_will
783
+ - Last Will
784
+ - Necronomicon Warrior Last Will
785
+ 5201:
786
+ - necronomicon_warrior_sight
787
+ - Sight
788
+ - Necronomicon Warrior Sight
789
+ 5202:
790
+ - necronomicon_warrior_mana_burn
791
+ - Mana Burn
792
+ - Necronomicon Warrior Mana Burn
793
+ 5203:
794
+ - necronomicon_archer_mana_burn
795
+ - Mana Burn
796
+ - Necronomicon Archer Mana Burn
797
+ 5204:
798
+ - necronomicon_archer_aoe
799
+ - AoE
800
+ - Necronomicon Archer Aoe
801
+ 5205:
802
+ - courier_return_to_base
803
+ - Return To Base
804
+ - Courier Return To Base
805
+ 5206:
806
+ - courier_transfer_items
807
+ - Transfer Items
808
+ - Courier Transfer Items
809
+ 5207:
810
+ - courier_return_stash_items
811
+ - Return Stash Items
812
+ - Courier Return Stash Items
813
+ 5208:
814
+ - courier_take_stash_items
815
+ - Take Stash Items
816
+ - Courier Take Stash Items
817
+ 5209:
818
+ - courier_shield
819
+ - Shield
820
+ - Courier Shield
821
+ 5210:
822
+ - courier_burst
823
+ - Burst
824
+ - Courier Burst
825
+ 5213:
826
+ - roshan_spell_block
827
+ - Spell Block
828
+ - Roshan Spell Block
829
+ 5214:
830
+ - roshan_bash
831
+ - Bash
832
+ - Roshan Bash
833
+ 5215:
834
+ - roshan_slam
835
+ - Slam
836
+ - Roshan Slam
837
+ 5216:
838
+ - roshan_illusion_protection
839
+ - Illusion Protection
840
+ - Roshan Illusion Protection
841
+ 5217:
842
+ - roshan_devotion
843
+ - Devotion
844
+ - Roshan Devotion
845
+ 5218:
846
+ - viper_poison_attack
847
+ - Poison Attack
848
+ - Viper Poison Attack
849
+ 5219:
850
+ - viper_nethertoxin
851
+ - Nethertoxin
852
+ - Viper Nethertoxin
853
+ 5220:
854
+ - viper_corrosive_skin
855
+ - Corrosive Skin
856
+ - Viper Corrosive Skin
857
+ 5221:
858
+ - viper_viper_strike
859
+ - Viper Strike
860
+ - Viper Viper Strike
861
+ 5222:
862
+ - luna_lucent_beam
863
+ - Lucent Beam
864
+ - Luna Lucent Beam
865
+ 5223:
866
+ - luna_moon_glaive
867
+ - Moon Glaive
868
+ - Luna Moon Glaive
869
+ 5224:
870
+ - luna_lunar_blessing
871
+ - Lunar Blessing
872
+ - Luna Lunar Blessing
873
+ 5225:
874
+ - luna_eclipse
875
+ - Eclipse
876
+ - Luna Eclipse
877
+ 5226:
878
+ - dragon_knight_breathe_fire
879
+ - Breathe Fire
880
+ - Dragon Knight Breathe Fire
881
+ 5227:
882
+ - dragon_knight_dragon_tail
883
+ - Dragon Tail
884
+ - Dragon Knight Dragon Tail
885
+ 5228:
886
+ - dragon_knight_dragon_blood
887
+ - Dragon Blood
888
+ - Dragon Knight Dragon Blood
889
+ 5229:
890
+ - dragon_knight_elder_dragon_form
891
+ - Elder Dragon Form
892
+ - Dragon Knight Elder Dragon Form
893
+ 5232:
894
+ - dragon_knight_frost_breath
895
+ - Frost Breath
896
+ - Dragon Knight Frost Breath
897
+ 5233:
898
+ - dazzle_poison_touch
899
+ - Poison Touch
900
+ - Dazzle Poison Touch
901
+ 5234:
902
+ - dazzle_shallow_grave
903
+ - Shallow Grave
904
+ - Dazzle Shallow Grave
905
+ 5235:
906
+ - dazzle_shadow_wave
907
+ - Shadow Wave
908
+ - Dazzle Shadow Wave
909
+ 5236:
910
+ - dazzle_weave
911
+ - Weave
912
+ - Dazzle Weave
913
+ 5237:
914
+ - rattletrap_battery_assault
915
+ - Battery Assault
916
+ - Rattletrap Battery Assault
917
+ 5238:
918
+ - rattletrap_power_cogs
919
+ - Power Cogs
920
+ - Rattletrap Power Cogs
921
+ 5239:
922
+ - rattletrap_rocket_flare
923
+ - Rocket Flare
924
+ - Rattletrap Rocket Flare
925
+ 5240:
926
+ - rattletrap_hookshot
927
+ - Hookshot
928
+ - Rattletrap Hookshot
929
+ 5241:
930
+ - leshrac_split_earth
931
+ - Split Earth
932
+ - Leshrac Split Earth
933
+ 5242:
934
+ - leshrac_diabolic_edict
935
+ - Diabolic Edict
936
+ - Leshrac Diabolic Edict
937
+ 5243:
938
+ - leshrac_lightning_storm
939
+ - Lightning Storm
940
+ - Leshrac Lightning Storm
941
+ 5244:
942
+ - leshrac_pulse_nova
943
+ - Pulse Nova
944
+ - Leshrac Pulse Nova
945
+ 5245:
946
+ - furion_sprout
947
+ - Sprout
948
+ - Furion Sprout
949
+ 5246:
950
+ - furion_teleportation
951
+ - Teleportation
952
+ - Furion Teleportation
953
+ 5247:
954
+ - furion_force_of_nature
955
+ - Force Of Nature
956
+ - Furion Force Of Nature
957
+ 5248:
958
+ - furion_wrath_of_nature
959
+ - Wrath Of Nature
960
+ - Furion Wrath Of Nature
961
+ 5249:
962
+ - life_stealer_rage
963
+ - Rage
964
+ - Life Stealer Rage
965
+ 5250:
966
+ - life_stealer_feast
967
+ - Feast
968
+ - Life Stealer Feast
969
+ 5251:
970
+ - life_stealer_open_wounds
971
+ - Open Wounds
972
+ - Life Stealer Open Wounds
973
+ 5252:
974
+ - life_stealer_infest
975
+ - Infest
976
+ - Life Stealer Infest
977
+ 5253:
978
+ - life_stealer_consume
979
+ - Consume
980
+ - Life Stealer Consume
981
+ 5255:
982
+ - dark_seer_vacuum
983
+ - Vacuum
984
+ - Dark Seer Vacuum
985
+ 5256:
986
+ - dark_seer_ion_shell
987
+ - Ion Shell
988
+ - Dark Seer Ion Shell
989
+ 5257:
990
+ - dark_seer_surge
991
+ - Surge
992
+ - Dark Seer Surge
993
+ 5258:
994
+ - dark_seer_wall_of_replica
995
+ - Wall Of Replica
996
+ - Dark Seer Wall Of Replica
997
+ 5259:
998
+ - clinkz_strafe
999
+ - Strafe
1000
+ - Clinkz Strafe
1001
+ 5260:
1002
+ - clinkz_searing_arrows
1003
+ - Searing Arrows
1004
+ - Clinkz Searing Arrows
1005
+ 5261:
1006
+ - clinkz_wind_walk
1007
+ - Wind Walk
1008
+ - Clinkz Wind Walk
1009
+ 5262:
1010
+ - clinkz_death_pact
1011
+ - Death Pact
1012
+ - Clinkz Death Pact
1013
+ 5263:
1014
+ - omniknight_purification
1015
+ - Purification
1016
+ - Omniknight Purification
1017
+ 5264:
1018
+ - omniknight_repel
1019
+ - Repel
1020
+ - Omniknight Repel
1021
+ 5265:
1022
+ - omniknight_degen_aura
1023
+ - Degen Aura
1024
+ - Omniknight Degen Aura
1025
+ 5266:
1026
+ - omniknight_guardian_angel
1027
+ - Guardian Angel
1028
+ - Omniknight Guardian Angel
1029
+ 5267:
1030
+ - enchantress_untouchable
1031
+ - Untouchable
1032
+ - Enchantress Untouchable
1033
+ 5268:
1034
+ - enchantress_enchant
1035
+ - Enchant
1036
+ - Enchantress Enchant
1037
+ 5269:
1038
+ - enchantress_natures_attendants
1039
+ - Natures Attendants
1040
+ - Enchantress Natures Attendants
1041
+ 5270:
1042
+ - enchantress_impetus
1043
+ - Impetus
1044
+ - Enchantress Impetus
1045
+ 5271:
1046
+ - huskar_inner_vitality
1047
+ - Inner Vitality
1048
+ - Huskar Inner Vitality
1049
+ 5272:
1050
+ - huskar_burning_spear
1051
+ - Burning Spear
1052
+ - Huskar Burning Spear
1053
+ 5273:
1054
+ - huskar_berserkers_blood
1055
+ - Berserkers Blood
1056
+ - Huskar Berserkers Blood
1057
+ 5274:
1058
+ - huskar_life_break
1059
+ - Life Break
1060
+ - Huskar Life Break
1061
+ 5275:
1062
+ - night_stalker_void
1063
+ - Void
1064
+ - Night Stalker Void
1065
+ 5276:
1066
+ - night_stalker_crippling_fear
1067
+ - Crippling Fear
1068
+ - Night Stalker Crippling Fear
1069
+ 5277:
1070
+ - night_stalker_hunter_in_the_night
1071
+ - Hunter In The Night
1072
+ - Night Stalker Hunter In The Night
1073
+ 5278:
1074
+ - night_stalker_darkness
1075
+ - Darkness
1076
+ - Night Stalker Darkness
1077
+ 5279:
1078
+ - broodmother_spawn_spiderlings
1079
+ - Spawn Spiderlings
1080
+ - Broodmother Spawn Spiderlings
1081
+ 5280:
1082
+ - broodmother_spin_web
1083
+ - Spin Web
1084
+ - Broodmother Spin Web
1085
+ 5281:
1086
+ - broodmother_incapacitating_bite
1087
+ - Incapacitating Bite
1088
+ - Broodmother Incapacitating Bite
1089
+ 5282:
1090
+ - broodmother_insatiable_hunger
1091
+ - Insatiable Hunger
1092
+ - Broodmother Insatiable Hunger
1093
+ 5283:
1094
+ - broodmother_spawn_spiderite
1095
+ - Spawn Spiderite
1096
+ - Broodmother Spawn Spiderite
1097
+ 5284:
1098
+ - broodmother_poison_sting
1099
+ - Poison Sting
1100
+ - Broodmother Poison Sting
1101
+ 5285:
1102
+ - bounty_hunter_shuriken_toss
1103
+ - Shuriken Toss
1104
+ - Bounty Hunter Shuriken Toss
1105
+ 5286:
1106
+ - bounty_hunter_jinada
1107
+ - Jinada
1108
+ - Bounty Hunter Jinada
1109
+ 5287:
1110
+ - bounty_hunter_wind_walk
1111
+ - Wind Walk
1112
+ - Bounty Hunter Wind Walk
1113
+ 5288:
1114
+ - bounty_hunter_track
1115
+ - Track
1116
+ - Bounty Hunter Track
1117
+ 5289:
1118
+ - weaver_the_swarm
1119
+ - The Swarm
1120
+ - Weaver The Swarm
1121
+ 5290:
1122
+ - weaver_shukuchi
1123
+ - Shukuchi
1124
+ - Weaver Shukuchi
1125
+ 5291:
1126
+ - weaver_geminate_attack
1127
+ - Geminate Attack
1128
+ - Weaver Geminate Attack
1129
+ 5292:
1130
+ - weaver_time_lapse
1131
+ - Time Lapse
1132
+ - Weaver Time Lapse
1133
+ 5293:
1134
+ - kobold_taskmaster_speed_aura
1135
+ - Speed Aura
1136
+ - Kobold Taskmaster Speed Aura
1137
+ 5294:
1138
+ - centaur_khan_endurance_aura
1139
+ - Endurance Aura
1140
+ - Centaur Khan Endurance Aura
1141
+ 5295:
1142
+ - centaur_khan_war_stomp
1143
+ - War Stomp
1144
+ - Centaur Khan War Stomp
1145
+ 5296:
1146
+ - gnoll_assassin_envenomed_weapon
1147
+ - Envenomed Weapon
1148
+ - Gnoll Assassin Envenomed Weapon
1149
+ 5297:
1150
+ - jakiro_dual_breath
1151
+ - Dual Breath
1152
+ - Jakiro Dual Breath
1153
+ 5298:
1154
+ - jakiro_ice_path
1155
+ - Ice Path
1156
+ - Jakiro Ice Path
1157
+ 5299:
1158
+ - jakiro_liquid_fire
1159
+ - Liquid Fire
1160
+ - Jakiro Liquid Fire
1161
+ 5300:
1162
+ - jakiro_macropyre
1163
+ - Macropyre
1164
+ - Jakiro Macropyre
1165
+ 5301:
1166
+ - ghost_frost_attack
1167
+ - Frost Attack
1168
+ - Ghost Frost Attack
1169
+ 5302:
1170
+ - polar_furbolg_ursa_warrior_thunder_clap
1171
+ - Thunder Clap
1172
+ - Polar Furbolg Ursa Warrior Thunder Clap
1173
+ 5303:
1174
+ - neutral_spell_immunity
1175
+ - Spell Immunity
1176
+ - Neutral Spell Immunity
1177
+ 5304:
1178
+ - ogre_magi_frost_armor
1179
+ - Frost Armor
1180
+ - Ogre Magi Frost Armor
1181
+ 5305:
1182
+ - dark_troll_warlord_ensnare
1183
+ - Ensnare
1184
+ - Dark Troll Warlord Ensnare
1185
+ 5306:
1186
+ - dark_troll_warlord_raise_dead
1187
+ - Raise Dead
1188
+ - Dark Troll Warlord Raise Dead
1189
+ 5307:
1190
+ - giant_wolf_critical_strike
1191
+ - Critical Strike
1192
+ - Giant Wolf Critical Strike
1193
+ 5308:
1194
+ - alpha_wolf_critical_strike
1195
+ - Critical Strike
1196
+ - Alpha Wolf Critical Strike
1197
+ 5309:
1198
+ - alpha_wolf_command_aura
1199
+ - Command Aura
1200
+ - Alpha Wolf Command Aura
1201
+ 5310:
1202
+ - tornado_tempest
1203
+ - Tornado Tempest
1204
+ - Tornado Tempest
1205
+ 5312:
1206
+ - enraged_wildkin_tornado
1207
+ - Tornado
1208
+ - Enraged Wildkin Tornado
1209
+ 5313:
1210
+ - enraged_wildkin_toughness_aura
1211
+ - Toughness Aura
1212
+ - Enraged Wildkin Toughness Aura
1213
+ 5314:
1214
+ - satyr_trickster_purge
1215
+ - Purge
1216
+ - Satyr Trickster Purge
1217
+ 5315:
1218
+ - satyr_soulstealer_mana_burn
1219
+ - Mana Burn
1220
+ - Satyr Soulstealer Mana Burn
1221
+ 5316:
1222
+ - satyr_hellcaller_shockwave
1223
+ - Shockwave
1224
+ - Satyr Hellcaller Shockwave
1225
+ 5317:
1226
+ - satyr_hellcaller_unholy_aura
1227
+ - Unholy Aura
1228
+ - Satyr Hellcaller Unholy Aura
1229
+ 5318:
1230
+ - forest_troll_high_priest_heal
1231
+ - Heal
1232
+ - Forest Troll High Priest Heal
1233
+ 5319:
1234
+ - harpy_storm_chain_lightning
1235
+ - Chain Lightning
1236
+ - Harpy Storm Chain Lightning
1237
+ 5320:
1238
+ - batrider_sticky_napalm
1239
+ - Sticky Napalm
1240
+ - Batrider Sticky Napalm
1241
+ 5321:
1242
+ - batrider_flamebreak
1243
+ - Flamebreak
1244
+ - Batrider Flamebreak
1245
+ 5322:
1246
+ - batrider_firefly
1247
+ - Firefly
1248
+ - Batrider Firefly
1249
+ 5323:
1250
+ - batrider_flaming_lasso
1251
+ - Flaming Lasso
1252
+ - Batrider Flaming Lasso
1253
+ 5324:
1254
+ - black_dragon_splash_attack
1255
+ - Splash Attack
1256
+ - Black Dragon Splash Attack
1257
+ 5325:
1258
+ - blue_dragonspawn_sorcerer_evasion
1259
+ - Evasion
1260
+ - Blue Dragonspawn Sorcerer Evasion
1261
+ 5326:
1262
+ - blue_dragonspawn_overseer_evasion
1263
+ - Evasion
1264
+ - Blue Dragonspawn Overseer Evasion
1265
+ 5327:
1266
+ - blue_dragonspawn_overseer_devotion_aura
1267
+ - Devotion Aura
1268
+ - Blue Dragonspawn Overseer Devotion Aura
1269
+ 5328:
1270
+ - chen_penitence
1271
+ - Penitence
1272
+ - Chen Penitence
1273
+ 5329:
1274
+ - chen_test_of_faith
1275
+ - Test Of Faith
1276
+ - Chen Test Of Faith
1277
+ 5330:
1278
+ - chen_holy_persuasion
1279
+ - Holy Persuasion
1280
+ - Chen Holy Persuasion
1281
+ 5331:
1282
+ - chen_hand_of_god
1283
+ - Hand Of God
1284
+ - Chen Hand Of God
1285
+ 5332:
1286
+ - big_thunder_lizard_slam
1287
+ - Slam
1288
+ - Big Thunder Lizard Slam
1289
+ 5333:
1290
+ - big_thunder_lizard_frenzy
1291
+ - Frenzy
1292
+ - Big Thunder Lizard Frenzy
1293
+ 5334:
1294
+ - spectre_spectral_dagger
1295
+ - Spectral Dagger
1296
+ - Spectre Spectral Dagger
1297
+ 5335:
1298
+ - spectre_desolate
1299
+ - Desolate
1300
+ - Spectre Desolate
1301
+ 5336:
1302
+ - spectre_dispersion
1303
+ - Dispersion
1304
+ - Spectre Dispersion
1305
+ 5337:
1306
+ - spectre_haunt
1307
+ - Haunt
1308
+ - Spectre Haunt
1309
+ 5338:
1310
+ - spectre_reality
1311
+ - Reality
1312
+ - Spectre Reality
1313
+ 5339:
1314
+ - doom_bringer_devour
1315
+ - Devour
1316
+ - Doom Bringer Devour
1317
+ 5340:
1318
+ - doom_bringer_scorched_earth
1319
+ - Scorched Earth
1320
+ - Doom Bringer Scorched Earth
1321
+ 5341:
1322
+ - doom_bringer_lvl_death
1323
+ - Lvl Death
1324
+ - Doom Bringer Lvl Death
1325
+ 5342:
1326
+ - doom_bringer_doom
1327
+ - Doom
1328
+ - Doom Bringer Doom
1329
+ 5343:
1330
+ - doom_bringer_empty
1331
+ - Empty
1332
+ - Doom Bringer Empty
1333
+ 5344:
1334
+ - doom_bringer_empty
1335
+ - Empty
1336
+ - Doom Bringer Empty
1337
+ 5345:
1338
+ - ancient_apparition_cold_feet
1339
+ - Cold Feet
1340
+ - Ancient Apparition Cold Feet
1341
+ 5346:
1342
+ - ancient_apparition_ice_vortex
1343
+ - Ice Vortex
1344
+ - Ancient Apparition Ice Vortex
1345
+ 5347:
1346
+ - ancient_apparition_chilling_touch
1347
+ - Chilling Touch
1348
+ - Ancient Apparition Chilling Touch
1349
+ 5348:
1350
+ - ancient_apparition_ice_blast
1351
+ - Ice Blast
1352
+ - Ancient Apparition Ice Blast
1353
+ 5349:
1354
+ - ancient_apparition_ice_blast_release
1355
+ - Ice Blast Release
1356
+ - Ancient Apparition Ice Blast Release
1357
+ 5350:
1358
+ - backdoor_protection
1359
+ - Backdoor Protection
1360
+ - Backdoor Protection
1361
+ 5351:
1362
+ - backdoor_protection_in_base
1363
+ - Backdoor Protection In Base
1364
+ - Backdoor Protection In Base
1365
+ 5352:
1366
+ - beastmaster_greater_boar_poison
1367
+ - Poison
1368
+ - Beastmaster Greater Boar Poison
1369
+ 5353:
1370
+ - spirit_breaker_charge_of_darkness
1371
+ - Charge Of Darkness
1372
+ - Spirit Breaker Charge Of Darkness
1373
+ 5354:
1374
+ - spirit_breaker_empowering_haste
1375
+ - Empowering Haste
1376
+ - Spirit Breaker Empowering Haste
1377
+ 5355:
1378
+ - spirit_breaker_greater_bash
1379
+ - Greater Bash
1380
+ - Spirit Breaker Greater Bash
1381
+ 5356:
1382
+ - spirit_breaker_nether_strike
1383
+ - Nether Strike
1384
+ - Spirit Breaker Nether Strike
1385
+ 5357:
1386
+ - ursa_earthshock
1387
+ - Earthshock
1388
+ - Ursa Earthshock
1389
+ 5358:
1390
+ - ursa_overpower
1391
+ - Overpower
1392
+ - Ursa Overpower
1393
+ 5359:
1394
+ - ursa_fury_swipes
1395
+ - Fury Swipes
1396
+ - Ursa Fury Swipes
1397
+ 5360:
1398
+ - ursa_enrage
1399
+ - Enrage
1400
+ - Ursa Enrage
1401
+ 5361:
1402
+ - gyrocopter_rocket_barrage
1403
+ - Rocket Barrage
1404
+ - Gyrocopter Rocket Barrage
1405
+ 5362:
1406
+ - gyrocopter_homing_missile
1407
+ - Homing Missile
1408
+ - Gyrocopter Homing Missile
1409
+ 5363:
1410
+ - gyrocopter_flak_cannon
1411
+ - Flak Cannon
1412
+ - Gyrocopter Flak Cannon
1413
+ 5364:
1414
+ - gyrocopter_call_down
1415
+ - Call Down
1416
+ - Gyrocopter Call Down
1417
+ 5365:
1418
+ - alchemist_acid_spray
1419
+ - Acid Spray
1420
+ - Alchemist Acid Spray
1421
+ 5366:
1422
+ - alchemist_unstable_concoction
1423
+ - Unstable Concoction
1424
+ - Alchemist Unstable Concoction
1425
+ 5367:
1426
+ - alchemist_unstable_concoction_throw
1427
+ - Unstable Concoction Throw
1428
+ - Alchemist Unstable Concoction Throw
1429
+ 5368:
1430
+ - alchemist_goblins_greed
1431
+ - Goblins Greed
1432
+ - Alchemist Goblins Greed
1433
+ 5369:
1434
+ - alchemist_chemical_rage
1435
+ - Chemical Rage
1436
+ - Alchemist Chemical Rage
1437
+ 5370:
1438
+ - invoker_quas
1439
+ - Quas
1440
+ - Invoker Quas
1441
+ 5371:
1442
+ - invoker_wex
1443
+ - Wex
1444
+ - Invoker Wex
1445
+ 5372:
1446
+ - invoker_exort
1447
+ - Exort
1448
+ - Invoker Exort
1449
+ 5373:
1450
+ - invoker_empty1
1451
+ - Empty1
1452
+ - Invoker Empty1
1453
+ 5374:
1454
+ - invoker_empty2
1455
+ - Empty2
1456
+ - Invoker Empty2
1457
+ 5375:
1458
+ - invoker_invoke
1459
+ - Invoke
1460
+ - Invoker Invoke
1461
+ 5376:
1462
+ - invoker_cold_snap
1463
+ - Cold Snap
1464
+ - Invoker Cold Snap
1465
+ 5377:
1466
+ - silencer_curse_of_the_silent
1467
+ - Curse Of The Silent
1468
+ - Silencer Curse Of The Silent
1469
+ 5378:
1470
+ - silencer_glaives_of_wisdom
1471
+ - Glaives Of Wisdom
1472
+ - Silencer Glaives Of Wisdom
1473
+ 5379:
1474
+ - silencer_last_word
1475
+ - Last Word
1476
+ - Silencer Last Word
1477
+ 5380:
1478
+ - silencer_global_silence
1479
+ - Global Silence
1480
+ - Silencer Global Silence
1481
+ 5381:
1482
+ - invoker_ghost_walk
1483
+ - Ghost Walk
1484
+ - Invoker Ghost Walk
1485
+ 5382:
1486
+ - invoker_tornado
1487
+ - Tornado
1488
+ - Invoker Tornado
1489
+ 5383:
1490
+ - invoker_emp
1491
+ - Emp
1492
+ - Invoker Emp
1493
+ 5384:
1494
+ - invoker_alacrity
1495
+ - Alacrity
1496
+ - Invoker Alacrity
1497
+ 5385:
1498
+ - invoker_chaos_meteor
1499
+ - Chaos Meteor
1500
+ - Invoker Chaos Meteor
1501
+ 5386:
1502
+ - invoker_sun_strike
1503
+ - Sun Strike
1504
+ - Invoker Sun Strike
1505
+ 5387:
1506
+ - invoker_forge_spirit
1507
+ - Forge Spirit
1508
+ - Invoker Forge Spirit
1509
+ 5388:
1510
+ - forged_spirit_melting_strike
1511
+ - Melting Strike
1512
+ - Forged Spirit Melting Strike
1513
+ 5389:
1514
+ - invoker_ice_wall
1515
+ - Ice Wall
1516
+ - Invoker Ice Wall
1517
+ 5390:
1518
+ - invoker_deafening_blast
1519
+ - Deafening Blast
1520
+ - Invoker Deafening Blast
1521
+ 5391:
1522
+ - obsidian_destroyer_arcane_orb
1523
+ - Arcane Orb
1524
+ - Obsidian Destroyer Arcane Orb
1525
+ 5392:
1526
+ - obsidian_destroyer_astral_imprisonment
1527
+ - Astral Imprisonment
1528
+ - Obsidian Destroyer Astral Imprisonment
1529
+ 5393:
1530
+ - obsidian_destroyer_essence_aura
1531
+ - Essence Aura
1532
+ - Obsidian Destroyer Essence Aura
1533
+ 5394:
1534
+ - obsidian_destroyer_sanity_eclipse
1535
+ - Sanity Eclipse
1536
+ - Obsidian Destroyer Sanity Eclipse
1537
+ 5395:
1538
+ - lycan_summon_wolves
1539
+ - Summon Wolves
1540
+ - Lycan Summon Wolves
1541
+ 5396:
1542
+ - lycan_howl
1543
+ - Howl
1544
+ - Lycan Howl
1545
+ 5397:
1546
+ - lycan_feral_impulse
1547
+ - Feral Impulse
1548
+ - Lycan Feral Impulse
1549
+ 5398:
1550
+ - lycan_shapeshift
1551
+ - Shapeshift
1552
+ - Lycan Shapeshift
1553
+ 5399:
1554
+ - lycan_summon_wolves_critical_strike
1555
+ - Summon Wolves Critical Strike
1556
+ - Lycan Summon Wolves Critical Strike
1557
+ 5400:
1558
+ - brewmaster_thunder_clap
1559
+ - Thunder Clap
1560
+ - Brewmaster Thunder Clap
1561
+ 5401:
1562
+ - brewmaster_drunken_haze
1563
+ - Drunken Haze
1564
+ - Brewmaster Drunken Haze
1565
+ 5402:
1566
+ - brewmaster_drunken_brawler
1567
+ - Drunken Brawler
1568
+ - Brewmaster Drunken Brawler
1569
+ 5403:
1570
+ - brewmaster_primal_split
1571
+ - Primal Split
1572
+ - Brewmaster Primal Split
1573
+ 5404:
1574
+ - brewmaster_earth_hurl_boulder
1575
+ - Hurl Boulder
1576
+ - Brewmaster Earth Hurl Boulder
1577
+ 5405:
1578
+ - brewmaster_earth_spell_immunity
1579
+ - Spell Immunity
1580
+ - Brewmaster Earth Spell Immunity
1581
+ 5406:
1582
+ - brewmaster_earth_pulverize
1583
+ - Pulverize
1584
+ - Brewmaster Earth Pulverize
1585
+ 5408:
1586
+ - brewmaster_storm_dispel_magic
1587
+ - Dispel Magic
1588
+ - Brewmaster Storm Dispel Magic
1589
+ 5409:
1590
+ - brewmaster_storm_cyclone
1591
+ - Cyclone
1592
+ - Brewmaster Storm Cyclone
1593
+ 5410:
1594
+ - brewmaster_storm_wind_walk
1595
+ - Wind Walk
1596
+ - Brewmaster Storm Wind Walk
1597
+ 5411:
1598
+ - brewmaster_fire_permanent_immolation
1599
+ - Permanent Immolation
1600
+ - Brewmaster Fire Permanent Immolation
1601
+ 5412:
1602
+ - lone_druid_spirit_bear
1603
+ - Spirit Bear
1604
+ - Lone Druid Spirit Bear
1605
+ 5413:
1606
+ - lone_druid_rabid
1607
+ - Rabid
1608
+ - Lone Druid Rabid
1609
+ 5414:
1610
+ - lone_druid_synergy
1611
+ - Synergy
1612
+ - Lone Druid Synergy
1613
+ 5415:
1614
+ - lone_druid_true_form
1615
+ - True Form
1616
+ - Lone Druid True Form
1617
+ 5416:
1618
+ - lone_druid_true_form
1619
+ - True Form
1620
+ - Lone Druid True Form
1621
+ 5417:
1622
+ - lone_druid_true_form_battle_cry
1623
+ - True Form Battle Cry
1624
+ - Lone Druid True Form Battle Cry
1625
+ 5418:
1626
+ - lone_druid_spirit_bear_return
1627
+ - Spirit Bear Return
1628
+ - Lone Druid Spirit Bear Return
1629
+ 5419:
1630
+ - lone_druid_spirit_bear_entangle
1631
+ - Spirit Bear Entangle
1632
+ - Lone Druid Spirit Bear Entangle
1633
+ 5420:
1634
+ - lone_druid_spirit_bear_demolish
1635
+ - Spirit Bear Demolish
1636
+ - Lone Druid Spirit Bear Demolish
1637
+ 5421:
1638
+ - shadow_demon_disruption
1639
+ - Disruption
1640
+ - Shadow Demon Disruption
1641
+ 5422:
1642
+ - shadow_demon_soul_catcher
1643
+ - Soul Catcher
1644
+ - Shadow Demon Soul Catcher
1645
+ 5423:
1646
+ - shadow_demon_shadow_poison
1647
+ - Shadow Poison
1648
+ - Shadow Demon Shadow Poison
1649
+ 5424:
1650
+ - shadow_demon_shadow_poison_release
1651
+ - Shadow Poison Release
1652
+ - Shadow Demon Shadow Poison Release
1653
+ 5425:
1654
+ - shadow_demon_demonic_purge
1655
+ - Demonic Purge
1656
+ - Shadow Demon Demonic Purge
1657
+ 5426:
1658
+ - chaos_knight_chaos_bolt
1659
+ - Chaos Bolt
1660
+ - Chaos Knight Chaos Bolt
1661
+ 5427:
1662
+ - chaos_knight_reality_rift
1663
+ - Reality Rift
1664
+ - Chaos Knight Reality Rift
1665
+ 5428:
1666
+ - chaos_knight_chaos_strike
1667
+ - Chaos Strike
1668
+ - Chaos Knight Chaos Strike
1669
+ 5429:
1670
+ - chaos_knight_phantasm
1671
+ - Phantasm
1672
+ - Chaos Knight Phantasm
1673
+ 5430:
1674
+ - meepo_earthbind
1675
+ - Earthbind
1676
+ - Meepo Earthbind
1677
+ 5431:
1678
+ - meepo_poof
1679
+ - Poof
1680
+ - Meepo Poof
1681
+ 5432:
1682
+ - meepo_geostrike
1683
+ - Geostrike
1684
+ - Meepo Geostrike
1685
+ 5433:
1686
+ - meepo_divided_we_stand
1687
+ - Divided We Stand
1688
+ - Meepo Divided We Stand
1689
+ 5434:
1690
+ - treant_natures_guise
1691
+ - Natures Guise
1692
+ - Treant Natures Guise
1693
+ 5435:
1694
+ - treant_leech_seed
1695
+ - Leech Seed
1696
+ - Treant Leech Seed
1697
+ 5436:
1698
+ - treant_living_armor
1699
+ - Living Armor
1700
+ - Treant Living Armor
1701
+ 5437:
1702
+ - treant_overgrowth
1703
+ - Overgrowth
1704
+ - Treant Overgrowth
1705
+ 5438:
1706
+ - ogre_magi_fireblast
1707
+ - Fireblast
1708
+ - Ogre Magi Fireblast
1709
+ 5439:
1710
+ - ogre_magi_ignite
1711
+ - Ignite
1712
+ - Ogre Magi Ignite
1713
+ 5440:
1714
+ - ogre_magi_bloodlust
1715
+ - Bloodlust
1716
+ - Ogre Magi Bloodlust
1717
+ 5441:
1718
+ - ogre_magi_multicast
1719
+ - Multicast
1720
+ - Ogre Magi Multicast
1721
+ 5442:
1722
+ - undying_decay
1723
+ - Decay
1724
+ - Undying Decay
1725
+ 5443:
1726
+ - undying_soul_rip
1727
+ - Soul Rip
1728
+ - Undying Soul Rip
1729
+ 5444:
1730
+ - undying_tombstone
1731
+ - Tombstone
1732
+ - Undying Tombstone
1733
+ 5445:
1734
+ - undying_tombstone_zombie_aura
1735
+ - Tombstone Zombie Aura
1736
+ - Undying Tombstone Zombie Aura
1737
+ 5446:
1738
+ - undying_tombstone_zombie_deathstrike
1739
+ - Tombstone Zombie Deathstrike
1740
+ - Undying Tombstone Zombie Deathstrike
1741
+ 5447:
1742
+ - undying_flesh_golem
1743
+ - Flesh Golem
1744
+ - Undying Flesh Golem
1745
+ 5448:
1746
+ - rubick_telekinesis
1747
+ - Telekinesis
1748
+ - Rubick Telekinesis
1749
+ 5450:
1750
+ - rubick_fade_bolt
1751
+ - Fade Bolt
1752
+ - Rubick Fade Bolt
1753
+ 5451:
1754
+ - rubick_null_field
1755
+ - Null Field
1756
+ - Rubick Null Field
1757
+ 5452:
1758
+ - rubick_spell_steal
1759
+ - Spell Steal
1760
+ - Rubick Spell Steal
1761
+ 5458:
1762
+ - disruptor_thunder_strike
1763
+ - Thunder Strike
1764
+ - Disruptor Thunder Strike
1765
+ 5459:
1766
+ - disruptor_glimpse
1767
+ - Glimpse
1768
+ - Disruptor Glimpse
1769
+ 5460:
1770
+ - disruptor_kinetic_field
1771
+ - Kinetic Field
1772
+ - Disruptor Kinetic Field
1773
+ 5461:
1774
+ - disruptor_static_storm
1775
+ - Static Storm
1776
+ - Disruptor Static Storm
1777
+ 5462:
1778
+ - nyx_assassin_impale
1779
+ - Impale
1780
+ - Nyx Assassin Impale
1781
+ 5463:
1782
+ - nyx_assassin_mana_burn
1783
+ - Mana Burn
1784
+ - Nyx Assassin Mana Burn
1785
+ 5464:
1786
+ - nyx_assassin_spiked_carapace
1787
+ - Spiked Carapace
1788
+ - Nyx Assassin Spiked Carapace
1789
+ 5465:
1790
+ - nyx_assassin_vendetta
1791
+ - Vendetta
1792
+ - Nyx Assassin Vendetta
1793
+ 5467:
1794
+ - naga_siren_mirror_image
1795
+ - Mirror Image
1796
+ - Naga Siren Mirror Image
1797
+ 5468:
1798
+ - naga_siren_ensnare
1799
+ - Ensnare
1800
+ - Naga Siren Ensnare
1801
+ 5469:
1802
+ - naga_siren_rip_tide
1803
+ - Rip Tide
1804
+ - Naga Siren Rip Tide
1805
+ 5470:
1806
+ - naga_siren_song_of_the_siren
1807
+ - Song Of The Siren
1808
+ - Naga Siren Song Of The Siren
1809
+ 5471:
1810
+ - keeper_of_the_light_illuminate
1811
+ - Illuminate
1812
+ - Keeper Of The Light Illuminate
1813
+ 5472:
1814
+ - keeper_of_the_light_mana_leak
1815
+ - Mana Leak
1816
+ - Keeper Of The Light Mana Leak
1817
+ 5473:
1818
+ - keeper_of_the_light_chakra_magic
1819
+ - Chakra Magic
1820
+ - Keeper Of The Light Chakra Magic
1821
+ 5474:
1822
+ - keeper_of_the_light_spirit_form
1823
+ - Spirit Form
1824
+ - Keeper Of The Light Spirit Form
1825
+ 5475:
1826
+ - keeper_of_the_light_recall
1827
+ - Recall
1828
+ - Keeper Of The Light Recall
1829
+ 5476:
1830
+ - keeper_of_the_light_blinding_light
1831
+ - Blinding Light
1832
+ - Keeper Of The Light Blinding Light
1833
+ 5477:
1834
+ - keeper_of_the_light_illuminate_end
1835
+ - Illuminate End
1836
+ - Keeper Of The Light Illuminate End
1837
+ 5479:
1838
+ - keeper_of_the_light_spirit_form_illuminate
1839
+ - Spirit Form Illuminate
1840
+ - Keeper Of The Light Spirit Form Illuminate
1841
+ 5480:
1842
+ - visage_grave_chill
1843
+ - Grave Chill
1844
+ - Visage Grave Chill
1845
+ 5481:
1846
+ - visage_soul_assumption
1847
+ - Soul Assumption
1848
+ - Visage Soul Assumption
1849
+ 5482:
1850
+ - visage_gravekeepers_cloak
1851
+ - Gravekeepers Cloak
1852
+ - Visage Gravekeepers Cloak
1853
+ 5483:
1854
+ - visage_summon_familiars
1855
+ - Summon Familiars
1856
+ - Visage Summon Familiars
1857
+ 5485:
1858
+ - wisp_tether
1859
+ - Tether
1860
+ - Wisp Tether
1861
+ 5486:
1862
+ - wisp_spirits
1863
+ - Spirits
1864
+ - Wisp Spirits
1865
+ 5487:
1866
+ - wisp_overcharge
1867
+ - Overcharge
1868
+ - Wisp Overcharge
1869
+ 5488:
1870
+ - wisp_relocate
1871
+ - Relocate
1872
+ - Wisp Relocate
1873
+ 5489:
1874
+ - wisp_tether_break
1875
+ - Tether Break
1876
+ - Wisp Tether Break
1877
+ 5491:
1878
+ - forest_troll_high_priest_mana_aura
1879
+ - Troll High Priest Mana Aura
1880
+ - Forest Troll High Priest Mana Aura
1881
+ 5492:
1882
+ - courier_go_to_secretshop
1883
+ - Go To Secret Shop
1884
+ - Courier Go To Secret Shop
1885
+ 5494:
1886
+ - slark_dark_pact
1887
+ - Dark Pact
1888
+ - Slark Dark Pact
1889
+ 5495:
1890
+ - slark_pounce
1891
+ - Pounce
1892
+ - Slark Pounce
1893
+ 5496:
1894
+ - slark_essence_shift
1895
+ - Essence Shift
1896
+ - Slark Essence Shift
1897
+ 5497:
1898
+ - slark_shadow_dance
1899
+ - Shadow Dance
1900
+ - Slark Shadow Dance
1901
+ 5500:
1902
+ - lycan_summon_wolves_invisibility
1903
+ - Summon Wolves Invisibility
1904
+ - Lycan Summon Wolves Invisibility
1905
+ 5504:
1906
+ - medusa_split_shot
1907
+ - Split Shot
1908
+ - Medusa Split Shot
1909
+ 5505:
1910
+ - medusa_mystic_snake
1911
+ - Mystic Snake
1912
+ - Medusa Mystic Snake
1913
+ 5506:
1914
+ - medusa_mana_shield
1915
+ - Mana Shield
1916
+ - Medusa Mana Shield
1917
+ 5507:
1918
+ - medusa_stone_gaze
1919
+ - Stone Gaze
1920
+ - Medusa Stone Gaze
1921
+ 5508:
1922
+ - troll_warlord_berserkers_rage
1923
+ - Berserkers Rage
1924
+ - Troll Warlord Berserkers Rage
1925
+ 5509:
1926
+ - troll_warlord_whirling_axes_ranged
1927
+ - Whirling Axes Ranged
1928
+ - Troll Warlord Whirling Axes Ranged
1929
+ 5510:
1930
+ - troll_warlord_whirling_axes_melee
1931
+ - Whirling Axes Melee
1932
+ - Troll Warlord Whirling Axes Melee
1933
+ 5511:
1934
+ - troll_warlord_fervor
1935
+ - Fervor
1936
+ - Troll Warlord Fervor
1937
+ 5512:
1938
+ - troll_warlord_battle_trance
1939
+ - Battle Trance
1940
+ - Troll Warlord Battle Trance
1941
+ 5514:
1942
+ - centaur_hoof_stomp
1943
+ - Hoof Stomp
1944
+ - Centaur Hoof Stomp
1945
+ 5515:
1946
+ - centaur_double_edge
1947
+ - Double Edge
1948
+ - Centaur Double Edge
1949
+ 5516:
1950
+ - centaur_return
1951
+ - Return
1952
+ - Centaur Return
1953
+ 5517:
1954
+ - centaur_stampede
1955
+ - Stampede
1956
+ - Centaur Stampede
1957
+ 5518:
1958
+ - magnataur_shockwave
1959
+ - Shockwave
1960
+ - Magnataur Shockwave
1961
+ 5519:
1962
+ - magnataur_empower
1963
+ - Empower
1964
+ - Magnataur Empower
1965
+ 5520:
1966
+ - magnataur_skewer
1967
+ - Skewer
1968
+ - Magnataur Skewer
1969
+ 5521:
1970
+ - magnataur_reverse_polarity
1971
+ - Reverse Polarity
1972
+ - Magnataur Reverse Polarity
1973
+ 5522:
1974
+ - chen_test_of_faith_teleport
1975
+ - Test Of Faith Teleport
1976
+ - Chen Test Of Faith Teleport
1977
+ 5524:
1978
+ - shredder_whirling_death
1979
+ - Whirling Death
1980
+ - Shredder Whirling Death
1981
+ 5525:
1982
+ - shredder_timber_chain
1983
+ - Timber Chain
1984
+ - Shredder Timber Chain
1985
+ 5526:
1986
+ - shredder_reactive_armor
1987
+ - Reactive Armor
1988
+ - Shredder Reactive Armor
1989
+ 5527:
1990
+ - shredder_chakram
1991
+ - Chakram
1992
+ - Shredder Chakram
1993
+ 5528:
1994
+ - shredder_return_chakram
1995
+ - Return Chakram
1996
+ - Shredder Return Chakram
1997
+ 5548:
1998
+ - bristleback_viscous_nasal_goo
1999
+ - Viscous Nasal Goo
2000
+ - Bristleback Viscous Nasal Goo
2001
+ 5549:
2002
+ - bristleback_quill_spray
2003
+ - Quill Spray
2004
+ - Bristleback Quill Spray
2005
+ 5550:
2006
+ - bristleback_bristleback
2007
+ - Bristleback
2008
+ - Bristleback Bristleback
2009
+ 5551:
2010
+ - bristleback_warpath
2011
+ - Warpath
2012
+ - Bristleback Warpath
2013
+ 5565:
2014
+ - tusk_ice_shards
2015
+ - Ice Shards
2016
+ - Tusk Ice Shards
2017
+ 5566:
2018
+ - tusk_snowball
2019
+ - Snowball
2020
+ - Tusk Snowball
2021
+ 5567:
2022
+ - tusk_frozen_sigil
2023
+ - Frozen Sigil
2024
+ - Tusk Frozen Sigil
2025
+ 5568:
2026
+ - tusk_walrus_punch
2027
+ - Walrus Punch
2028
+ - Tusk Walrus Punch
2029
+ 5580:
2030
+ - beastmaster_call_of_the_wild
2031
+ - Call Of The Wild
2032
+ - Beastmaster Call Of The Wild
2033
+ 5581:
2034
+ - skywrath_mage_arcane_bolt
2035
+ - Arcane Bolt
2036
+ - Skywrath Mage Arcane Bolt
2037
+ 5582:
2038
+ - skywrath_mage_concussive_shot
2039
+ - Concussive Shot
2040
+ - Skywrath Mage Concussive Shot
2041
+ 5583:
2042
+ - skywrath_mage_ancient_seal
2043
+ - Ancient Seal
2044
+ - Skywrath Mage Ancient Seal
2045
+ 5584:
2046
+ - skywrath_mage_mystic_flare
2047
+ - Mystic Flare
2048
+ - Skywrath Mage Mystic Flare
2049
+ 5585:
2050
+ - abaddon_death_coil
2051
+ - Death Coil
2052
+ - Abaddon Death Coil
2053
+ 5586:
2054
+ - abaddon_aphotic_shield
2055
+ - Aphotic Shield
2056
+ - Abaddon Aphotic Shield
2057
+ 5587:
2058
+ - abaddon_frostmourne
2059
+ - Curse of Avernus
2060
+ - Abaddon Curse of Avernus
2061
+ 5588:
2062
+ - abaddon_borrowed_time
2063
+ - Borrowed Time
2064
+ - Abaddon Borrowed Time
2065
+ 5589:
2066
+ - elder_titan_echo_stomp
2067
+ - Echo Stomp
2068
+ - Elder Titan Echo Stomp
2069
+ 5591:
2070
+ - elder_titan_ancestral_spirit
2071
+ - Ancestral Spirit
2072
+ - Elder Titan Ancestral Spirit
2073
+ 5593:
2074
+ - elder_titan_natural_order
2075
+ - Natural Order
2076
+ - Elder Titan Natural Order
2077
+ 5594:
2078
+ - elder_titan_earth_splitter
2079
+ - Earth Splitter
2080
+ - Elder Titan Earth Splitter
2081
+ 5595:
2082
+ - legion_commander_overwhelming_odds
2083
+ - Overwhelming Odds
2084
+ - Legion Commander Overwhelming Odds
2085
+ 5596:
2086
+ - legion_commander_press_the_attack
2087
+ - Press The Attack
2088
+ - Legion Commander Press The Attack
2089
+ 5597:
2090
+ - legion_commander_moment_of_courage
2091
+ - Moment Of Courage
2092
+ - Legion Commander Moment Of Courage
2093
+ 5598:
2094
+ - legion_commander_duel
2095
+ - Duel
2096
+ - Legion Commander Duel
2097
+ 5599:
2098
+ - techies_land_mines
2099
+ - Land Mines
2100
+ - Techies Land Mines
2101
+ 5600:
2102
+ - techies_stasis_trap
2103
+ - Stasis Trap
2104
+ - Techies Stasis Trap
2105
+ 5601:
2106
+ - techies_suicide
2107
+ - Suicide Squad, Attack!
2108
+ - Techies Suicide Squad, Attack!
2109
+ 5602:
2110
+ - techies_remote_mines
2111
+ - Remote Mines
2112
+ - Techies Remote Mines
2113
+ 5603:
2114
+ - ember_spirit_searing_chains
2115
+ - Searing Chains
2116
+ - Ember Spirit Searing Chains
2117
+ 5604:
2118
+ - ember_spirit_sleight_of_fist
2119
+ - Sleight Of Fist
2120
+ - Ember Spirit Sleight Of Fist
2121
+ 5605:
2122
+ - ember_spirit_flame_guard
2123
+ - Flame Guard
2124
+ - Ember Spirit Flame Guard
2125
+ 5606:
2126
+ - ember_spirit_fire_remnant
2127
+ - Fire Remnant
2128
+ - Ember Spirit Fire Remnant
2129
+ 5607:
2130
+ - ember_spirit_activate_fire_remnant
2131
+ - Activate Fire Remnant
2132
+ - Ember Spirit Activate Fire Remnant
2133
+ 5608:
2134
+ - earth_spirit_boulder_smash
2135
+ - Boulder Smash
2136
+ - Earth Spirit Boulder Smash
2137
+ 5609:
2138
+ - earth_spirit_rolling_boulder
2139
+ - Rolling Boulder
2140
+ - Earth Spirit Rolling Boulder
2141
+ 5610:
2142
+ - earth_spirit_geomagnetic_grip
2143
+ - Geomagnetic Grip
2144
+ - Earth Spirit Geomagnetic Grip
2145
+ 5611:
2146
+ - earth_spirit_stone_caller
2147
+ - Stone Caller
2148
+ - Earth Spirit Stone Caller
2149
+ 5612:
2150
+ - earth_spirit_magnetize
2151
+ - Magnetize
2152
+ - Earth Spirit Magnetize
2153
+ 5613:
2154
+ - abyssal_underlord_firestorm
2155
+ - Firestorm
2156
+ - Abyssal Underlord Firestorm
2157
+ 5614:
2158
+ - abyssal_underlord_pit_of_malice
2159
+ - Pit Of Malice
2160
+ - Abyssal Underlord Pit Of Malice
2161
+ 5615:
2162
+ - abyssal_underlord_atrophy_aura
2163
+ - Atrophy Aura
2164
+ - Abyssal Underlord Atrophy Aura
2165
+ 5616:
2166
+ - abyssal_underlord_dark_rift
2167
+ - Dark Rift
2168
+ - Abyssal Underlord Dark Rift
2169
+ 5619:
2170
+ - terrorblade_reflection
2171
+ - Reflection
2172
+ - Terrorblade Reflection
2173
+ 5620:
2174
+ - terrorblade_conjure_image
2175
+ - Conjure Image
2176
+ - Terrorblade Conjure Image
2177
+ 5621:
2178
+ - terrorblade_metamorphosis
2179
+ - Metamorphosis
2180
+ - Terrorblade Metamorphosis
2181
+ 5622:
2182
+ - terrorblade_sunder
2183
+ - Sunder
2184
+ - Terrorblade Sunder
2185
+ 5623:
2186
+ - phoenix_icarus_dive
2187
+ - Icarus Dive
2188
+ - Phoenix Icarus Dive
2189
+ 5625:
2190
+ - phoenix_fire_spirits
2191
+ - Fire Spirits
2192
+ - Phoenix Fire Spirits
2193
+ 5626:
2194
+ - phoenix_sun_ray
2195
+ - Sun Ray
2196
+ - Phoenix Sun Ray
2197
+ 5630:
2198
+ - phoenix_supernova
2199
+ - Supernova
2200
+ - Phoenix Supernova
2201
+ 5631:
2202
+ - phoenix_fire_spirits
2203
+ - Fire Spirits
2204
+ - Phoenix Fire Spirits
2205
+ 5632:
2206
+ - drow_ranger_wave_of_silence
2207
+ - Wave Of Silence
2208
+ - Drow Ranger Wave Of Silence
2209
+ 5637:
2210
+ - oracle_fortunes_end
2211
+ - Fortunes End
2212
+ - Oracle Fortunes End
2213
+ 5638:
2214
+ - oracle_fates_edict
2215
+ - Fates Edict
2216
+ - Oracle Fates Edict
2217
+ 5639:
2218
+ - oracle_purifying_flames
2219
+ - Purifying Flames
2220
+ - Oracle Purifying Flames
2221
+ 5640:
2222
+ - oracle_false_promise
2223
+ - False Promise
2224
+ - Oracle False Promise
2225
+ 5651:
2226
+ - winter_wyvern_arctic_burn
2227
+ - Arctic Burn
2228
+ - Winter Wyvern Arctic Burn
2229
+ 5652:
2230
+ - winter_wyvern_splinter_blast
2231
+ - Splinter Blast
2232
+ - Winter Wyvern Splinter Blast
2233
+ 5653:
2234
+ - winter_wyvern_cold_embrace
2235
+ - Cold Embrace
2236
+ - Winter Wyvern Cold Embrace
2237
+ 5654:
2238
+ - winter_wyvern_winters_curse
2239
+ - Winters Curse
2240
+ - Winter Wyvern Winters Curse