Advertisement
Lprsti99

Dota 2 Item Aliases

Mar 2nd, 2012
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 293.04 KB | None | 0 0
  1. //Overwrite the entire items.txt file in .../dota 2 beta/dota/scripts/npc with this file. Make sure to
  2. //make a backup. This will allow you to search for items using their HoN-equivalent
  3. //names (Mask of Madness=Elder Parasite, etc). Also, you can search for original dota names (Buriza,
  4. //Lothar's, etc) as well as search directly for lifesteal, and orbs.
  5.  
  6.  
  7. // Dota Heroes File
  8. "DOTAAbilities"
  9. {
  10. "Version" "1"
  11.  
  12. // NOTES:
  13. //
  14. // "ability_type":
  15. // DOTA_ABILITY_TYPE_BASIC = 0 :
  16. // DOTA_ABILITY_TYPE_ULTIMATE = 1 :
  17. // DOTA_ABILITY_TYPE_ATTRIBUTES = 2 :
  18. //
  19. // "ability_behavior":
  20. // DOTA_ABILITY_BEHAVIOR_HIDDEN = 1 : This ability can be owned by a unit but can't be casted and wont show up on the HUD.
  21. // DOTA_ABILITY_BEHAVIOR_PASSIVE = 2 : Can't be casted like above but this one shows up on the ability HUD
  22. // DOTA_ABILITY_BEHAVIOR_NO_TARGET = 4 : Doesn't need a target to be cast, ability fires off as soon as the button is pressed
  23. // DOTA_ABILITY_BEHAVIOR_UNIT_TARGET = 8 : Ability needs a target to be casted on.
  24. // DOTA_ABILITY_BEHAVIOR_POINT = 16 : Ability can be cast anywhere the mouse cursor is (If a unit is clicked it will just be cast where the unit was standing)
  25. // DOTA_ABILITY_BEHAVIOR_AOE = 32 : This ability draws a radius where the ability will have effect. Kinda like POINT but with a an area of effect display.
  26. // DOTA_ABILITY_BEHAVIOR_NOT_LEARNABLE = 64 : This ability probably can be casted or have a casting scheme but cannot be learned (these are usually abilities that are temporary like techie's bomb detonate)
  27. // DOTA_ABILITY_BEHAVIOR_CHANNELLED = 128 : This abillity is channelled. If the user moves or is silenced the ability is interrupted.
  28. // DOTA_ABILITY_BEHAVIOR_ITEM = 256 : This ability is tied up to an item.
  29. // DOTA_ABILITY_BEHAVIOR_TOGGLE = 512 : This ability can be insta-toggled
  30. // DOTA_ABILITY_BEHAVIOR_DIRECTIONAL = 1024 : This ability has a direction from the hero
  31. // DOTA_ABILITY_BEHAVIOR_IMMEDIATE = 2048 : This ability does not interrupt other abilities
  32. //
  33.  
  34. //=================================================================================================================
  35. // Blink dagger
  36. //=================================================================================================================
  37. "item_blink"
  38. {
  39. // General
  40. //-------------------------------------------------------------------------------------------------------------
  41. "ID" "1" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  42. "AbilityName" "item_blink"
  43. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES"
  44.  
  45. // Stats
  46. //-------------------------------------------------------------------------------------------------------------
  47. "AbilityCastRange" "0"
  48. "AbilityCastPoint" "0.0"
  49. "AbilityCooldown" "14.0"
  50. "AbilityManaCost" "75"
  51.  
  52. // Item Info
  53. //-------------------------------------------------------------------------------------------------------------
  54. "ItemCost" "2150"
  55. "ItemShopTags" "teleport"
  56. "ItemQuality" "component"
  57. "SideShop" "1"
  58. "InvalidHeroes" "npc_dota_hero_vengefulspirit;npc_dota_hero_pudge"
  59. "ItemAliases" "portal key"
  60.  
  61. // Special
  62. //-------------------------------------------------------------------------------------------------------------
  63. "AbilitySpecial"
  64. {
  65. "01"
  66. {
  67. "var_type" "FIELD_INTEGER"
  68. "blink_range" "1200"
  69. }
  70. "02"
  71. {
  72. "var_type" "FIELD_INTEGER"
  73. "blink_damage_cooldown" "3"
  74. }
  75. "03"
  76. {
  77. "var_type" "FIELD_INTEGER"
  78. "blink_range_clamp" "960"
  79. }
  80. }
  81. }
  82.  
  83. //=================================================================================================================
  84. // Blades of Attack
  85. //=================================================================================================================
  86. "item_blades_of_attack"
  87. {
  88. // General
  89. //-------------------------------------------------------------------------------------------------------------
  90. "ID" "2" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  91. "AbilityName" "item_blades_of_attack"
  92. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  93.  
  94. // Item Info
  95. //-------------------------------------------------------------------------------------------------------------
  96. "ItemCost" "450"
  97. "ItemShopTags" "damage;tutorial"
  98. "ItemQuality" "component"
  99. "SideShop" "1"
  100. "ItemAliases" "punchdagger"
  101.  
  102. // Special
  103. //-------------------------------------------------------------------------------------------------------------
  104. "AbilitySpecial"
  105. {
  106. "01"
  107. {
  108. "var_type" "FIELD_INTEGER"
  109. "bonus_damage" "9"
  110. }
  111. }
  112. }
  113.  
  114. //=================================================================================================================
  115. // Broadsword
  116. //=================================================================================================================
  117. "item_broadsword"
  118. {
  119. // General
  120. //-------------------------------------------------------------------------------------------------------------
  121. "ID" "3" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  122. "AbilityName" "item_broadsword"
  123. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  124.  
  125. // Item Info
  126. //-------------------------------------------------------------------------------------------------------------
  127. "ItemCost" "1200"
  128. "ItemShopTags" "damage"
  129. "ItemQuality" "component"
  130.  
  131. // Special
  132. //-------------------------------------------------------------------------------------------------------------
  133. "AbilitySpecial"
  134. {
  135. "01"
  136. {
  137. "var_type" "FIELD_INTEGER"
  138. "bonus_damage" "18"
  139. }
  140. }
  141. }
  142.  
  143. //=================================================================================================================
  144. // Chainmail
  145. //=================================================================================================================
  146. "item_chainmail"
  147. {
  148. // General
  149. //-------------------------------------------------------------------------------------------------------------
  150. "ID" "4" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  151. "AbilityName" "item_chainmail"
  152. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  153.  
  154.  
  155. // Item Info
  156. //-------------------------------------------------------------------------------------------------------------
  157. "ItemCost" "550"
  158. "ItemShopTags" "armor"
  159. "ItemQuality" "component"
  160. "SideShop" "1"
  161. "ItemAliases" "ringmail"
  162.  
  163. // Special
  164. //-------------------------------------------------------------------------------------------------------------
  165. "AbilitySpecial"
  166. {
  167. "01"
  168. {
  169. "var_type" "FIELD_INTEGER"
  170. "bonus_armor" "5"
  171. }
  172. }
  173. }
  174.  
  175. //=================================================================================================================
  176. // Claymore
  177. //=================================================================================================================
  178. "item_claymore"
  179. {
  180. // General
  181. //-------------------------------------------------------------------------------------------------------------
  182. "ID" "5" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  183. "AbilityName" "item_claymore"
  184. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  185.  
  186.  
  187. // Item Info
  188. //-------------------------------------------------------------------------------------------------------------
  189. "ItemCost" "1400"
  190. "ItemShopTags" "damage"
  191. "ItemQuality" "component"
  192.  
  193. // Special
  194. //-------------------------------------------------------------------------------------------------------------
  195. "AbilitySpecial"
  196. {
  197. "01"
  198. {
  199. "var_type" "FIELD_INTEGER"
  200. "bonus_damage" "21"
  201. }
  202. }
  203. }
  204.  
  205. //=================================================================================================================
  206. // Helm of Iron Will
  207. //=================================================================================================================
  208. "item_helm_of_iron_will"
  209. {
  210. // General
  211. //-------------------------------------------------------------------------------------------------------------
  212. "ID" "6" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  213. "AbilityName" "item_helm_of_iron_will"
  214. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  215.  
  216. // Item Info
  217. //-------------------------------------------------------------------------------------------------------------
  218. "ItemCost" "950"
  219. "ItemShopTags" "armor;regen_health"
  220. "ItemQuality" "component"
  221. "SideShop" "1"
  222. "ItemAliases" "helm of the victim"
  223.  
  224. // Special
  225. //-------------------------------------------------------------------------------------------------------------
  226. "AbilitySpecial"
  227. {
  228. "01"
  229. {
  230. "var_type" "FIELD_INTEGER"
  231. "bonus_armor" "5"
  232. }
  233. "02"
  234. {
  235. "var_type" "FIELD_INTEGER"
  236. "bonus_regen" "3"
  237. }
  238. }
  239. }
  240.  
  241. //=================================================================================================================
  242. // Javelin
  243. //=================================================================================================================
  244. "item_javelin"
  245. {
  246. // General
  247. //-------------------------------------------------------------------------------------------------------------
  248. "ID" "7" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  249. "AbilityName" "item_javelin"
  250. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  251.  
  252. // Item Info
  253. //-------------------------------------------------------------------------------------------------------------
  254. "ItemCost" "1500"
  255. "ItemShopTags" "damage"
  256. "ItemQuality" "component"
  257.  
  258. // Special
  259. //-------------------------------------------------------------------------------------------------------------
  260. "AbilitySpecial"
  261. {
  262. "01"
  263. {
  264. "var_type" "FIELD_INTEGER"
  265. "bonus_damage" "21"
  266. }
  267. "02"
  268. {
  269. "var_type" "FIELD_INTEGER"
  270. "bonus_chance" "20"
  271. }
  272. "02"
  273. {
  274. "var_type" "FIELD_INTEGER"
  275. "bonus_chance_damage" "40"
  276. }
  277. }
  278. }
  279.  
  280. //=================================================================================================================
  281. // Mithril Hammer
  282. //=================================================================================================================
  283. "item_mithril_hammer"
  284. {
  285. // General
  286. //-------------------------------------------------------------------------------------------------------------
  287. "ID" "8" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  288. "AbilityName" "item_mithril_hammer"
  289. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  290.  
  291. // Item Info
  292. //-------------------------------------------------------------------------------------------------------------
  293. "ItemCost" "1600"
  294. "ItemShopTags" "damage"
  295. "ItemQuality" "component"
  296. "ItemAliases" "warhammer"
  297.  
  298. // Special
  299. //-------------------------------------------------------------------------------------------------------------
  300. "AbilitySpecial"
  301. {
  302. "01"
  303. {
  304. "var_type" "FIELD_INTEGER"
  305. "bonus_damage" "24"
  306. }
  307. }
  308. }
  309.  
  310. //=================================================================================================================
  311. // Platemail
  312. //=================================================================================================================
  313. "item_platemail"
  314. {
  315. // General
  316. //-------------------------------------------------------------------------------------------------------------
  317. "ID" "9" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  318. "AbilityName" "item_platemail"
  319. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  320.  
  321.  
  322. // Item Info
  323. //-------------------------------------------------------------------------------------------------------------
  324. "ItemCost" "1400"
  325. "ItemShopTags" "armor"
  326. "ItemQuality" "component"
  327.  
  328. // Special
  329. //-------------------------------------------------------------------------------------------------------------
  330. "AbilitySpecial"
  331. {
  332. "01"
  333. {
  334. "var_type" "FIELD_INTEGER"
  335. "bonus_armor" "10"
  336. }
  337. }
  338. }
  339.  
  340. //=================================================================================================================
  341. // Quarterstaff
  342. //=================================================================================================================
  343. "item_quarterstaff"
  344. {
  345. // General
  346. //-------------------------------------------------------------------------------------------------------------
  347. "ID" "10" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  348. "AbilityName" "item_quarterstaff"
  349. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  350.  
  351. // Item Info
  352. //-------------------------------------------------------------------------------------------------------------
  353. "ItemCost" "900"
  354. "ItemShopTags" "damage;attack_speed"
  355. "ItemQuality" "component"
  356. "SideShop" "1"
  357. "ItemAliases" "steamstaff"
  358.  
  359. // Special
  360. //-------------------------------------------------------------------------------------------------------------
  361. "AbilitySpecial"
  362. {
  363. "01"
  364. {
  365. "var_type" "FIELD_INTEGER"
  366. "bonus_damage" "10"
  367. }
  368. "02"
  369. {
  370. "var_type" "FIELD_INTEGER"
  371. "bonus_speed" "10"
  372. }
  373. }
  374. }
  375.  
  376.  
  377. //=================================================================================================================
  378. // Quelling Blade
  379. //=================================================================================================================
  380. "item_quelling_blade"
  381. {
  382. // General
  383. //-------------------------------------------------------------------------------------------------------------
  384. "ID" "11" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  385. "AbilityName" "item_quelling_blade"
  386. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  387. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE"
  388. "AbilityCastRange" "165"
  389. "AbilityCastPoint" "0.0"
  390. "AbilityCooldown" "5.0"
  391.  
  392. // Item Info
  393. //-------------------------------------------------------------------------------------------------------------
  394. "AbilityManaCost" "0"
  395. "ItemCost" "225"
  396. "ItemShopTags" "damage"
  397. "ItemQuality" "component"
  398. "SideShop" "1"
  399. "ItemAliases" "loggers hatchet;logger's hatchet"
  400.  
  401. // Special
  402. //-------------------------------------------------------------------------------------------------------------
  403. "AbilitySpecial"
  404. {
  405. "01"
  406. {
  407. "var_type" "FIELD_INTEGER"
  408. "damage_bonus" "32"
  409. }
  410. "02"
  411. {
  412. "var_type" "FIELD_INTEGER"
  413. "damage_bonus_ranged" "12"
  414. }
  415. }
  416. }
  417.  
  418.  
  419. //=================================================================================================================
  420. // Ring of Protection
  421. //=================================================================================================================
  422. "item_ring_of_protection"
  423. {
  424. // General
  425. //-------------------------------------------------------------------------------------------------------------
  426. "ID" "12" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  427. "AbilityName" "item_ring_of_protection"
  428. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  429.  
  430. // Item Info
  431. //-------------------------------------------------------------------------------------------------------------
  432. "ItemCost" "175"
  433. "ItemShopTags" "armor"
  434. "ItemQuality" "component"
  435. "ItemAliases" "rop;guardian ring"
  436.  
  437. // Sound
  438. //-------------------------------------------------------------------------------------------------------------
  439. "UIPickupSound" "Item.PickUpRingShop"
  440. "UIDropSound" "Item.DropRingShop"
  441. "WorldDropSound" "Item.DropRingWorld"
  442.  
  443. // Special
  444. //-------------------------------------------------------------------------------------------------------------
  445. "AbilitySpecial"
  446. {
  447. "01"
  448. {
  449. "var_type" "FIELD_INTEGER"
  450. "bonus_armor" "2"
  451. }
  452. }
  453. }
  454.  
  455. //=================================================================================================================
  456. // Stout Shield
  457. //=================================================================================================================
  458. "item_stout_shield"
  459. {
  460. // General
  461. //-------------------------------------------------------------------------------------------------------------
  462. "ID" "182" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  463. "AbilityName" "item_stout_shield"
  464. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  465.  
  466. // Item Info
  467. //-------------------------------------------------------------------------------------------------------------
  468. "ItemCost" "250"
  469. "ItemShopTags" "block"
  470. "ItemQuality" "component"
  471. "SideShop" "1"
  472. "ItemAliases" "iron buckler"
  473.  
  474. // Special
  475. //-------------------------------------------------------------------------------------------------------------
  476. "AbilitySpecial"
  477. {
  478. "01"
  479. {
  480. "var_type" "FIELD_INTEGER"
  481. "damage_block_melee" "20"
  482. }
  483. "02"
  484. {
  485. "var_type" "FIELD_INTEGER"
  486. "damage_block_ranged" "10"
  487. }
  488. "03"
  489. {
  490. "var_type" "FIELD_INTEGER"
  491. "block_chance" "60"
  492. }
  493. }
  494. }
  495.  
  496. //=================================================================================================================
  497. // Gauntlets
  498. //=================================================================================================================
  499. "item_gauntlets"
  500. {
  501. // General
  502. //-------------------------------------------------------------------------------------------------------------
  503. "ID" "13" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  504. "AbilityName" "item_gauntlets"
  505. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  506.  
  507. // Item Info
  508. //-------------------------------------------------------------------------------------------------------------
  509. "ItemCost" "150"
  510. "ItemShopTags" "str"
  511. "ItemQuality" "component"
  512. "ItemAliases" "crushing claws"
  513.  
  514. // Special
  515. //-------------------------------------------------------------------------------------------------------------
  516. "AbilitySpecial"
  517. {
  518. "01"
  519. {
  520. "var_type" "FIELD_INTEGER"
  521. "bonus_strength" "3"
  522. }
  523. }
  524. }
  525.  
  526. //=================================================================================================================
  527. // Slippers
  528. //=================================================================================================================
  529. "item_slippers"
  530. {
  531. // General
  532. //-------------------------------------------------------------------------------------------------------------
  533. "ID" "14" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  534. "AbilityName" "item_slippers"
  535. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  536.  
  537. // Item Info
  538. //-------------------------------------------------------------------------------------------------------------
  539. "ItemCost" "150"
  540. "ItemShopTags" "agi"
  541. "ItemQuality" "component"
  542. "SideShop" "1"
  543. "ItemAliases" "duck boots"
  544.  
  545. // Special
  546. //-------------------------------------------------------------------------------------------------------------
  547. "AbilitySpecial"
  548. {
  549. "01"
  550. {
  551. "var_type" "FIELD_INTEGER"
  552. "bonus_agility" "3"
  553. }
  554. }
  555. }
  556.  
  557. //=================================================================================================================
  558. // Mantle
  559. //=================================================================================================================
  560. "item_mantle"
  561. {
  562. // General
  563. //-------------------------------------------------------------------------------------------------------------
  564. "ID" "15" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  565. "AbilityName" "item_mantle"
  566. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  567.  
  568. // Item Info
  569. //-------------------------------------------------------------------------------------------------------------
  570. "ItemCost" "150"
  571. "ItemShopTags" "int"
  572. "ItemQuality" "component"
  573. "ItemAliases" "mark of the novice"
  574.  
  575. // Special
  576. //-------------------------------------------------------------------------------------------------------------
  577. "AbilitySpecial"
  578. {
  579. "01"
  580. {
  581. "var_type" "FIELD_INTEGER"
  582. "bonus_intellect" "3"
  583. }
  584. }
  585. }
  586.  
  587. //=================================================================================================================
  588. // Branches
  589. //=================================================================================================================
  590. "item_branches"
  591. {
  592. // General
  593. //-------------------------------------------------------------------------------------------------------------
  594. "ID" "16" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  595. "AbilityName" "item_branches"
  596. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  597.  
  598. // Item Info
  599. //-------------------------------------------------------------------------------------------------------------
  600. "ItemCost" "53"
  601. "ItemShopTags" "agi;int;str"
  602. "ItemQuality" "component"
  603. "ItemAliases" "gg branch;minor totem"
  604.  
  605. // Special
  606. //-------------------------------------------------------------------------------------------------------------
  607. "AbilitySpecial"
  608. {
  609. "01"
  610. {
  611. "var_type" "FIELD_INTEGER"
  612. "bonus_all_stats" "1"
  613. }
  614. }
  615. }
  616.  
  617. //=================================================================================================================
  618. // Belt of Strength
  619. //=================================================================================================================
  620. "item_belt_of_strength"
  621. {
  622. // General
  623. //-------------------------------------------------------------------------------------------------------------
  624. "ID" "17" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  625. "AbilityName" "item_belt_of_strength"
  626. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  627.  
  628. // Item Info
  629. //-------------------------------------------------------------------------------------------------------------
  630. "ItemCost" "450"
  631. "ItemShopTags" "str"
  632. "ItemQuality" "component"
  633. "SideShop" "1"
  634. "ItemAliases" "bolstering armband"
  635.  
  636. // Special
  637. //-------------------------------------------------------------------------------------------------------------
  638. "AbilitySpecial"
  639. {
  640. "01"
  641. {
  642. "var_type" "FIELD_INTEGER"
  643. "bonus_strength" "6"
  644. }
  645. }
  646. }
  647.  
  648. //=================================================================================================================
  649. // Boots of Elves
  650. //=================================================================================================================
  651. "item_boots_of_elves"
  652. {
  653. // General
  654. //-------------------------------------------------------------------------------------------------------------
  655. "ID" "18" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  656. "AbilityName" "item_boots_of_elves"
  657. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  658.  
  659. // Item Info
  660. //-------------------------------------------------------------------------------------------------------------
  661. "ItemCost" "450"
  662. "ItemShopTags" "agi"
  663. "ItemQuality" "component"
  664. "SideShop" "1"
  665. "ItemAliases" "fleetfeet"
  666.  
  667. // Special
  668. //-------------------------------------------------------------------------------------------------------------
  669. "AbilitySpecial"
  670. {
  671. "01"
  672. {
  673. "var_type" "FIELD_INTEGER"
  674. "bonus_agility" "6"
  675. }
  676. }
  677. }
  678.  
  679. //=================================================================================================================
  680. // Robe
  681. //=================================================================================================================
  682. "item_robe"
  683. {
  684. // General
  685. //-------------------------------------------------------------------------------------------------------------
  686. "ID" "19" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  687. "AbilityName" "item_robe"
  688. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  689.  
  690. // Item Info
  691. //-------------------------------------------------------------------------------------------------------------
  692. "ItemCost" "450"
  693. "ItemShopTags" "int"
  694. "ItemQuality" "component"
  695. "SideShop" "1"
  696. "ItemAliases" "apprentice's robe;apprentices robe"
  697.  
  698. // Special
  699. //-------------------------------------------------------------------------------------------------------------
  700. "AbilitySpecial"
  701. {
  702. "01"
  703. {
  704. "var_type" "FIELD_INTEGER"
  705. "bonus_intellect" "6"
  706. }
  707. }
  708. }
  709.  
  710. //=================================================================================================================
  711. // Circlet
  712. //=================================================================================================================
  713. "item_circlet"
  714. {
  715. // General
  716. //-------------------------------------------------------------------------------------------------------------
  717. "ID" "20" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  718. "AbilityName" "item_circlet"
  719. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  720.  
  721. // Item Info
  722. //-------------------------------------------------------------------------------------------------------------
  723. "ItemCost" "185"
  724. "ItemShopTags" "agi;int;str"
  725. "ItemQuality" "component"
  726. "ItemAliases" "pretender's crown;pretenders crown"
  727.  
  728. // Special
  729. //-------------------------------------------------------------------------------------------------------------
  730. "AbilitySpecial"
  731. {
  732. "01"
  733. {
  734. "var_type" "FIELD_INTEGER"
  735. "bonus_all_stats" "2"
  736. }
  737. }
  738. }
  739.  
  740. //=================================================================================================================
  741. // Ogre Axe
  742. //=================================================================================================================
  743. "item_ogre_axe"
  744. {
  745. // General
  746. //-------------------------------------------------------------------------------------------------------------
  747. "ID" "21" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  748. "AbilityName" "item_ogre_axe"
  749. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  750.  
  751. // Item Info
  752. //-------------------------------------------------------------------------------------------------------------
  753. "ItemCost" "1000"
  754. "ItemShopTags" "str"
  755. "ItemQuality" "component"
  756. "ItemAliases" "mighty blade"
  757.  
  758. // Special
  759. //-------------------------------------------------------------------------------------------------------------
  760. "AbilitySpecial"
  761. {
  762. "01"
  763. {
  764. "var_type" "FIELD_INTEGER"
  765. "bonus_strength" "10"
  766. }
  767. }
  768. }
  769.  
  770. //=================================================================================================================
  771. // Blade of Alacrity
  772. //=================================================================================================================
  773. "item_blade_of_alacrity"
  774. {
  775. // General
  776. //-------------------------------------------------------------------------------------------------------------
  777. "ID" "22" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  778. "AbilityName" "item_blade_of_alacrity"
  779. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  780.  
  781. // Item Info
  782. //-------------------------------------------------------------------------------------------------------------
  783. "ItemCost" "1000"
  784. "ItemShopTags" "agi"
  785. "ItemQuality" "component"
  786. "ItemAliases" "quickblade"
  787.  
  788. // Special
  789. //-------------------------------------------------------------------------------------------------------------
  790. "AbilitySpecial"
  791. {
  792. "01"
  793. {
  794. "var_type" "FIELD_INTEGER"
  795. "bonus_agility" "10"
  796. }
  797. }
  798. }
  799.  
  800. //=================================================================================================================
  801. // Staff of Wizardry
  802. //=================================================================================================================
  803. "item_staff_of_wizardry"
  804. {
  805. // General
  806. //-------------------------------------------------------------------------------------------------------------
  807. "ID" "23" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  808. "AbilityName" "item_staff_of_wizardry"
  809. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  810.  
  811. // Item Info
  812. //-------------------------------------------------------------------------------------------------------------
  813. "ItemCost" "1000"
  814. "ItemShopTags" "int"
  815. "ItemQuality" "component"
  816. "ItemAliases" "neophyte's book;neophytes book"
  817.  
  818. // Special
  819. //-------------------------------------------------------------------------------------------------------------
  820. "AbilitySpecial"
  821. {
  822. "01"
  823. {
  824. "var_type" "FIELD_INTEGER"
  825. "bonus_intellect" "10"
  826. }
  827. }
  828. }
  829.  
  830. //=================================================================================================================
  831. // Ultimate Orb
  832. //=================================================================================================================
  833. "item_ultimate_orb"
  834. {
  835. // General
  836. //-------------------------------------------------------------------------------------------------------------
  837. "ID" "24" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  838. "AbilityName" "item_ultimate_orb"
  839. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  840.  
  841. // Item Info
  842. //-------------------------------------------------------------------------------------------------------------
  843. "ItemCost" "2100"
  844. "ItemShopTags" "agi;int;str"
  845. "ItemQuality" "component"
  846. "SideShop" "1"
  847. "ItemAliases" "blessed orb"
  848.  
  849. // Special
  850. //-------------------------------------------------------------------------------------------------------------
  851. "AbilitySpecial"
  852. {
  853. "01"
  854. {
  855. "var_type" "FIELD_INTEGER"
  856. "bonus_all_stats" "10"
  857. }
  858. }
  859. }
  860.  
  861. //=================================================================================================================
  862. // Gloves
  863. //=================================================================================================================
  864. "item_gloves"
  865. {
  866. // General
  867. //-------------------------------------------------------------------------------------------------------------
  868. "ID" "25" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  869. "AbilityName" "item_gloves"
  870. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  871.  
  872. // Item Info
  873. //-------------------------------------------------------------------------------------------------------------
  874. "ItemCost" "500"
  875. "ItemShopTags" "attack_speed"
  876. "ItemQuality" "component"
  877. "SideShop" "1"
  878. "ItemAliases" "gloves of the swift"
  879.  
  880. // Special
  881. //-------------------------------------------------------------------------------------------------------------
  882. "AbilitySpecial"
  883. {
  884. "01"
  885. {
  886. "var_type" "FIELD_INTEGER"
  887. "bonus_attack_speed" "15"
  888. }
  889. }
  890. }
  891.  
  892. //=================================================================================================================
  893. // Lifesteal
  894. //=================================================================================================================
  895. "item_lifesteal"
  896. {
  897. // General
  898. //-------------------------------------------------------------------------------------------------------------
  899. "ID" "26" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  900. "AbilityName" "item_lifesteal"
  901. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  902.  
  903. // Item Info
  904. //-------------------------------------------------------------------------------------------------------------
  905. "ItemCost" "900"
  906. "ItemShopTags" "unique"
  907. "ItemQuality" "component"
  908. "SideShop" "1"
  909. "ItemAliases" "hungry spirit;lifesteal;orb"
  910.  
  911. // Special
  912. //-------------------------------------------------------------------------------------------------------------
  913. "AbilitySpecial"
  914. {
  915. "01"
  916. {
  917. "var_type" "FIELD_INTEGER"
  918. "lifesteal_percent" "15"
  919. }
  920. }
  921. }
  922.  
  923. //=================================================================================================================
  924. // Ring of Regen
  925. //=================================================================================================================
  926. "item_ring_of_regen"
  927. {
  928. // General
  929. //-------------------------------------------------------------------------------------------------------------
  930. "ID" "27" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  931. "AbilityName" "item_ring_of_regen"
  932. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  933.  
  934. // Item Info
  935. //-------------------------------------------------------------------------------------------------------------
  936. "ItemCost" "350"
  937. "ItemShopTags" "regen_health"
  938. "ItemQuality" "component"
  939. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  940. "SideShop" "1"
  941. "ItemAliases" "ror;trinket of restoration"
  942.  
  943. // Sound
  944. //-------------------------------------------------------------------------------------------------------------
  945. "UIPickupSound" "Item.PickUpRingShop"
  946. "UIDropSound" "Item.DropRingShop"
  947. "WorldDropSound" "Item.DropRingWorld"
  948.  
  949. // Special
  950. //-------------------------------------------------------------------------------------------------------------
  951. "AbilitySpecial"
  952. {
  953. "01"
  954. {
  955. "var_type" "FIELD_INTEGER"
  956. "bonus_health_regen" "2"
  957. }
  958. }
  959.  
  960. }
  961.  
  962. //=================================================================================================================
  963. // Sobi Mask
  964. //=================================================================================================================
  965. "item_sobi_mask"
  966. {
  967. // General
  968. //-------------------------------------------------------------------------------------------------------------
  969. "ID" "28" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  970. "AbilityName" "item_sobi_mask"
  971. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  972.  
  973. // Item Info
  974. //-------------------------------------------------------------------------------------------------------------
  975. "ItemCost" "325"
  976. "ItemShopTags" "regen_mana"
  977. "ItemQuality" "component"
  978. "SideShop" "1"
  979. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  980. "ItemAliases" "scarab"
  981.  
  982. // Special
  983. //-------------------------------------------------------------------------------------------------------------
  984. "AbilitySpecial"
  985. {
  986. "01"
  987. {
  988. "var_type" "FIELD_INTEGER"
  989. "bonus_mana_regen" "50"
  990. }
  991. }
  992. }
  993.  
  994. //=================================================================================================================
  995. // Boots
  996. //=================================================================================================================
  997. "item_boots"
  998. {
  999. // General
  1000. //-------------------------------------------------------------------------------------------------------------
  1001. "ID" "29" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1002. "AbilityName" "item_boots"
  1003. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1004.  
  1005. // Item Info
  1006. //-------------------------------------------------------------------------------------------------------------
  1007. "ItemCost" "500"
  1008. "ItemShopTags" "move_speed"
  1009. "ItemQuality" "component"
  1010. "SideShop" "1"
  1011. "ItemAliases" "marchers"
  1012.  
  1013. // Special
  1014. //-------------------------------------------------------------------------------------------------------------
  1015. "AbilitySpecial"
  1016. {
  1017. "01"
  1018. {
  1019. "var_type" "FIELD_INTEGER"
  1020. "bonus_movement_speed" "55"
  1021. }
  1022. }
  1023. }
  1024.  
  1025. //=================================================================================================================
  1026. // Gem
  1027. //=================================================================================================================
  1028. "item_gem"
  1029. {
  1030. // General
  1031. //-------------------------------------------------------------------------------------------------------------
  1032. "ID" "30" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1033. "AbilityName" "item_gem"
  1034. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1035. "Model" "models/props_gameplay/gem01.mdl"
  1036.  
  1037. // Item Info
  1038. //-------------------------------------------------------------------------------------------------------------
  1039. "ItemCost" "700"
  1040. "ItemShopTags" "see_invis"
  1041. "ItemQuality" "component"
  1042. "ItemSellable" "0"
  1043. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  1044. "ItemDeclaresPurchase" "1"
  1045. "ItemStockMax" "1"
  1046. "ItemStockTime" "480.0"
  1047. "ItemAliases" "true sight;bound eye;reveal"
  1048.  
  1049. // Sound
  1050. //-------------------------------------------------------------------------------------------------------------
  1051. "UIPickupSound" "Item.PickUpGemShop"
  1052. "UIDropSound" "Item.DropGemShop"
  1053. "WorldDropSound" "Item.DropGemWorld"
  1054.  
  1055. // Special
  1056. //-------------------------------------------------------------------------------------------------------------
  1057. "AbilitySpecial"
  1058. {
  1059. "01"
  1060. {
  1061. "var_type" "FIELD_INTEGER"
  1062. "radius" "1100"
  1063. }
  1064. }
  1065. }
  1066.  
  1067. //=================================================================================================================
  1068. // Cloak
  1069. //=================================================================================================================
  1070. "item_cloak"
  1071. {
  1072. // General
  1073. //-------------------------------------------------------------------------------------------------------------
  1074. "ID" "31" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1075. "AbilityName" "item_cloak"
  1076. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1077.  
  1078. // Item Info
  1079. //-------------------------------------------------------------------------------------------------------------
  1080. "ItemCost" "550"
  1081. "ItemShopTags" "magic_resist"
  1082. "ItemQuality" "component"
  1083. "SideShop" "1"
  1084. "ItemAliases" "mystic vestments"
  1085.  
  1086. // Special
  1087. //-------------------------------------------------------------------------------------------------------------
  1088. "AbilitySpecial"
  1089. {
  1090. "01"
  1091. {
  1092. "var_type" "FIELD_INTEGER"
  1093. "bonus_magical_armor" "115"
  1094. }
  1095. "02"
  1096. {
  1097. "var_type" "FIELD_INTEGER"
  1098. "tooltip_resist" "15"
  1099. }
  1100. }
  1101. }
  1102.  
  1103. //=================================================================================================================
  1104. // Talisman of Evasion
  1105. //=================================================================================================================
  1106. "item_talisman_of_evasion"
  1107. {
  1108. // General
  1109. //-------------------------------------------------------------------------------------------------------------
  1110. "ID" "32" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1111. "AbilityName" "item_talisman_of_evasion"
  1112. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1113.  
  1114. // Item Info
  1115. //-------------------------------------------------------------------------------------------------------------
  1116. "ItemCost" "1800"
  1117. "ItemShopTags" "evasion"
  1118. "ItemQuality" "component"
  1119. "SideShop" "1"
  1120. "ItemAliases" "snake bracelet"
  1121.  
  1122. // Special
  1123. //-------------------------------------------------------------------------------------------------------------
  1124. "AbilitySpecial"
  1125. {
  1126. "01"
  1127. {
  1128. "var_type" "FIELD_INTEGER"
  1129. "bonus_evasion" "25"
  1130. }
  1131. }
  1132. }
  1133.  
  1134. //=================================================================================================================
  1135. // Cheese
  1136. //=================================================================================================================
  1137. "item_cheese"
  1138. {
  1139. // General
  1140. //-------------------------------------------------------------------------------------------------------------
  1141. "ID" "33" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1142. "AbilityName" "item_cheese"
  1143. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1144. "Model" "models/props_gameplay/cheese.mdl"
  1145.  
  1146. // Item Info
  1147. //-------------------------------------------------------------------------------------------------------------
  1148. "ItemCost" "1000"
  1149. "ItemShopTags" ""
  1150. "ItemQuality" "epic"
  1151. "ItemPurchasable" "0"
  1152. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1153.  
  1154. // Special
  1155. //-------------------------------------------------------------------------------------------------------------
  1156. "AbilitySpecial"
  1157. {
  1158. "01"
  1159. {
  1160. "var_type" "FIELD_INTEGER"
  1161. "health_restore" "2500"
  1162. }
  1163. "02"
  1164. {
  1165. "var_type" "FIELD_INTEGER"
  1166. "mana_restore" "1000"
  1167. }
  1168. }
  1169. }
  1170.  
  1171. //=================================================================================================================
  1172. // Magic Stick
  1173. //=================================================================================================================
  1174. "item_magic_stick"
  1175. {
  1176. // General
  1177. //-------------------------------------------------------------------------------------------------------------
  1178. "ID" "34" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1179. "AbilityName" "item_magic_stick"
  1180. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1181.  
  1182. // Stats
  1183. //-------------------------------------------------------------------------------------------------------------
  1184. "AbilityCooldown" "13.0"
  1185. "AbilitySharedCooldown" "magicwand"
  1186.  
  1187. // Item Info
  1188. //-------------------------------------------------------------------------------------------------------------
  1189. "ItemCost" "200"
  1190. "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana"
  1191. "ItemQuality" "component"
  1192. "ItemRequiresCharges" "1"
  1193. "ItemDisplayCharges" "1"
  1194. "SideShop" "1"
  1195. "ItemAliases" "mana battery"
  1196.  
  1197. // Special
  1198. //-------------------------------------------------------------------------------------------------------------
  1199. "AbilitySpecial"
  1200. {
  1201. "01"
  1202. {
  1203. "var_type" "FIELD_INTEGER"
  1204. "max_charges" "10"
  1205. }
  1206. "02"
  1207. {
  1208. "var_type" "FIELD_INTEGER"
  1209. "charge_radius" "1200"
  1210. }
  1211. "03"
  1212. {
  1213. "var_type" "FIELD_INTEGER"
  1214. "restore_per_charge" "15"
  1215. }
  1216. }
  1217. }
  1218.  
  1219. //=================================================================================================================
  1220. // Recipe: Magic Wand
  1221. //=================================================================================================================
  1222. "item_recipe_magic_wand"
  1223. {
  1224. // General
  1225. //-------------------------------------------------------------------------------------------------------------
  1226. "ID" "35" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1227. "AbilityName" "item_recipe_magic_wand"
  1228.  
  1229. // Item Info
  1230. //-------------------------------------------------------------------------------------------------------------
  1231. "ItemCost" "150"
  1232. "ItemShopTags" ""
  1233.  
  1234. // Recipe
  1235. //-------------------------------------------------------------------------------------------------------------
  1236. "ItemRecipe" "1"
  1237. "ItemResult" "item_magic_wand"
  1238. "ItemRequirements"
  1239. {
  1240. "01" "item_branches;item_branches;item_branches;item_magic_stick"
  1241. }
  1242. }
  1243.  
  1244. //=================================================================================================================
  1245. // Magic Wand
  1246. //=================================================================================================================
  1247. "item_magic_wand"
  1248. {
  1249. // General
  1250. //-------------------------------------------------------------------------------------------------------------
  1251. "ID" "36" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1252. "AbilityName" "item_magic_wand"
  1253. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1254.  
  1255. // Stats
  1256. //-------------------------------------------------------------------------------------------------------------
  1257. "AbilityCooldown" "13.0"
  1258. "AbilitySharedCooldown" "magicwand"
  1259.  
  1260. // Item Info
  1261. //-------------------------------------------------------------------------------------------------------------
  1262. "ItemCost" "509"
  1263. "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana;int;agi;str"
  1264. "ItemQuality" "common"
  1265. "ItemRequiresCharges" "1"
  1266. "ItemDisplayCharges" "1"
  1267. "ItemAliases" "power supply"
  1268.  
  1269. // Special
  1270. //-------------------------------------------------------------------------------------------------------------
  1271. "AbilitySpecial"
  1272. {
  1273. "01"
  1274. {
  1275. "var_type" "FIELD_INTEGER"
  1276. "max_charges" "15"
  1277. }
  1278. "02"
  1279. {
  1280. "var_type" "FIELD_INTEGER"
  1281. "charge_radius" "1200"
  1282. }
  1283. "03"
  1284. {
  1285. "var_type" "FIELD_INTEGER"
  1286. "bonus_all_stats" "3"
  1287. }
  1288. "04"
  1289. {
  1290. "var_type" "FIELD_INTEGER"
  1291. "restore_per_charge" "15"
  1292. }
  1293. }
  1294. }
  1295.  
  1296. //=================================================================================================================
  1297. // Ghost
  1298. //=================================================================================================================
  1299. "item_ghost"
  1300. {
  1301. // General
  1302. //-------------------------------------------------------------------------------------------------------------
  1303. "ID" "37" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1304. "AbilityName" "item_ghost"
  1305. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  1306.  
  1307. // Stats
  1308. //-------------------------------------------------------------------------------------------------------------
  1309. "AbilityCooldown" "30.0"
  1310. "AbilitySharedCooldown" "ethereal"
  1311.  
  1312. // Item Info
  1313. //-------------------------------------------------------------------------------------------------------------
  1314. "ItemCost" "1600"
  1315. "ItemShopTags" "int;agi;str;hard_to_tag"
  1316. "ItemQuality" "component"
  1317. "ItemAliases" "void talisman"
  1318.  
  1319. // Special
  1320. //-------------------------------------------------------------------------------------------------------------
  1321. "AbilitySpecial"
  1322. {
  1323. "01"
  1324. {
  1325. "var_type" "FIELD_INTEGER"
  1326. "bonus_all_stats" "7"
  1327. }
  1328. "02"
  1329. {
  1330. "var_type" "FIELD_INTEGER"
  1331. "extra_spell_damage_percent" "40"
  1332. }
  1333. "03"
  1334. {
  1335. "var_type" "FIELD_FLOAT"
  1336. "duration" "4.0"
  1337. }
  1338. }
  1339. }
  1340.  
  1341. //=================================================================================================================
  1342. // Clarity
  1343. //=================================================================================================================
  1344. "item_clarity"
  1345. {
  1346. // General
  1347. //-------------------------------------------------------------------------------------------------------------
  1348. "ID" "38" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1349. "AbilityName" "item_clarity"
  1350. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  1351. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1352. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1353.  
  1354. // Stats
  1355. //-------------------------------------------------------------------------------------------------------------
  1356. "AbilityCastRange" "100"
  1357. "AbilityCastPoint" "0.0"
  1358.  
  1359. // Item Info
  1360. //-------------------------------------------------------------------------------------------------------------
  1361. "ItemCost" "50"
  1362. "ItemShopTags" "consumable"
  1363. "ItemQuality" "consumable"
  1364. "ItemStackable" "1"
  1365. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1366. "ItemPermanent" "0"
  1367. "ItemInitialCharges" "1"
  1368. "ItemAliases" "mana potion"
  1369.  
  1370. // Special
  1371. //-------------------------------------------------------------------------------------------------------------
  1372. "AbilitySpecial"
  1373. {
  1374. "01"
  1375. {
  1376. "var_type" "FIELD_INTEGER"
  1377. "buff_duration" "30"
  1378. }
  1379. "02"
  1380. {
  1381. "var_type" "FIELD_INTEGER"
  1382. "total_mana" "100"
  1383. }
  1384. }
  1385. }
  1386.  
  1387. //=================================================================================================================
  1388. // Flask
  1389. //=================================================================================================================
  1390. "item_flask"
  1391. {
  1392. // General
  1393. //-------------------------------------------------------------------------------------------------------------
  1394. "ID" "39" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1395. "AbilityName" "item_flask"
  1396. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  1397. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1398. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1399.  
  1400. // Stats
  1401. //-------------------------------------------------------------------------------------------------------------
  1402. "AbilityCastRange" "100"
  1403. "AbilityCastPoint" "0.0"
  1404.  
  1405. // Item Info
  1406. //-------------------------------------------------------------------------------------------------------------
  1407. "ItemCost" "100"
  1408. "ItemShopTags" "consumable"
  1409. "ItemQuality" "consumable"
  1410. "ItemStackable" "1"
  1411. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1412. "ItemPermanent" "0"
  1413. "ItemInitialCharges" "1"
  1414. "ItemAliases" "health potion"
  1415.  
  1416. // Special
  1417. //-------------------------------------------------------------------------------------------------------------
  1418. "AbilitySpecial"
  1419. {
  1420. "01"
  1421. {
  1422. "var_type" "FIELD_INTEGER"
  1423. "buff_duration" "10"
  1424. }
  1425. "02"
  1426. {
  1427. "var_type" "FIELD_INTEGER"
  1428. "total_health" "400"
  1429. }
  1430. }
  1431. }
  1432.  
  1433. //=================================================================================================================
  1434. // Dust
  1435. //=================================================================================================================
  1436. "item_dust"
  1437. {
  1438. // General
  1439. //-------------------------------------------------------------------------------------------------------------
  1440. "ID" "40" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1441. "AbilityName" "item_dust"
  1442. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1443.  
  1444. // Stats
  1445. //-------------------------------------------------------------------------------------------------------------
  1446. "AbilityCooldown" "60.0"
  1447.  
  1448. // Item Info
  1449. //-------------------------------------------------------------------------------------------------------------
  1450. "AbilityManaCost" "5"
  1451. "ItemCost" "180"
  1452. "ItemShopTags" "consumable"
  1453. "ItemQuality" "consumable"
  1454. "ItemStackable" "0"
  1455. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1456. "ItemPermanent" "0"
  1457. "ItemInitialCharges" "2"
  1458. "ItemDeclaresPurchase" "1"
  1459. "ItemAliases" "dust of revelation;true sight;reveal"
  1460.  
  1461. // Special
  1462. //-------------------------------------------------------------------------------------------------------------
  1463. "AbilitySpecial"
  1464. {
  1465. "01"
  1466. {
  1467. "var_type" "FIELD_INTEGER"
  1468. "duration" "12"
  1469. }
  1470. "02"
  1471. {
  1472. "var_type" "FIELD_INTEGER"
  1473. "radius" "1050"
  1474. }
  1475. }
  1476. }
  1477.  
  1478. //=================================================================================================================
  1479. // Bottle
  1480. //=================================================================================================================
  1481. "item_bottle"
  1482. {
  1483. // General
  1484. //-------------------------------------------------------------------------------------------------------------
  1485. "ID" "41" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1486. "AbilityName" "item_bottle"
  1487. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1488. "Model" "models/props_gameplay/bottle_blue.mdl"
  1489.  
  1490. // Stats
  1491. //-------------------------------------------------------------------------------------------------------------
  1492. "AbilityCooldown" "0.5"
  1493.  
  1494. // Item Info
  1495. //-------------------------------------------------------------------------------------------------------------
  1496. "ItemCost" "600"
  1497. "ItemShopTags" "consumable"
  1498. "ItemQuality" "consumable"
  1499. "ItemStackable" "0"
  1500. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1501. "ItemPermanent" "1"
  1502. "ItemInitialCharges" "3"
  1503. "ItemDisplayCharges" "1"
  1504. "ItemAliases" "bottle of tears"
  1505.  
  1506. // Special
  1507. //-------------------------------------------------------------------------------------------------------------
  1508. "AbilitySpecial"
  1509. {
  1510. "01"
  1511. {
  1512. "var_type" "FIELD_INTEGER"
  1513. "health_restore" "135"
  1514. }
  1515. "02"
  1516. {
  1517. "var_type" "FIELD_INTEGER"
  1518. "mana_restore" "70"
  1519. }
  1520.  
  1521. "03"
  1522. {
  1523. "var_type" "FIELD_INTEGER"
  1524. "restore_time" "3"
  1525. }
  1526. }
  1527. }
  1528.  
  1529. //=================================================================================================================
  1530. // Observer Wards
  1531. //=================================================================================================================
  1532. "item_ward_observer"
  1533. {
  1534. // General
  1535. //-------------------------------------------------------------------------------------------------------------
  1536. "ID" "42" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1537. "AbilityName" "item_ward_observer"
  1538. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT"
  1539.  
  1540. // Stats
  1541. //-------------------------------------------------------------------------------------------------------------
  1542. "AbilityCastRange" "500"
  1543. "AbilityCastPoint" "0.0"
  1544.  
  1545. // Item Info
  1546. //-------------------------------------------------------------------------------------------------------------
  1547. "ItemCost" "200"
  1548. "ItemShopTags" "consumable"
  1549. "ItemQuality" "consumable"
  1550. "ItemStackable" "1"
  1551. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  1552. "ItemPermanent" "0"
  1553. "ItemInitialCharges" "2"
  1554. "ItemStockMax" "2"
  1555. "ItemStockTime" "360.0"
  1556. "ItemDeclaresPurchase" "1"
  1557. "ItemAliases" "wards of sight"
  1558.  
  1559. // Special
  1560. //-------------------------------------------------------------------------------------------------------------
  1561. "AbilitySpecial"
  1562. {
  1563. "01"
  1564. {
  1565. "var_type" "FIELD_INTEGER"
  1566. "lifetime" "360"
  1567. }
  1568. "02"
  1569. {
  1570. "var_type" "FIELD_INTEGER"
  1571. "vision_range" "1600"
  1572. }
  1573. "03"
  1574. {
  1575. "var_type" "FIELD_INTEGER"
  1576. "health" "200"
  1577. }
  1578. }
  1579. }
  1580.  
  1581. //=================================================================================================================
  1582. // Sentry Ward
  1583. //=================================================================================================================
  1584. "item_ward_sentry"
  1585. {
  1586. // General
  1587. //-------------------------------------------------------------------------------------------------------------
  1588. "ID" "43" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1589. "AbilityName" "item_ward_sentry"
  1590. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT"
  1591.  
  1592. // Stats
  1593. //-------------------------------------------------------------------------------------------------------------
  1594. "AbilityCastRange" "500"
  1595. "AbilityCastPoint" "0.0"
  1596.  
  1597. // Item Info
  1598. //-------------------------------------------------------------------------------------------------------------
  1599. "ItemCost" "200"
  1600. "ItemShopTags" "consumable"
  1601. "ItemQuality" "consumable"
  1602. "ItemStackable" "1"
  1603. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  1604. "ItemPermanent" "0"
  1605. "ItemInitialCharges" "2"
  1606. "ItemDeclaresPurchase" "1"
  1607. "ItemAliases" "wards of revelation;true sight;reveal"
  1608.  
  1609. // Special
  1610. //-------------------------------------------------------------------------------------------------------------
  1611. "AbilitySpecial"
  1612. {
  1613. "01"
  1614. {
  1615. "var_type" "FIELD_INTEGER"
  1616. "lifetime" "180"
  1617. }
  1618. "02"
  1619. {
  1620. "var_type" "FIELD_INTEGER"
  1621. "vision_range" "0"
  1622. }
  1623. "02"
  1624. {
  1625. "var_type" "FIELD_INTEGER"
  1626. "true_sight_range" "950"
  1627. }
  1628. "03"
  1629. {
  1630. "var_type" "FIELD_INTEGER"
  1631. "health" "200"
  1632. }
  1633. }
  1634. }
  1635.  
  1636. //=================================================================================================================
  1637. // Tango
  1638. //=================================================================================================================
  1639. "item_tango"
  1640. {
  1641. // General
  1642. //-------------------------------------------------------------------------------------------------------------
  1643. "ID" "44" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1644. "AbilityName" "item_tango"
  1645. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  1646. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE"
  1647.  
  1648. // Stats
  1649. //-------------------------------------------------------------------------------------------------------------
  1650. "AbilityCastRange" "165"
  1651. "AbilityCastPoint" "0.0"
  1652.  
  1653. // Item Info
  1654. //-------------------------------------------------------------------------------------------------------------
  1655. "ItemCost" "90"
  1656. "ItemShopTags" "consumable"
  1657. "ItemQuality" "consumable"
  1658. "ItemStackable" "1"
  1659. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1660. "ItemPermanent" "0"
  1661. "ItemInitialCharges" "3"
  1662. "ItemAliases" "runes of the blight"
  1663.  
  1664. // Special
  1665. //-------------------------------------------------------------------------------------------------------------
  1666. "AbilitySpecial"
  1667. {
  1668. "01"
  1669. {
  1670. "var_type" "FIELD_FLOAT"
  1671. "buff_duration" "16.0"
  1672. }
  1673. "02"
  1674. {
  1675. "var_type" "FIELD_INTEGER"
  1676. "total_heal" "115"
  1677. }
  1678. }
  1679. }
  1680.  
  1681. //=================================================================================================================
  1682. // Courier
  1683. //=================================================================================================================
  1684. "item_courier"
  1685. {
  1686. // General
  1687. //-------------------------------------------------------------------------------------------------------------
  1688. "ID" "45" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1689. "AbilityName" "item_courier"
  1690. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1691. "ItemDeclaresPurchase" "1"
  1692.  
  1693. // Item Info
  1694. //-------------------------------------------------------------------------------------------------------------
  1695. "ItemCost" "170"
  1696. "ItemShopTags" "consumable"
  1697. "ItemQuality" "consumable"
  1698. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1699. "ItemAliases" "donkey;chicken"
  1700. "ItemStockMax" "1"
  1701. "ItemStockTime" "7.0"
  1702. }
  1703.  
  1704. //=================================================================================================================
  1705. // Teleport Scroll
  1706. //=================================================================================================================
  1707. "item_tpscroll"
  1708. {
  1709. // General
  1710. //-------------------------------------------------------------------------------------------------------------
  1711. "ID" "46" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1712. "AbilityName" "item_tpscroll"
  1713. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_NOASSIST"
  1714. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1715. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_BUILDING"
  1716. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  1717. "Model" "models/props_gameplay/tpscroll01.mdl"
  1718.  
  1719. // Stats
  1720. //-------------------------------------------------------------------------------------------------------------
  1721. "AbilityCastRange" "0"
  1722. "AbilityCooldown" "65.0"
  1723. "AbilitySharedCooldown" "teleport"
  1724. "AbilityChannelTime" "3.0"
  1725. "AbilityCastPoint" "0.0"
  1726.  
  1727. // Item Info
  1728. //-------------------------------------------------------------------------------------------------------------
  1729. "AbilityManaCost" "75"
  1730. "ItemCost" "135"
  1731. "ItemShopTags" "consumable;tutorial"
  1732. "ItemQuality" "consumable"
  1733. "ItemStackable" "1"
  1734. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1735. "ItemPermanent" "0"
  1736. "ItemInitialCharges" "1"
  1737. "SideShop" "1"
  1738. "ItemAliases" "tp;homecoming stone"
  1739.  
  1740. // Special
  1741. //-------------------------------------------------------------------------------------------------------------
  1742. "AbilitySpecial"
  1743. {
  1744. "01"
  1745. {
  1746. "var_type" "FIELD_INTEGER"
  1747. "minimun_distance" "70"
  1748. }
  1749. "02"
  1750. {
  1751. "var_type" "FIELD_INTEGER"
  1752. "maximum_distance" "525"
  1753. }
  1754. "02"
  1755. {
  1756. "var_type" "FIELD_INTEGER"
  1757. "vision_radius" "200"
  1758. }
  1759. }
  1760. }
  1761.  
  1762. //=================================================================================================================
  1763. // Recipe: Travel Boots
  1764. //=================================================================================================================
  1765. "item_recipe_travel_boots"
  1766. {
  1767. // General
  1768. //-------------------------------------------------------------------------------------------------------------
  1769. "ID" "47" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1770. "AbilityName" "item_recipe_travel_boots"
  1771.  
  1772. // Item Info
  1773. //-------------------------------------------------------------------------------------------------------------
  1774. "ItemCost" "2000"
  1775. "ItemShopTags" ""
  1776.  
  1777. // Recipe
  1778. //-------------------------------------------------------------------------------------------------------------
  1779. "ItemRecipe" "1"
  1780. "ItemResult" "item_travel_boots"
  1781. "ItemRequirements"
  1782. {
  1783. "01" "item_boots"
  1784. }
  1785. }
  1786.  
  1787. //=================================================================================================================
  1788. // Travel Boots
  1789. //=================================================================================================================
  1790. "item_travel_boots"
  1791. {
  1792. // General
  1793. //-------------------------------------------------------------------------------------------------------------
  1794. "ID" "48" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1795. "AbilityName" "item_travel_boots"
  1796. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1797. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1798. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP | DOTA_UNIT_TARGET_MECHANICAL | DOTA_UNIT_TARGET_BUILDING"
  1799. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  1800.  
  1801. // Stats
  1802. //-------------------------------------------------------------------------------------------------------------
  1803. "AbilityCooldown" "60.0"
  1804. "AbilitySharedCooldown" "teleport"
  1805. "AbilityChannelTime" "3.0"
  1806.  
  1807. // Item Info
  1808. //-------------------------------------------------------------------------------------------------------------
  1809. "AbilityManaCost" "75"
  1810. "ItemCost" "2500"
  1811. "ItemShopTags" "teleport;move_speed"
  1812. "ItemQuality" "common"
  1813. "ItemAliases" "bot;post haste"
  1814.  
  1815. // Special
  1816. //-------------------------------------------------------------------------------------------------------------
  1817. "AbilitySpecial"
  1818. {
  1819. "01"
  1820. {
  1821. "var_type" "FIELD_INTEGER"
  1822. "bonus_movement_speed" "100"
  1823. }
  1824. }
  1825. }
  1826.  
  1827. //=================================================================================================================
  1828. // Recipe: Phase Boots
  1829. //=================================================================================================================
  1830. "item_recipe_phase_boots"
  1831. {
  1832. // General
  1833. //-------------------------------------------------------------------------------------------------------------
  1834. "ID" "49" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1835. "AbilityName" "item_recipe_phase_boots"
  1836.  
  1837. // Item Info
  1838. //-------------------------------------------------------------------------------------------------------------
  1839. "ItemCost" "0"
  1840. "ItemShopTags" ""
  1841.  
  1842. // Recipe
  1843. //-------------------------------------------------------------------------------------------------------------
  1844. "ItemRecipe" "1"
  1845. "ItemResult" "item_phase_boots"
  1846. "ItemRequirements"
  1847. {
  1848. "01" "item_boots;item_blades_of_attack;item_blades_of_attack"
  1849. }
  1850. }
  1851.  
  1852. //=================================================================================================================
  1853. // Phase Boots
  1854. //=================================================================================================================
  1855. "item_phase_boots"
  1856. {
  1857. // General
  1858. //-------------------------------------------------------------------------------------------------------------
  1859. "ID" "50" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1860. "AbilityName" "item_phase_boots"
  1861. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  1862.  
  1863. // Stats
  1864. //-------------------------------------------------------------------------------------------------------------
  1865. "AbilityCooldown" "8.0"
  1866.  
  1867. // Item Info
  1868. //-------------------------------------------------------------------------------------------------------------
  1869. "ItemCost" "1400"
  1870. "ItemShopTags" "damage;move_speed;hard_to_tag"
  1871. "ItemQuality" "common"
  1872. "ItemAliases" "ghost marchers"
  1873.  
  1874. // Special
  1875. //-------------------------------------------------------------------------------------------------------------
  1876. "AbilitySpecial"
  1877. {
  1878. "01"
  1879. {
  1880. "var_type" "FIELD_FLOAT"
  1881. "phase_duration" "4.0"
  1882. }
  1883. "02"
  1884. {
  1885. "var_type" "FIELD_INTEGER"
  1886. "phase_movement_speed" "16"
  1887. }
  1888. "03"
  1889. {
  1890. "var_type" "FIELD_INTEGER"
  1891. "bonus_movement_speed" "60"
  1892. }
  1893. "04"
  1894. {
  1895. "var_type" "FIELD_INTEGER"
  1896. "bonus_damage" "24"
  1897. }
  1898. }
  1899. }
  1900.  
  1901. //=================================================================================================================
  1902. // Demon Edge
  1903. //=================================================================================================================
  1904. "item_demon_edge"
  1905. {
  1906. // General
  1907. //-------------------------------------------------------------------------------------------------------------
  1908. "ID" "51" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1909. "AbilityName" "item_demon_edge"
  1910. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1911.  
  1912. // Item Info
  1913. //-------------------------------------------------------------------------------------------------------------
  1914. "ItemCost" "2400"
  1915. "ItemShopTags" "damage"
  1916. "ItemQuality" "secret_shop"
  1917. "SecretShop" "1"
  1918. "ItemAliases" "slayer"
  1919.  
  1920. // Special
  1921. //-------------------------------------------------------------------------------------------------------------
  1922. "AbilitySpecial"
  1923. {
  1924. "01"
  1925. {
  1926. "var_type" "FIELD_INTEGER"
  1927. "bonus_damage" "46"
  1928. }
  1929. }
  1930. }
  1931.  
  1932. //=================================================================================================================
  1933. // Eagle Horn
  1934. //=================================================================================================================
  1935. "item_eagle"
  1936. {
  1937. // General
  1938. //-------------------------------------------------------------------------------------------------------------
  1939. "ID" "52" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1940. "AbilityName" "item_eagle"
  1941. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1942.  
  1943. // Item Info
  1944. //-------------------------------------------------------------------------------------------------------------
  1945. "ItemCost" "3300"
  1946. "ItemShopTags" "agi"
  1947. "ItemQuality" "secret_shop"
  1948. "SecretShop" "1"
  1949. "ItemAliases" "dancing blade"
  1950.  
  1951. // Special
  1952. //-------------------------------------------------------------------------------------------------------------
  1953. "AbilitySpecial"
  1954. {
  1955. "01"
  1956. {
  1957. "var_type" "FIELD_INTEGER"
  1958. "bonus_agility" "25"
  1959. }
  1960. }
  1961. }
  1962.  
  1963. //=================================================================================================================
  1964. // Reaver
  1965. //=================================================================================================================
  1966. "item_reaver"
  1967. {
  1968. // General
  1969. //-------------------------------------------------------------------------------------------------------------
  1970. "ID" "53" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1971. "AbilityName" "item_reaver"
  1972. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1973.  
  1974. // Item Info
  1975. //-------------------------------------------------------------------------------------------------------------
  1976. "ItemCost" "3200"
  1977. "ItemShopTags" "str"
  1978. "ItemQuality" "secret_shop"
  1979. "SecretShop" "1"
  1980. "ItemAliases" "messerschmidt's reaver;axe of the malphai"
  1981.  
  1982. // Special
  1983. //-------------------------------------------------------------------------------------------------------------
  1984. "AbilitySpecial"
  1985. {
  1986. "01"
  1987. {
  1988. "var_type" "FIELD_INTEGER"
  1989. "bonus_strength" "25"
  1990. }
  1991. }
  1992. }
  1993.  
  1994. //=================================================================================================================
  1995. // Sacred Relic
  1996. //=================================================================================================================
  1997. "item_relic"
  1998. {
  1999. // General
  2000. //-------------------------------------------------------------------------------------------------------------
  2001. "ID" "54" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2002. "AbilityName" "item_relic"
  2003. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2004.  
  2005. // Item Info
  2006. //-------------------------------------------------------------------------------------------------------------
  2007. "ItemCost" "3800"
  2008. "ItemShopTags" "damage"
  2009. "ItemQuality" "secret_shop"
  2010. "SecretShop" "1"
  2011. "ItemAliases" "sword of the high;soth"
  2012.  
  2013. // Special
  2014. //-------------------------------------------------------------------------------------------------------------
  2015. "AbilitySpecial"
  2016. {
  2017. "01"
  2018. {
  2019. "var_type" "FIELD_INTEGER"
  2020. "bonus_damage" "60"
  2021. }
  2022. }
  2023. }
  2024.  
  2025. //=================================================================================================================
  2026. // Hyperstone
  2027. //=================================================================================================================
  2028. "item_hyperstone"
  2029. {
  2030. // General
  2031. //-------------------------------------------------------------------------------------------------------------
  2032. "ID" "55" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2033. "AbilityName" "item_hyperstone"
  2034. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2035.  
  2036. // Item Info
  2037. //-------------------------------------------------------------------------------------------------------------
  2038. "ItemCost" "2100"
  2039. "ItemShopTags" "attack_speed"
  2040. "ItemQuality" "secret_shop"
  2041. "SecretShop" "1"
  2042. "ItemAliases" "warpcleft"
  2043.  
  2044. // Special
  2045. //-------------------------------------------------------------------------------------------------------------
  2046. "AbilitySpecial"
  2047. {
  2048. "01"
  2049. {
  2050. "var_type" "FIELD_INTEGER"
  2051. "bonus_attack_speed" "55"
  2052. }
  2053. }
  2054. }
  2055.  
  2056. //=================================================================================================================
  2057. // Ring of Health
  2058. //=================================================================================================================
  2059. "item_ring_of_health"
  2060. {
  2061. // General
  2062. //-------------------------------------------------------------------------------------------------------------
  2063. "ID" "56" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2064. "AbilityName" "item_ring_of_health"
  2065. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2066.  
  2067. // Item Info
  2068. //-------------------------------------------------------------------------------------------------------------
  2069. "ItemCost" "875"
  2070. "ItemShopTags" "regen_health"
  2071. "ItemQuality" "secret_shop"
  2072. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2073. "SecretShop" "1"
  2074. "SideShop" "1"
  2075. "ItemAliases" "roh;lifetube"
  2076.  
  2077. // Sound
  2078. //-------------------------------------------------------------------------------------------------------------
  2079. "UIPickupSound" "Item.PickUpRingShop"
  2080. "UIDropSound" "Item.DropRingShop"
  2081. "WorldDropSound" "Item.DropRingWorld"
  2082.  
  2083. // Special
  2084. //-------------------------------------------------------------------------------------------------------------
  2085. "AbilitySpecial"
  2086. {
  2087. "01"
  2088. {
  2089. "var_type" "FIELD_INTEGER"
  2090. "bonus_health_regen" "5"
  2091. }
  2092. }
  2093. }
  2094.  
  2095. //=================================================================================================================
  2096. // Void Stone
  2097. //=================================================================================================================
  2098. "item_void_stone"
  2099. {
  2100. // General
  2101. //-------------------------------------------------------------------------------------------------------------
  2102. "ID" "57" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2103. "AbilityName" "item_void_stone"
  2104. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2105.  
  2106. // Item Info
  2107. //-------------------------------------------------------------------------------------------------------------
  2108. "ItemCost" "875"
  2109. "ItemShopTags" "regen_mana"
  2110. "ItemQuality" "secret_shop"
  2111. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2112. "SecretShop" "1"
  2113. "ItemAliases" "manatube"
  2114.  
  2115. // Special
  2116. //-------------------------------------------------------------------------------------------------------------
  2117. "AbilitySpecial"
  2118. {
  2119. "01"
  2120. {
  2121. "var_type" "FIELD_INTEGER"
  2122. "bonus_mana_regen" "100"
  2123. }
  2124. }
  2125. }
  2126.  
  2127. //=================================================================================================================
  2128. // Mystic Staff
  2129. //=================================================================================================================
  2130. "item_mystic_staff"
  2131. {
  2132. // General
  2133. //-------------------------------------------------------------------------------------------------------------
  2134. "ID" "58" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2135. "AbilityName" "item_mystic_staff"
  2136. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2137.  
  2138. // Item Info
  2139. //-------------------------------------------------------------------------------------------------------------
  2140. "ItemCost" "2700"
  2141. "ItemShopTags" "int"
  2142. "ItemQuality" "secret_shop"
  2143. "SecretShop" "1"
  2144. "ItemAliases" "acolyte's staff"
  2145.  
  2146. // Special
  2147. //-------------------------------------------------------------------------------------------------------------
  2148. "AbilitySpecial"
  2149. {
  2150. "01"
  2151. {
  2152. "var_type" "FIELD_INTEGER"
  2153. "bonus_intellect" "25"
  2154. }
  2155. }
  2156. }
  2157.  
  2158. //=================================================================================================================
  2159. // Energy Booster
  2160. //=================================================================================================================
  2161. "item_energy_booster"
  2162. {
  2163. // General
  2164. //-------------------------------------------------------------------------------------------------------------
  2165. "ID" "59" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2166. "AbilityName" "item_energy_booster"
  2167. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2168.  
  2169. // Item Info
  2170. //-------------------------------------------------------------------------------------------------------------
  2171. "ItemCost" "1000"
  2172. "ItemShopTags" "mana_pool"
  2173. "ItemQuality" "secret_shop"
  2174. "SecretShop" "1"
  2175. "SideShop" "1"
  2176. "ItemAliases" "pickled brain"
  2177.  
  2178. // Special
  2179. //-------------------------------------------------------------------------------------------------------------
  2180. "AbilitySpecial"
  2181. {
  2182. "01"
  2183. {
  2184. "var_type" "FIELD_INTEGER"
  2185. "bonus_mana" "250"
  2186. }
  2187. }
  2188. }
  2189.  
  2190. //=================================================================================================================
  2191. // Point Booster
  2192. //=================================================================================================================
  2193. "item_point_booster"
  2194. {
  2195. // General
  2196. //-------------------------------------------------------------------------------------------------------------
  2197. "ID" "60" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2198. "AbilityName" "item_point_booster"
  2199. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2200.  
  2201. // Item Info
  2202. //-------------------------------------------------------------------------------------------------------------
  2203. "ItemCost" "1200"
  2204. "ItemShopTags" "mana_pool;health_pool"
  2205. "ItemQuality" "secret_shop"
  2206. "SecretShop" "1"
  2207. "ItemAliases" "glowstone"
  2208.  
  2209. // Special
  2210. //-------------------------------------------------------------------------------------------------------------
  2211. "AbilitySpecial"
  2212. {
  2213. "01"
  2214. {
  2215. "var_type" "FIELD_INTEGER"
  2216. "bonus_mana" "150"
  2217. }
  2218.  
  2219. "02"
  2220. {
  2221. "var_type" "FIELD_INTEGER"
  2222. "bonus_health" "200"
  2223. }
  2224. }
  2225. }
  2226.  
  2227. //=================================================================================================================
  2228. // Vitality Booster
  2229. //=================================================================================================================
  2230. "item_vitality_booster"
  2231. {
  2232. // General
  2233. //-------------------------------------------------------------------------------------------------------------
  2234. "ID" "61" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2235. "AbilityName" "item_vitality_booster"
  2236. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2237.  
  2238. // Item Info
  2239. //-------------------------------------------------------------------------------------------------------------
  2240. "ItemCost" "1100"
  2241. "ItemShopTags" "health_pool"
  2242. "ItemQuality" "secret_shop"
  2243. "SecretShop" "1"
  2244. "ItemAliases" "beastheart"
  2245.  
  2246. // Special
  2247. //-------------------------------------------------------------------------------------------------------------
  2248. "AbilitySpecial"
  2249. {
  2250. "01"
  2251. {
  2252. "var_type" "FIELD_INTEGER"
  2253. "bonus_health" "250"
  2254. }
  2255. }
  2256. }
  2257.  
  2258.  
  2259. //=================================================================================================================
  2260. // Recipe: Power Treads
  2261. //=================================================================================================================
  2262. "item_recipe_power_treads"
  2263. {
  2264. // General
  2265. //-------------------------------------------------------------------------------------------------------------
  2266. "ID" "62" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2267. "AbilityName" "item_recipe_power_treads"
  2268.  
  2269. // Item Info
  2270. //-------------------------------------------------------------------------------------------------------------
  2271. "ItemCost" "0"
  2272. "ItemShopTags" ""
  2273.  
  2274. // Recipe
  2275. //-------------------------------------------------------------------------------------------------------------
  2276. "ItemRecipe" "1"
  2277. "ItemResult" "item_power_treads"
  2278. "ItemRequirements"
  2279. {
  2280. "01" "item_gloves;item_boots;item_belt_of_strength"
  2281. "02" "item_gloves;item_boots;item_robe"
  2282. "03" "item_gloves;item_boots;item_boots_of_elves"
  2283. }
  2284. }
  2285.  
  2286. //=================================================================================================================
  2287. // Power Treads
  2288. //=================================================================================================================
  2289. "item_power_treads"
  2290. {
  2291. // General
  2292. //-------------------------------------------------------------------------------------------------------------
  2293. "ID" "63" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2294. "AbilityName" "item_power_treads"
  2295. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  2296.  
  2297. // Item Info
  2298. //-------------------------------------------------------------------------------------------------------------
  2299. "ItemCost" "1450"
  2300. "ItemShopTags" "attack_speed;move_speed;int;agi;str"
  2301. "ItemQuality" "common"
  2302. "ItemAliases" "steamboots"
  2303.  
  2304. // Special
  2305. //-------------------------------------------------------------------------------------------------------------
  2306. "AbilitySpecial"
  2307. {
  2308. "01"
  2309. {
  2310. "var_type" "FIELD_INTEGER"
  2311. "bonus_movement_speed" "60"
  2312. }
  2313. "02"
  2314. {
  2315. "var_type" "FIELD_INTEGER"
  2316. "bonus_stat" "8"
  2317. }
  2318. "03"
  2319. {
  2320. "var_type" "FIELD_INTEGER"
  2321. "bonus_attack_speed" "25"
  2322. }
  2323. }
  2324. }
  2325.  
  2326. //=================================================================================================================
  2327. // Recipe: Hand of Midas
  2328. //=================================================================================================================
  2329. "item_recipe_hand_of_midas"
  2330. {
  2331. // General
  2332. //-------------------------------------------------------------------------------------------------------------
  2333. "ID" "64" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2334. "AbilityName" "item_recipe_hand_of_midas"
  2335.  
  2336. // Item Info
  2337. //-------------------------------------------------------------------------------------------------------------
  2338. "ItemCost" "1400"
  2339. "ItemShopTags" ""
  2340. "ItemAliases" "hom"
  2341.  
  2342. // Recipe
  2343. //-------------------------------------------------------------------------------------------------------------
  2344. "ItemRecipe" "1"
  2345. "ItemResult" "item_hand_of_midas"
  2346. "ItemRequirements"
  2347. {
  2348. "01" "item_gloves"
  2349. }
  2350. }
  2351.  
  2352. //=================================================================================================================
  2353. // Hand of Midas
  2354. //=================================================================================================================
  2355. "item_hand_of_midas"
  2356. {
  2357. // General
  2358. //-------------------------------------------------------------------------------------------------------------
  2359. "ID" "65" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2360. "AbilityName" "item_hand_of_midas"
  2361. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  2362. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  2363. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP"
  2364. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS | DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES"
  2365.  
  2366. // Stats
  2367. //-------------------------------------------------------------------------------------------------------------
  2368. "AbilityCastRange" "600"
  2369. "AbilityCastPoint" "0.0"
  2370. "AbilityCooldown" "100.0"
  2371.  
  2372. // Item Info
  2373. //-------------------------------------------------------------------------------------------------------------
  2374. "AbilityManaCost" "0"
  2375. "ItemCost" "1900"
  2376. "ItemShopTags" "attack_speed;hard_to_tag"
  2377. "ItemQuality" "common"
  2378. "ItemAliases" "alchemist's bones"
  2379.  
  2380. // Special
  2381. //-------------------------------------------------------------------------------------------------------------
  2382. "AbilitySpecial"
  2383. {
  2384. "01"
  2385. {
  2386. "var_type" "FIELD_INTEGER"
  2387. "bonus_attack_speed" "30"
  2388. }
  2389. "02"
  2390. {
  2391. "var_type" "FIELD_FLOAT"
  2392. "xp_multiplier" "2.5"
  2393. }
  2394. "03"
  2395. {
  2396. "var_type" "FIELD_INTEGER"
  2397. "bonus_gold" "190"
  2398. }
  2399. }
  2400. }
  2401.  
  2402. //=================================================================================================================
  2403. // Recipe: Oblivion Staff
  2404. //=================================================================================================================
  2405. "item_recipe_oblivion_staff"
  2406. {
  2407. // General
  2408. //-------------------------------------------------------------------------------------------------------------
  2409. "ID" "66" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2410. "AbilityName" "item_recipe_oblivion_staff"
  2411.  
  2412. // Item Info
  2413. //-------------------------------------------------------------------------------------------------------------
  2414. "ItemCost" "0"
  2415. "ItemShopTags" ""
  2416.  
  2417. // Recipe
  2418. //-------------------------------------------------------------------------------------------------------------
  2419. "ItemRecipe" "1"
  2420. "ItemResult" "item_oblivion_staff"
  2421. "ItemRequirements"
  2422. {
  2423. "01" "item_quarterstaff;item_sobi_mask;item_robe"
  2424. }
  2425. }
  2426.  
  2427. //=================================================================================================================
  2428. // Oblivion Staff
  2429. //=================================================================================================================
  2430. "item_oblivion_staff"
  2431. {
  2432. // General
  2433. //-------------------------------------------------------------------------------------------------------------
  2434. "ID" "67" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2435. "AbilityName" "item_oblivion_staff"
  2436. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2437.  
  2438. // Item Info
  2439. //-------------------------------------------------------------------------------------------------------------
  2440. "ItemCost" "1675"
  2441. "ItemShopTags" "damage;int;attack_speed;regen_mana"
  2442. "ItemQuality" "common"
  2443. "ItemAliases" "great arcana"
  2444.  
  2445. // Special
  2446. //-------------------------------------------------------------------------------------------------------------
  2447. "AbilitySpecial"
  2448. {
  2449. "01"
  2450. {
  2451. "var_type" "FIELD_INTEGER"
  2452. "bonus_intellect" "6"
  2453. }
  2454. "02"
  2455. {
  2456. "var_type" "FIELD_INTEGER"
  2457. "bonus_attack_speed" "10"
  2458. }
  2459. "03"
  2460. {
  2461. "var_type" "FIELD_INTEGER"
  2462. "bonus_damage" "15"
  2463. }
  2464. "04"
  2465. {
  2466. "var_type" "FIELD_INTEGER"
  2467. "bonus_mana_regen" "75"
  2468. }
  2469. }
  2470. }
  2471.  
  2472. //=================================================================================================================
  2473. // Recipe: Perseverence
  2474. //=================================================================================================================
  2475. "item_recipe_pers"
  2476. {
  2477. // General
  2478. //-------------------------------------------------------------------------------------------------------------
  2479. "ID" "68" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2480. "AbilityName" "item_recipe_pers"
  2481.  
  2482. // Item Info
  2483. //-------------------------------------------------------------------------------------------------------------
  2484. "ItemCost" "0"
  2485. "ItemShopTags" ""
  2486.  
  2487. // Recipe
  2488. //-------------------------------------------------------------------------------------------------------------
  2489. "ItemRecipe" "1"
  2490. "ItemResult" "item_pers"
  2491. "ItemRequirements"
  2492. {
  2493. "01" "item_ring_of_health;item_void_stone"
  2494. }
  2495. }
  2496.  
  2497. //=================================================================================================================
  2498. // Perseverence
  2499. //=================================================================================================================
  2500. "item_pers"
  2501. {
  2502. // General
  2503. //-------------------------------------------------------------------------------------------------------------
  2504. "ID" "69" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2505. "AbilityName" "item_pers"
  2506. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2507.  
  2508. // Item Info
  2509. //-------------------------------------------------------------------------------------------------------------
  2510. "ItemCost" "1750"
  2511. "ItemShopTags" "damage;regen_health;regen_mana"
  2512. "ItemQuality" "common"
  2513. "ItemDisassemblable" "1"
  2514. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2515. "ItemAliases" "sustainer"
  2516.  
  2517. // Special
  2518. //-------------------------------------------------------------------------------------------------------------
  2519. "AbilitySpecial"
  2520. {
  2521. "01"
  2522. {
  2523. "var_type" "FIELD_INTEGER"
  2524. "bonus_damage" "10"
  2525. }
  2526. "02"
  2527. {
  2528. "var_type" "FIELD_INTEGER"
  2529. "bonus_health_regen" "5"
  2530. }
  2531. "03"
  2532. {
  2533. "var_type" "FIELD_INTEGER"
  2534. "bonus_mana_regen" "125"
  2535. }
  2536. }
  2537. }
  2538.  
  2539. //=================================================================================================================
  2540. // Recipe: Poor Man's Shield
  2541. //=================================================================================================================
  2542. "item_recipe_poor_mans_shield"
  2543. {
  2544. // General
  2545. //-------------------------------------------------------------------------------------------------------------
  2546. "ID" "70" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2547. "AbilityName" "item_recipe_poor_mans_shield"
  2548.  
  2549. // Item Info
  2550. //-------------------------------------------------------------------------------------------------------------
  2551. "ItemCost" "0"
  2552. "ItemShopTags" ""
  2553.  
  2554. // Recipe
  2555. //-------------------------------------------------------------------------------------------------------------
  2556. "ItemRecipe" "1"
  2557. "ItemResult" "item_poor_mans_shield"
  2558. "ItemRequirements"
  2559. {
  2560. "01" "item_slippers;item_slippers;item_stout_shield"
  2561. }
  2562. }
  2563.  
  2564. //=================================================================================================================
  2565. // Poor Man's Shield
  2566. //=================================================================================================================
  2567. "item_poor_mans_shield"
  2568. {
  2569. // General
  2570. //-------------------------------------------------------------------------------------------------------------
  2571. "ID" "71" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2572. "AbilityName" "item_poor_mans_shield"
  2573. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2574.  
  2575. // Item Info
  2576. //-------------------------------------------------------------------------------------------------------------
  2577. "ItemCost" "550"
  2578. "ItemShopTags" "agi;block"
  2579. "ItemQuality" "common"
  2580. "ItemAliases" "pms;iron shield"
  2581.  
  2582. // Special
  2583. //-------------------------------------------------------------------------------------------------------------
  2584. "AbilitySpecial"
  2585. {
  2586. "01"
  2587. {
  2588. "var_type" "FIELD_INTEGER"
  2589. "damage_block_melee" "20"
  2590. }
  2591. "02"
  2592. {
  2593. "var_type" "FIELD_INTEGER"
  2594. "damage_block_ranged" "10"
  2595. }
  2596. "03"
  2597. {
  2598. "var_type" "FIELD_INTEGER"
  2599. "block_chance" "60"
  2600. }
  2601. "04"
  2602. {
  2603. "var_type" "FIELD_INTEGER"
  2604. "block_chance_hero" "100"
  2605. }
  2606. "05"
  2607. {
  2608. "var_type" "FIELD_INTEGER"
  2609. "bonus_agility" "6"
  2610. }
  2611. }
  2612. }
  2613.  
  2614. //=================================================================================================================
  2615. // Recipe: Bracer
  2616. //=================================================================================================================
  2617. "item_recipe_bracer"
  2618. {
  2619. // General
  2620. //-------------------------------------------------------------------------------------------------------------
  2621. "ID" "72" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2622. "AbilityName" "item_recipe_bracer"
  2623.  
  2624. // Item Info
  2625. //-------------------------------------------------------------------------------------------------------------
  2626. "ItemCost" "190"
  2627. "ItemShopTags" ""
  2628.  
  2629. // Recipe
  2630. //-------------------------------------------------------------------------------------------------------------
  2631. "ItemRecipe" "1"
  2632. "ItemResult" "item_bracer"
  2633. "ItemRequirements"
  2634. {
  2635. "01" "item_circlet;item_gauntlets"
  2636. }
  2637. }
  2638.  
  2639. //=================================================================================================================
  2640. // Bracer
  2641. //=================================================================================================================
  2642. "item_bracer"
  2643. {
  2644. // General
  2645. //-------------------------------------------------------------------------------------------------------------
  2646. "ID" "73" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2647. "AbilityName" "item_bracer"
  2648. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2649.  
  2650. // Item Info
  2651. //-------------------------------------------------------------------------------------------------------------
  2652. "ItemCost" "525"
  2653. "ItemShopTags" "damage;int;agi;str"
  2654. "ItemQuality" "common"
  2655. "ItemAliases" "fortified"
  2656.  
  2657. // Special
  2658. //-------------------------------------------------------------------------------------------------------------
  2659. "AbilitySpecial"
  2660. {
  2661. "01"
  2662. {
  2663. "var_type" "FIELD_INTEGER"
  2664. "bonus_strength" "6"
  2665. }
  2666. "02"
  2667. {
  2668. "var_type" "FIELD_INTEGER"
  2669. "bonus_agility" "3"
  2670. }
  2671. "03"
  2672. {
  2673. "var_type" "FIELD_INTEGER"
  2674. "bonus_intellect" "3"
  2675. }
  2676. "04"
  2677. {
  2678. "var_type" "FIELD_INTEGER"
  2679. "bonus_damage" "3"
  2680. }
  2681. }
  2682. }
  2683.  
  2684. //=================================================================================================================
  2685. // Recipe: Wraith Band
  2686. //=================================================================================================================
  2687. "item_recipe_wraith_band"
  2688. {
  2689. // General
  2690. //-------------------------------------------------------------------------------------------------------------
  2691. "ID" "74" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2692. "AbilityName" "item_recipe_wraith_band"
  2693.  
  2694. // Item Info
  2695. //-------------------------------------------------------------------------------------------------------------
  2696. "ItemCost" "150"
  2697. "ItemShopTags" ""
  2698.  
  2699. // Recipe
  2700. //-------------------------------------------------------------------------------------------------------------
  2701. "ItemRecipe" "1"
  2702. "ItemResult" "item_wraith_band"
  2703. "ItemRequirements"
  2704. {
  2705. "01" "item_circlet;item_slippers"
  2706. }
  2707. }
  2708.  
  2709. //=================================================================================================================
  2710. // Wraith Band
  2711. //=================================================================================================================
  2712. "item_wraith_band"
  2713. {
  2714. // General
  2715. //-------------------------------------------------------------------------------------------------------------
  2716. "ID" "75" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2717. "AbilityName" "item_wraith_band"
  2718. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2719.  
  2720. // Item Info
  2721. //-------------------------------------------------------------------------------------------------------------
  2722. "ItemCost" "485"
  2723. "ItemShopTags" "damage;int;agi;str"
  2724. "ItemQuality" "common"
  2725. "ItemAliases" "soulscream ring"
  2726.  
  2727. // Special
  2728. //-------------------------------------------------------------------------------------------------------------
  2729. "AbilitySpecial"
  2730. {
  2731. "01"
  2732. {
  2733. "var_type" "FIELD_INTEGER"
  2734. "bonus_strength" "3"
  2735. }
  2736. "02"
  2737. {
  2738. "var_type" "FIELD_INTEGER"
  2739. "bonus_agility" "6"
  2740. }
  2741. "03"
  2742. {
  2743. "var_type" "FIELD_INTEGER"
  2744. "bonus_intellect" "3"
  2745. }
  2746. "04"
  2747. {
  2748. "var_type" "FIELD_INTEGER"
  2749. "bonus_damage" "3"
  2750. }
  2751. }
  2752. }
  2753.  
  2754. //=================================================================================================================
  2755. // Recipe: Null Talisman
  2756. //=================================================================================================================
  2757. "item_recipe_null_talisman"
  2758. {
  2759. // General
  2760. //-------------------------------------------------------------------------------------------------------------
  2761. "ID" "76" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2762. "AbilityName" "item_recipe_null_talisman"
  2763.  
  2764. // Item Info
  2765. //-------------------------------------------------------------------------------------------------------------
  2766. "ItemCost" "170"
  2767. "ItemShopTags" ""
  2768.  
  2769. // Recipe
  2770. //-------------------------------------------------------------------------------------------------------------
  2771. "ItemRecipe" "1"
  2772. "ItemResult" "item_null_talisman"
  2773. "ItemRequirements"
  2774. {
  2775. "01" "item_circlet;item_mantle"
  2776. }
  2777. }
  2778.  
  2779. //=================================================================================================================
  2780. // Null Talisman
  2781. //=================================================================================================================
  2782. "item_null_talisman"
  2783. {
  2784. // General
  2785. //-------------------------------------------------------------------------------------------------------------
  2786. "ID" "77" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2787. "AbilityName" "item_null_talisman"
  2788. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2789.  
  2790. // Item Info
  2791. //-------------------------------------------------------------------------------------------------------------
  2792. "ItemCost" "505"
  2793. "ItemShopTags" "damage;int;agi;str"
  2794. "ItemQuality" "common"
  2795. "ItemAliases" "amulet of exile"
  2796.  
  2797. // Special
  2798. //-------------------------------------------------------------------------------------------------------------
  2799. "AbilitySpecial"
  2800. {
  2801. "01"
  2802. {
  2803. "var_type" "FIELD_INTEGER"
  2804. "bonus_strength" "3"
  2805. }
  2806. "02"
  2807. {
  2808. "var_type" "FIELD_INTEGER"
  2809. "bonus_agility" "3"
  2810. }
  2811. "03"
  2812. {
  2813. "var_type" "FIELD_INTEGER"
  2814. "bonus_intellect" "6"
  2815. }
  2816. "04"
  2817. {
  2818. "var_type" "FIELD_INTEGER"
  2819. "bonus_damage" "3"
  2820. }
  2821. }
  2822. }
  2823.  
  2824.  
  2825. //=================================================================================================================
  2826. // Recipe: Mekasmm
  2827. //=================================================================================================================
  2828. "item_recipe_mekansm"
  2829. {
  2830. // General
  2831. //-------------------------------------------------------------------------------------------------------------
  2832. "ID" "78" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2833. "AbilityName" "item_recipe_mekansm"
  2834.  
  2835. // Item Info
  2836. //-------------------------------------------------------------------------------------------------------------
  2837. "ItemCost" "900"
  2838. "ItemShopTags" ""
  2839.  
  2840. // Recipe
  2841. //-------------------------------------------------------------------------------------------------------------
  2842. "ItemRecipe" "1"
  2843. "ItemResult" "item_mekansm"
  2844. "ItemRequirements"
  2845. {
  2846. "01" "item_buckler;item_headdress"
  2847. }
  2848. }
  2849.  
  2850. //=================================================================================================================
  2851. // Mekansm
  2852. //=================================================================================================================
  2853. "item_mekansm"
  2854. {
  2855. // General
  2856. //-------------------------------------------------------------------------------------------------------------
  2857. "ID" "79" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2858. "AbilityName" "item_mekansm"
  2859. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  2860.  
  2861. // Stats
  2862. //-------------------------------------------------------------------------------------------------------------
  2863. "AbilityCooldown" "45.0"
  2864.  
  2865. // Item Info
  2866. //-------------------------------------------------------------------------------------------------------------
  2867. "AbilityManaCost" "150"
  2868. "ItemCost" "2306"
  2869. "ItemShopTags" "agi;int;str;armor;boost_health"
  2870. "ItemQuality" "rare"
  2871. "ItemAliases" "mechanism;astrolabe"
  2872.  
  2873. // Special
  2874. //-------------------------------------------------------------------------------------------------------------
  2875. "AbilitySpecial"
  2876. {
  2877. "01"
  2878. {
  2879. "var_type" "FIELD_INTEGER"
  2880. "bonus_all_stats" "5"
  2881. }
  2882. "02"
  2883. {
  2884. "var_type" "FIELD_INTEGER"
  2885. "bonus_armor" "5"
  2886. }
  2887. "03"
  2888. {
  2889. "var_type" "FIELD_INTEGER"
  2890. "aura_radius" "750"
  2891. }
  2892. "04"
  2893. {
  2894. "var_type" "FIELD_INTEGER"
  2895. "aura_health_regen" "4"
  2896. }
  2897. "05"
  2898. {
  2899. "var_type" "FIELD_INTEGER"
  2900. "heal_amount" "250"
  2901. }
  2902. "06"
  2903. {
  2904. "var_type" "FIELD_INTEGER"
  2905. "heal_radius" "750"
  2906. }
  2907. "07"
  2908. {
  2909. "var_type" "FIELD_INTEGER"
  2910. "heal_bonus_armor" "2"
  2911. }
  2912. "08"
  2913. {
  2914. "var_type" "FIELD_FLOAT"
  2915. "heal_armor_duration" "25.0"
  2916. }
  2917. }
  2918. }
  2919.  
  2920. //=================================================================================================================
  2921. // Recipe: Vladimir
  2922. //=================================================================================================================
  2923. "item_recipe_vladmir"
  2924. {
  2925. // General
  2926. //-------------------------------------------------------------------------------------------------------------
  2927. "ID" "80" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2928. "AbilityName" "item_recipe_vladmir"
  2929.  
  2930. // Item Info
  2931. //-------------------------------------------------------------------------------------------------------------
  2932. "ItemCost" "300"
  2933. "ItemShopTags" ""
  2934.  
  2935. // Recipe
  2936. //-------------------------------------------------------------------------------------------------------------
  2937. "ItemRecipe" "1"
  2938. "ItemResult" "item_vladmir"
  2939. "ItemRequirements"
  2940. {
  2941. "01" "item_ring_of_regen;item_ring_of_basilius;item_lifesteal"
  2942. }
  2943. }
  2944.  
  2945. //=================================================================================================================
  2946. // Vladimir
  2947. //=================================================================================================================
  2948. "item_vladmir"
  2949. {
  2950. // General
  2951. //-------------------------------------------------------------------------------------------------------------
  2952. "ID" "81" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2953. "AbilityName" "item_vladmir"
  2954. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2955.  
  2956. // Item Info
  2957. //-------------------------------------------------------------------------------------------------------------
  2958. "ItemCost" "2050"
  2959. "ItemShopTags" "lifesteal;damage;armor;regen_mana"
  2960. "ItemQuality" "rare"
  2961. "ItemAliases" "abyssal skull"
  2962.  
  2963. // Special
  2964. //-------------------------------------------------------------------------------------------------------------
  2965. "AbilitySpecial"
  2966. {
  2967. "01"
  2968. {
  2969. "var_type" "FIELD_INTEGER"
  2970. "aura_radius" "900"
  2971. }
  2972. "02"
  2973. {
  2974. "var_type" "FIELD_INTEGER"
  2975. "vampiric_aura" "16"
  2976. }
  2977. "04"
  2978. {
  2979. "var_type" "FIELD_INTEGER"
  2980. "damage_aura" "15"
  2981. }
  2982. "06"
  2983. {
  2984. "var_type" "FIELD_INTEGER"
  2985. "armor_aura" "5"
  2986. }
  2987. "08"
  2988. {
  2989. "var_type" "FIELD_FLOAT"
  2990. "mana_regen_aura" "0.8"
  2991. }
  2992. "09"
  2993. {
  2994. "var_type" "FIELD_INTEGER"
  2995. "hp_regen" "2"
  2996. }
  2997.  
  2998. }
  2999. }
  3000.  
  3001. //=================================================================================================================
  3002. // Flying Courier
  3003. //=================================================================================================================
  3004. "item_flying_courier"
  3005. {
  3006. // General
  3007. //-------------------------------------------------------------------------------------------------------------
  3008. "ID" "84" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3009. "AbilityName" "item_flying_courier"
  3010. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  3011. "ItemDeclaresPurchase" "1"
  3012.  
  3013. // Item Info
  3014. //-------------------------------------------------------------------------------------------------------------
  3015. "ItemCost" "200"
  3016. "ItemShopTags" "consumable"
  3017. "ItemQuality" "rare"
  3018. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  3019. "ItemAliases" "crow"
  3020. }
  3021.  
  3022. //=================================================================================================================
  3023. // Recipe: Buckler
  3024. //=================================================================================================================
  3025. "item_recipe_buckler"
  3026. {
  3027. // General
  3028. //-------------------------------------------------------------------------------------------------------------
  3029. "ID" "85" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3030. "AbilityName" "item_recipe_buckler"
  3031.  
  3032. // Item Info
  3033. //-------------------------------------------------------------------------------------------------------------
  3034. "ItemCost" "200"
  3035. "ItemShopTags" ""
  3036.  
  3037. // Recipe
  3038. //-------------------------------------------------------------------------------------------------------------
  3039. "ItemRecipe" "1"
  3040. "ItemResult" "item_buckler"
  3041. "ItemRequirements"
  3042. {
  3043. "01" "item_chainmail;item_branches"
  3044. }
  3045. }
  3046.  
  3047. //=================================================================================================================
  3048. // Buckler
  3049. //=================================================================================================================
  3050. "item_buckler"
  3051. {
  3052. // General
  3053. //-------------------------------------------------------------------------------------------------------------
  3054. "ID" "86" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3055. "AbilityName" "item_buckler"
  3056. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  3057.  
  3058. // Stats
  3059. //-------------------------------------------------------------------------------------------------------------
  3060. "AbilityCooldown" "25.0"
  3061.  
  3062. // Item Info
  3063. //-------------------------------------------------------------------------------------------------------------
  3064. "AbilityManaCost" "10"
  3065. "ItemCost" "803"
  3066. "ItemShopTags" "armor;boost_armor"
  3067. "ItemQuality" "rare"
  3068. "ItemAliases" "shield of the five"
  3069.  
  3070. // Special
  3071. //-------------------------------------------------------------------------------------------------------------
  3072. "AbilitySpecial"
  3073. {
  3074. "01"
  3075. {
  3076. "var_type" "FIELD_INTEGER"
  3077. "bonus_armor" "5"
  3078. }
  3079. "02"
  3080. {
  3081. "var_type" "FIELD_INTEGER"
  3082. "bonus_all_stats" "2"
  3083. }
  3084. "03"
  3085. {
  3086. "var_type" "FIELD_INTEGER"
  3087. "bonus_aoe_radius" "700"
  3088. }
  3089. "04"
  3090. {
  3091. "var_type" "FIELD_INTEGER"
  3092. "bonus_aoe_armor" "2"
  3093. }
  3094. "05"
  3095. {
  3096. "var_type" "FIELD_FLOAT"
  3097. "bonus_aoe_duration" "30.0"
  3098. }
  3099. "06"
  3100. {
  3101. "var_type" "FIELD_FLOAT"
  3102. "bonus_aoe_duration_hero" "25.0"
  3103. }
  3104. }
  3105. }
  3106.  
  3107. //=================================================================================================================
  3108. // Recipe: Ring of Basilius
  3109. //=================================================================================================================
  3110. "item_recipe_ring_of_basilius"
  3111. {
  3112. // General
  3113. //-------------------------------------------------------------------------------------------------------------
  3114. "ID" "87" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3115. "AbilityName" "item_recipe_ring_of_basilius"
  3116.  
  3117. // Item Info
  3118. //-------------------------------------------------------------------------------------------------------------
  3119. "ItemCost" "0"
  3120. "ItemShopTags" ""
  3121.  
  3122. // Sound
  3123. //-------------------------------------------------------------------------------------------------------------
  3124. "UIPickupSound" "Item.PickUpRingShop"
  3125. "UIDropSound" "Item.DropRingShop"
  3126. "WorldDropSound" "Item.DropRingWorld"
  3127.  
  3128. // Recipe
  3129. //-------------------------------------------------------------------------------------------------------------
  3130. "ItemRecipe" "1"
  3131. "ItemResult" "item_ring_of_basilius"
  3132. "ItemRequirements"
  3133. {
  3134. "01" "item_sobi_mask;item_ring_of_protection"
  3135. }
  3136. }
  3137.  
  3138. //=================================================================================================================
  3139. // Ring of Basilius
  3140. //=================================================================================================================
  3141. "item_ring_of_basilius"
  3142. {
  3143. // General
  3144. //-------------------------------------------------------------------------------------------------------------
  3145. "ID" "88" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3146. "AbilityName" "item_ring_of_basilius"
  3147. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  3148.  
  3149. // Item Info
  3150. //-------------------------------------------------------------------------------------------------------------
  3151. "ItemCost" "500"
  3152. "ItemShopTags" "damage;regen_mana;armor"
  3153. "ItemQuality" "rare"
  3154. "ItemDisassemblable" "1"
  3155. "ItemAliases" "rob;ring of the teacher;rott"
  3156.  
  3157. // Sound
  3158. //-------------------------------------------------------------------------------------------------------------
  3159. "UIPickupSound" "Item.PickUpRingShop"
  3160. "UIDropSound" "Item.DropRingShop"
  3161. "WorldDropSound" "Item.DropRingWorld"
  3162.  
  3163. // Special
  3164. //-------------------------------------------------------------------------------------------------------------
  3165. "AbilitySpecial"
  3166. {
  3167. "02"
  3168. {
  3169. "var_type" "FIELD_INTEGER"
  3170. "bonus_damage" "6"
  3171. }
  3172. "02"
  3173. {
  3174. "var_type" "FIELD_INTEGER"
  3175. "aura_radius" "900"
  3176. }
  3177. "03"
  3178. {
  3179. "var_type" "FIELD_FLOAT"
  3180. "aura_mana_regen" "0.65"
  3181. }
  3182. "04"
  3183. {
  3184. "var_type" "FIELD_INTEGER"
  3185. "aura_bonus_armor" "2"
  3186. }
  3187. "04"
  3188. {
  3189. "var_type" "FIELD_INTEGER"
  3190. "bonus_armor" "1"
  3191. }
  3192. }
  3193. }
  3194.  
  3195. //=================================================================================================================
  3196. // Recipe: Pipe
  3197. //=================================================================================================================
  3198. "item_recipe_pipe"
  3199. {
  3200. // General
  3201. //-------------------------------------------------------------------------------------------------------------
  3202. "ID" "89" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3203. "AbilityName" "item_recipe_pipe"
  3204.  
  3205. // Item Info
  3206. //-------------------------------------------------------------------------------------------------------------
  3207. "ItemCost" "900"
  3208. "ItemShopTags" ""
  3209.  
  3210. // Recipe
  3211. //-------------------------------------------------------------------------------------------------------------
  3212. "ItemRecipe" "1"
  3213. "ItemResult" "item_pipe"
  3214. "ItemRequirements"
  3215. {
  3216. "01" "item_hood_of_defiance;item_headdress"
  3217. }
  3218. }
  3219.  
  3220. //=================================================================================================================
  3221. // Pipe
  3222. //=================================================================================================================
  3223. "item_pipe"
  3224. {
  3225. // General
  3226. //-------------------------------------------------------------------------------------------------------------
  3227. "ID" "90" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3228. "AbilityName" "item_pipe"
  3229. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  3230.  
  3231. // Stats
  3232. //-------------------------------------------------------------------------------------------------------------
  3233. "AbilityCooldown" "60.0"
  3234. "AbilityManaCost" "100"
  3235.  
  3236. // Item Info
  3237. //-------------------------------------------------------------------------------------------------------------
  3238. "ItemCost" "3628"
  3239. "ItemShopTags" "regen_health;boost_magic_resist"
  3240. "ItemQuality" "rare"
  3241. "ItemAliases" "khadgar's pipe of insight;barrier idol"
  3242.  
  3243. // Special
  3244. //-------------------------------------------------------------------------------------------------------------
  3245. "AbilitySpecial"
  3246. {
  3247. "01"
  3248. {
  3249. "var_type" "FIELD_INTEGER"
  3250. "health_regen" "11"
  3251. }
  3252. "02"
  3253. {
  3254. "var_type" "FIELD_INTEGER"
  3255. "magic_resistance" "130"
  3256. }
  3257. "03"
  3258. {
  3259. "var_type" "FIELD_INTEGER"
  3260. "barrier_radius" "500"
  3261. }
  3262. "04"
  3263. {
  3264. "var_type" "FIELD_INTEGER"
  3265. "barrier_block" "400"
  3266. }
  3267. "05"
  3268. {
  3269. "var_type" "FIELD_FLOAT"
  3270. "barrier_duration" "10.0"
  3271. }
  3272. "06"
  3273. {
  3274. "var_type" "FIELD_FLOAT"
  3275. "barrier_debuff_duration" "50.0"
  3276. }
  3277. "07"
  3278. {
  3279. "var_type" "FIELD_INTEGER"
  3280. "tooltip_resist" "30"
  3281. }
  3282. }
  3283. }
  3284.  
  3285. //=================================================================================================================
  3286. // Recipe: Urn of Shadows
  3287. //=================================================================================================================
  3288. "item_recipe_urn_of_shadows"
  3289. {
  3290. // General
  3291. //-------------------------------------------------------------------------------------------------------------
  3292. "ID" "91" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3293. "AbilityName" "item_recipe_urn_of_shadows"
  3294.  
  3295. // Item Info
  3296. //-------------------------------------------------------------------------------------------------------------
  3297. "ItemCost" "250"
  3298. "ItemShopTags" ""
  3299. "ItemDeclaresPurchase" "1"
  3300.  
  3301. // Recipe
  3302. //-------------------------------------------------------------------------------------------------------------
  3303. "ItemRecipe" "1"
  3304. "ItemResult" "item_urn_of_shadows"
  3305. "ItemRequirements"
  3306. {
  3307. "01" "item_sobi_mask;item_gauntlets;item_gauntlets"
  3308. }
  3309. }
  3310.  
  3311. //=================================================================================================================
  3312. // Urn of Shadows
  3313. //=================================================================================================================
  3314. "item_urn_of_shadows"
  3315. {
  3316. // General
  3317. //-------------------------------------------------------------------------------------------------------------
  3318. "ID" "92" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3319. "AbilityName" "item_urn_of_shadows"
  3320. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3321. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  3322. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  3323.  
  3324. // Stats
  3325. //-------------------------------------------------------------------------------------------------------------
  3326. "AbilityCastRange" "950"
  3327. "AbilityCastPoint" "0.0"
  3328.  
  3329. // Stats
  3330. //-------------------------------------------------------------------------------------------------------------
  3331. "AbilityCooldown" "10.0"
  3332.  
  3333. // Items
  3334. //-------------------------------------------------------------------------------------------------------------
  3335. "ItemRequiresCharges" "1"
  3336. "ItemDisplayCharges" "1"
  3337. "ItemStackable" "0"
  3338. "ItemPermanent" "1"
  3339.  
  3340. // Item Info
  3341. //-------------------------------------------------------------------------------------------------------------
  3342. "ItemCost" "875"
  3343. "ItemShopTags" "regen_mana;str;boost_health"
  3344. "ItemQuality" "rare"
  3345.  
  3346. // Special
  3347. //-------------------------------------------------------------------------------------------------------------
  3348. "AbilitySpecial"
  3349. {
  3350. "01"
  3351. {
  3352. "var_type" "FIELD_INTEGER"
  3353. "mana_regen" "50"
  3354. }
  3355. "02"
  3356. {
  3357. "var_type" "FIELD_INTEGER"
  3358. "bonus_strength" "6"
  3359. }
  3360. "03"
  3361. {
  3362. "var_type" "FIELD_INTEGER"
  3363. "soul_radius" "1400"
  3364. }
  3365. "04"
  3366. {
  3367. "var_type" "FIELD_INTEGER"
  3368. "soul_initial_charge" "2"
  3369. }
  3370. "05"
  3371. {
  3372. "var_type" "FIELD_INTEGER"
  3373. "soul_additional_charges" "1"
  3374. }
  3375. "06"
  3376. {
  3377. "var_type" "FIELD_INTEGER"
  3378. "soul_heal_amount" "400"
  3379. }
  3380. "07"
  3381. {
  3382. "var_type" "FIELD_FLOAT"
  3383. "soul_heal_duration" "8.0"
  3384. }
  3385. "08"
  3386. {
  3387. "var_type" "FIELD_INTEGER"
  3388. "soul_damage_amount" "150"
  3389. }
  3390. "09"
  3391. {
  3392. "var_type" "FIELD_FLOAT"
  3393. "soul_damage_duration" "8.0"
  3394. }
  3395. "10"
  3396. {
  3397. "var_type" "FIELD_FLOAT"
  3398. "soul_heal_interval" "0.25"
  3399. }
  3400. }
  3401. }
  3402.  
  3403. //=================================================================================================================
  3404. // Recipe: Headdress
  3405. //=================================================================================================================
  3406. "item_recipe_headdress"
  3407. {
  3408. // General
  3409. //-------------------------------------------------------------------------------------------------------------
  3410. "ID" "93" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3411. "AbilityName" "item_recipe_headdress"
  3412.  
  3413. // Item Info
  3414. //-------------------------------------------------------------------------------------------------------------
  3415. "ItemCost" "200"
  3416. "ItemShopTags" ""
  3417.  
  3418. // Recipe
  3419. //-------------------------------------------------------------------------------------------------------------
  3420. "ItemRecipe" "1"
  3421. "ItemResult" "item_headdress"
  3422. "ItemRequirements"
  3423. {
  3424. "01" "item_ring_of_regen;item_branches"
  3425. }
  3426. }
  3427.  
  3428. //=================================================================================================================
  3429. // Headdress
  3430. //=================================================================================================================
  3431. "item_headdress"
  3432. {
  3433. // General
  3434. //-------------------------------------------------------------------------------------------------------------
  3435. "ID" "94" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3436. "AbilityName" "item_headdress"
  3437. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  3438.  
  3439. // Item Info
  3440. //-------------------------------------------------------------------------------------------------------------
  3441. "ItemCost" "603"
  3442. "ItemShopTags" "str;int;agi;regen_health"
  3443. "ItemQuality" "rare"
  3444. "ItemAliases" "refreshing ornament"
  3445.  
  3446. // Special
  3447. //-------------------------------------------------------------------------------------------------------------
  3448. "AbilitySpecial"
  3449. {
  3450. "01"
  3451. {
  3452. "var_type" "FIELD_INTEGER"
  3453. "bonus_all_stats" "2"
  3454. }
  3455. "02"
  3456. {
  3457. "var_type" "FIELD_INTEGER"
  3458. "aura_radius" "500"
  3459. }
  3460. "03"
  3461. {
  3462. "var_type" "FIELD_INTEGER"
  3463. "aura_health_regen" "3"
  3464. }
  3465. }
  3466. }
  3467.  
  3468. //=================================================================================================================
  3469. // Recipe: Sheepstick
  3470. //=================================================================================================================
  3471. "item_recipe_sheepstick"
  3472. {
  3473. // General
  3474. //-------------------------------------------------------------------------------------------------------------
  3475. "ID" "95" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3476. "AbilityName" "item_recipe_sheepstick"
  3477.  
  3478. // Item Info
  3479. //-------------------------------------------------------------------------------------------------------------
  3480. "ItemCost" "0"
  3481. "ItemShopTags" ""
  3482.  
  3483. // Recipe
  3484. //-------------------------------------------------------------------------------------------------------------
  3485. "ItemRecipe" "1"
  3486. "ItemResult" "item_sheepstick"
  3487. "ItemRequirements"
  3488. {
  3489. "01" "item_mystic_staff;item_ultimate_orb;item_void_stone"
  3490. }
  3491. }
  3492.  
  3493. //=================================================================================================================
  3494. // Sheepstick
  3495. //=================================================================================================================
  3496. "item_sheepstick"
  3497. {
  3498. // General
  3499. //-------------------------------------------------------------------------------------------------------------
  3500. "ID" "96" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3501. "AbilityName" "item_sheepstick"
  3502. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3503. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3504. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3505.  
  3506. // Stats
  3507. //-------------------------------------------------------------------------------------------------------------
  3508. "AbilityCastRange" "800"
  3509. "AbilityCastPoint" "0.0"
  3510.  
  3511. // Stats
  3512. //-------------------------------------------------------------------------------------------------------------
  3513. "AbilityCooldown" "35.0"
  3514.  
  3515. // Item Info
  3516. //-------------------------------------------------------------------------------------------------------------
  3517. "AbilityManaCost" "100"
  3518. "ItemCost" "5675"
  3519. "ItemShopTags" "int;regen_mana;agi;hard_to_tag"
  3520. "ItemQuality" "rare"
  3521. "ItemAliases" "hex;sheepstick;vyse;totem of kuldra;kuldra's"
  3522.  
  3523. // Special
  3524. //-------------------------------------------------------------------------------------------------------------
  3525. "AbilitySpecial"
  3526. {
  3527. "01"
  3528. {
  3529. "var_type" "FIELD_INTEGER"
  3530. "bonus_strength" "10"
  3531. }
  3532. "02"
  3533. {
  3534. "var_type" "FIELD_INTEGER"
  3535. "bonus_agility" "10"
  3536. }
  3537. "03"
  3538. {
  3539. "var_type" "FIELD_INTEGER"
  3540. "bonus_intellect" "35"
  3541. }
  3542. "04"
  3543. {
  3544. "var_type" "FIELD_INTEGER"
  3545. "bonus_mana_regen" "150"
  3546. }
  3547. "05"
  3548. {
  3549. "var_type" "FIELD_FLOAT"
  3550. "sheep_duration" "3.5"
  3551. }
  3552. "06"
  3553. {
  3554. "var_type" "FIELD_FLOAT"
  3555. "sheep_movement_speed" "100"
  3556. }
  3557. }
  3558. }
  3559.  
  3560. //=================================================================================================================
  3561. // Recipe: Orchid
  3562. //=================================================================================================================
  3563. "item_recipe_orchid"
  3564. {
  3565. // General
  3566. //-------------------------------------------------------------------------------------------------------------
  3567. "ID" "97" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3568. "AbilityName" "item_recipe_orchid"
  3569.  
  3570. // Item Info
  3571. //-------------------------------------------------------------------------------------------------------------
  3572. "ItemCost" "775"
  3573. "ItemShopTags" ""
  3574.  
  3575. // Recipe
  3576. //-------------------------------------------------------------------------------------------------------------
  3577. "ItemRecipe" "1"
  3578. "ItemResult" "item_orchid"
  3579. "ItemRequirements"
  3580. {
  3581. "01" "item_oblivion_staff;item_oblivion_staff"
  3582. }
  3583. }
  3584.  
  3585. //=================================================================================================================
  3586. // Orchid
  3587. //=================================================================================================================
  3588. "item_orchid"
  3589. {
  3590. // General
  3591. //-------------------------------------------------------------------------------------------------------------
  3592. "ID" "98" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3593. "AbilityName" "item_orchid"
  3594. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3595. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3596. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3597.  
  3598. // Stats
  3599. //-------------------------------------------------------------------------------------------------------------
  3600. "AbilityCastRange" "900"
  3601. "AbilityCastPoint" "0.0"
  3602. "AbilityCooldown" "18.0"
  3603. "ItemAliases" "malevolence;hellflower"
  3604.  
  3605. // Item Info
  3606. //-------------------------------------------------------------------------------------------------------------
  3607. "AbilityManaCost" "100"
  3608. "ItemCost" "5025"
  3609. "ItemShopTags" "int;attack_speed;damage;regen_mana;damage;hard_to_tag"
  3610. "ItemQuality" "rare"
  3611.  
  3612. // Special
  3613. //-------------------------------------------------------------------------------------------------------------
  3614. "AbilitySpecial"
  3615. {
  3616. "01"
  3617. {
  3618. "var_type" "FIELD_INTEGER"
  3619. "bonus_intellect" "25"
  3620. }
  3621. "02"
  3622. {
  3623. "var_type" "FIELD_INTEGER"
  3624. "bonus_attack_speed" "30"
  3625. }
  3626. "03"
  3627. {
  3628. "var_type" "FIELD_INTEGER"
  3629. "bonus_damage" "30"
  3630. }
  3631. "04"
  3632. {
  3633. "var_type" "FIELD_INTEGER"
  3634. "bonus_mana_regen" "150"
  3635. }
  3636. "05"
  3637. {
  3638. "var_type" "FIELD_FLOAT"
  3639. "silence_duration" "5"
  3640. }
  3641. "06"
  3642. {
  3643. "var_type" "FIELD_FLOAT"
  3644. "silence_damage_percent" "25"
  3645. }
  3646. }
  3647. }
  3648.  
  3649. //=================================================================================================================
  3650. // Recipe: Cyclone
  3651. //=================================================================================================================
  3652. "item_recipe_cyclone"
  3653. {
  3654. // General
  3655. //-------------------------------------------------------------------------------------------------------------
  3656. "ID" "99" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3657. "AbilityName" "item_recipe_cyclone"
  3658.  
  3659. // Item Info
  3660. //-------------------------------------------------------------------------------------------------------------
  3661. "ItemCost" "600"
  3662. "ItemShopTags" ""
  3663.  
  3664. // Recipe
  3665. //-------------------------------------------------------------------------------------------------------------
  3666. "ItemRecipe" "1"
  3667. "ItemResult" "item_cyclone"
  3668. "ItemRequirements"
  3669. {
  3670. "01" "item_staff_of_wizardry;item_sobi_mask;item_void_stone"
  3671. }
  3672. }
  3673.  
  3674. //=================================================================================================================
  3675. // Cyclone
  3676. //=================================================================================================================
  3677. "item_cyclone"
  3678. {
  3679. // General
  3680. //-------------------------------------------------------------------------------------------------------------
  3681. "ID" "100" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3682. "AbilityName" "item_cyclone"
  3683. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3684. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  3685. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM"
  3686.  
  3687. // Stats
  3688. //-------------------------------------------------------------------------------------------------------------
  3689. "AbilityCastRange" "700"
  3690. "AbilityCastPoint" "0.0"
  3691.  
  3692. // Stats
  3693. //-------------------------------------------------------------------------------------------------------------
  3694. "AbilityCooldown" "30.0"
  3695.  
  3696. // Item Info
  3697. //-------------------------------------------------------------------------------------------------------------
  3698. "AbilityManaCost" "75"
  3699. "ItemCost" "2800"
  3700. "ItemShopTags" "int;regen_mana;move_speed;hard_to_tag"
  3701. "ItemQuality" "rare"
  3702. "ItemAliases" "cyclone euls;eul's;stormspirit"
  3703.  
  3704. // Special
  3705. //-------------------------------------------------------------------------------------------------------------
  3706. "AbilitySpecial"
  3707. {
  3708. "01"
  3709. {
  3710. "var_type" "FIELD_INTEGER"
  3711. "bonus_intellect" "10"
  3712. }
  3713. "02"
  3714. {
  3715. "var_type" "FIELD_INTEGER"
  3716. "bonus_mana_regen" "150"
  3717. }
  3718. "03"
  3719. {
  3720. "var_type" "FIELD_INTEGER"
  3721. "bonus_movement_speed" "30"
  3722. }
  3723. "04"
  3724. {
  3725. "var_type" "FIELD_FLOAT"
  3726. "cyclone_duration" "2.5"
  3727. }
  3728. }
  3729. }
  3730.  
  3731. //=================================================================================================================
  3732. // Recipe: Force Staff
  3733. //=================================================================================================================
  3734. "item_recipe_force_staff"
  3735. {
  3736. // General
  3737. //-------------------------------------------------------------------------------------------------------------
  3738. "ID" "101" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3739. "AbilityName" "item_recipe_force_staff"
  3740.  
  3741. // Item Info
  3742. //-------------------------------------------------------------------------------------------------------------
  3743. "ItemCost" "300"
  3744. "ItemShopTags" ""
  3745.  
  3746. // Recipe
  3747. //-------------------------------------------------------------------------------------------------------------
  3748. "ItemRecipe" "1"
  3749. "ItemResult" "item_force_staff"
  3750. "ItemRequirements"
  3751. {
  3752. "01" "item_staff_of_wizardry;item_quarterstaff"
  3753. }
  3754. }
  3755.  
  3756. //=================================================================================================================
  3757. // Force Staff
  3758. //=================================================================================================================
  3759. "item_force_staff"
  3760. {
  3761. // General
  3762. //-------------------------------------------------------------------------------------------------------------
  3763. "ID" "102" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3764. "AbilityName" "item_force_staff"
  3765. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3766. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  3767. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_MECHANICAL"
  3768. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS | DOTA_UNIT_TARGET_FLAG_NOT_MAGIC_IMMUNE_ALLIES"
  3769.  
  3770. // Stats
  3771. //-------------------------------------------------------------------------------------------------------------
  3772. "AbilityCastRange" "600"
  3773. "AbilityCastPoint" "0.0"
  3774. "AbilityCooldown" "20.0"
  3775.  
  3776. // Item Info
  3777. //-------------------------------------------------------------------------------------------------------------
  3778. "AbilityManaCost" "25"
  3779. "ItemCost" "2200"
  3780. "ItemShopTags" "int;damage;attack_speed;hard_to_tag"
  3781. "ItemQuality" "rare"
  3782. "ItemAliases" "fs;push stick;tablet of command"
  3783.  
  3784. // Special
  3785. //-------------------------------------------------------------------------------------------------------------
  3786. "AbilitySpecial"
  3787. {
  3788. "01"
  3789. {
  3790. "var_type" "FIELD_INTEGER"
  3791. "bonus_intellect" "10"
  3792. }
  3793. "02"
  3794. {
  3795. "var_type" "FIELD_INTEGER"
  3796. "bonus_damage" "10"
  3797. }
  3798. "03"
  3799. {
  3800. "var_type" "FIELD_INTEGER"
  3801. "bonus_attack_speed" "10"
  3802. }
  3803. "04"
  3804. {
  3805. "var_type" "FIELD_INTEGER"
  3806. "push_length" "600"
  3807. }
  3808. }
  3809. }
  3810.  
  3811. //=================================================================================================================
  3812. // Recipe: Dagon
  3813. //=================================================================================================================
  3814. "item_recipe_dagon"
  3815. {
  3816. // General
  3817. //-------------------------------------------------------------------------------------------------------------
  3818. "ID" "103" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3819. "AbilityName" "item_recipe_dagon"
  3820.  
  3821. // Item Info
  3822. //-------------------------------------------------------------------------------------------------------------
  3823. "ItemCost" "1300"
  3824. "ItemShopTags" ""
  3825.  
  3826. // Recipe
  3827. //-------------------------------------------------------------------------------------------------------------
  3828. "ItemRecipe" "1"
  3829. "ItemResult" "item_dagon"
  3830. "ItemRequirements"
  3831. {
  3832. "01" "item_staff_of_wizardry;item_null_talisman"
  3833. }
  3834. }
  3835.  
  3836. "item_recipe_dagon_2"
  3837. {
  3838. // General
  3839. //-------------------------------------------------------------------------------------------------------------
  3840. "ID" "197" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3841. "AbilityName" "item_recipe_dagon_2"
  3842.  
  3843. // Item Info
  3844. //-------------------------------------------------------------------------------------------------------------
  3845. "ItemCost" "0"
  3846. "ItemShopTags" ""
  3847.  
  3848. // Recipe
  3849. //-------------------------------------------------------------------------------------------------------------
  3850. "ItemRecipe" "1"
  3851. "ItemResult" "item_dagon_2"
  3852. "ItemRequirements"
  3853. {
  3854. "02" "item_dagon;item_recipe_dagon"
  3855. }
  3856. }
  3857.  
  3858. "item_recipe_dagon_3"
  3859. {
  3860. // General
  3861. //-------------------------------------------------------------------------------------------------------------
  3862. "ID" "198" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3863. "AbilityName" "item_recipe_dagon_3"
  3864.  
  3865. // Item Info
  3866. //-------------------------------------------------------------------------------------------------------------
  3867. "ItemCost" "0"
  3868. "ItemShopTags" ""
  3869.  
  3870. // Recipe
  3871. //-------------------------------------------------------------------------------------------------------------
  3872. "ItemRecipe" "1"
  3873. "ItemResult" "item_dagon_3"
  3874. "ItemRequirements"
  3875. {
  3876. "02" "item_dagon_2;item_recipe_dagon"
  3877. }
  3878. }
  3879.  
  3880. "item_recipe_dagon_4"
  3881. {
  3882. // General
  3883. //-------------------------------------------------------------------------------------------------------------
  3884. "ID" "199" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3885. "AbilityName" "item_recipe_dagon_4"
  3886.  
  3887. // Item Info
  3888. //-------------------------------------------------------------------------------------------------------------
  3889. "ItemCost" "0"
  3890. "ItemShopTags" ""
  3891.  
  3892. // Recipe
  3893. //-------------------------------------------------------------------------------------------------------------
  3894. "ItemRecipe" "1"
  3895. "ItemResult" "item_dagon_4"
  3896. "ItemRequirements"
  3897. {
  3898. "02" "item_dagon_3;item_recipe_dagon"
  3899. }
  3900. }
  3901.  
  3902. "item_recipe_dagon_5"
  3903. {
  3904. // General
  3905. //-------------------------------------------------------------------------------------------------------------
  3906. "ID" "200" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3907. "AbilityName" "item_recipe_dagon_5"
  3908.  
  3909. // Item Info
  3910. //-------------------------------------------------------------------------------------------------------------
  3911. "ItemCost" "0"
  3912. "ItemShopTags" ""
  3913.  
  3914. // Recipe
  3915. //-------------------------------------------------------------------------------------------------------------
  3916. "ItemRecipe" "1"
  3917. "ItemResult" "item_dagon_5"
  3918. "ItemRequirements"
  3919. {
  3920. "02" "item_dagon_4;item_recipe_dagon"
  3921. }
  3922. }
  3923.  
  3924. //=================================================================================================================
  3925. // Dagon
  3926. //=================================================================================================================
  3927. "item_dagon"
  3928. {
  3929. // General
  3930. //-------------------------------------------------------------------------------------------------------------
  3931. "ID" "104" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3932. "AbilityName" "item_dagon"
  3933. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3934. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3935. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3936.  
  3937. // Stats
  3938. //-------------------------------------------------------------------------------------------------------------
  3939. "AbilityCastRange" "600 650 700 750 800"
  3940. "AbilityCastPoint" "0.0"
  3941. "AbilityCooldown" "40.0 36.0 32.0 28.0 24.0"
  3942. "AbilitySharedCooldown" "dagon"
  3943. "MaxUpgradeLevel" "5"
  3944. "ItemBaseLevel" "1"
  3945.  
  3946. // Item Info
  3947. //-------------------------------------------------------------------------------------------------------------
  3948. "AbilityManaCost" "180 160 140 120 100"
  3949. "ItemCost" "2850"
  3950. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  3951. "ItemQuality" "rare"
  3952. "ItemAliases" "codex;zap"
  3953.  
  3954. // Special
  3955. //-------------------------------------------------------------------------------------------------------------
  3956. "AbilitySpecial"
  3957. {
  3958. "01"
  3959. {
  3960. "var_type" "FIELD_INTEGER"
  3961. "bonus_intellect" "13 15 17 19 21"
  3962. }
  3963. "02"
  3964. {
  3965. "var_type" "FIELD_INTEGER"
  3966. "bonus_all_stats" "3"
  3967. }
  3968. "03"
  3969. {
  3970. "var_type" "FIELD_INTEGER"
  3971. "bonus_damage" "9"
  3972. }
  3973. "04"
  3974. {
  3975. "var_type" "FIELD_INTEGER"
  3976. "damage" "400 500 600 700 800"
  3977. }
  3978. }
  3979. }
  3980.  
  3981. "item_dagon_2"
  3982. {
  3983. // General
  3984. //-------------------------------------------------------------------------------------------------------------
  3985. "ID" "201" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3986. "AbilityName" "item_dagon_2"
  3987. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3988. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3989. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3990.  
  3991. // Stats
  3992. //-------------------------------------------------------------------------------------------------------------
  3993. "AbilityCastRange" "600 650 700 750 800"
  3994. "AbilityCastPoint" "0.0"
  3995. "AbilityCooldown" "40.0 36.0 32.0 28.0 24.0"
  3996. "AbilitySharedCooldown" "dagon"
  3997. "MaxUpgradeLevel" "5"
  3998. "ItemBaseLevel" "2"
  3999.  
  4000. // Item Info
  4001. //-------------------------------------------------------------------------------------------------------------
  4002. "AbilityManaCost" "180 160 140 120 100"
  4003. "ItemCost" "2850"
  4004. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4005. "ItemQuality" "rare"
  4006. "ItemAliases" "codex;zap"
  4007.  
  4008. // Special
  4009. //-------------------------------------------------------------------------------------------------------------
  4010. "AbilitySpecial"
  4011. {
  4012. "01"
  4013. {
  4014. "var_type" "FIELD_INTEGER"
  4015. "bonus_intellect" "13 15 17 19 21"
  4016. }
  4017. "02"
  4018. {
  4019. "var_type" "FIELD_INTEGER"
  4020. "bonus_all_stats" "3"
  4021. }
  4022. "03"
  4023. {
  4024. "var_type" "FIELD_INTEGER"
  4025. "bonus_damage" "9"
  4026. }
  4027. "04"
  4028. {
  4029. "var_type" "FIELD_INTEGER"
  4030. "damage" "400 500 600 700 800"
  4031. }
  4032. }
  4033. }
  4034.  
  4035. "item_dagon_3"
  4036. {
  4037. // General
  4038. //-------------------------------------------------------------------------------------------------------------
  4039. "ID" "202" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4040. "AbilityName" "item_dagon_3"
  4041. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4042. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4043. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4044.  
  4045. // Stats
  4046. //-------------------------------------------------------------------------------------------------------------
  4047. "AbilityCastRange" "600 650 700 750 800"
  4048. "AbilityCastPoint" "0.0"
  4049. "AbilityCooldown" "40.0 36.0 32.0 28.0 24.0"
  4050. "AbilitySharedCooldown" "dagon"
  4051. "MaxUpgradeLevel" "5"
  4052. "ItemBaseLevel" "3"
  4053.  
  4054. // Item Info
  4055. //-------------------------------------------------------------------------------------------------------------
  4056. "AbilityManaCost" "180 160 140 120 100"
  4057. "ItemCost" "2850"
  4058. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4059. "ItemQuality" "rare"
  4060. "ItemAliases" "codex;zap"
  4061.  
  4062. // Special
  4063. //-------------------------------------------------------------------------------------------------------------
  4064. "AbilitySpecial"
  4065. {
  4066. "01"
  4067. {
  4068. "var_type" "FIELD_INTEGER"
  4069. "bonus_intellect" "13 15 17 19 21"
  4070. }
  4071. "02"
  4072. {
  4073. "var_type" "FIELD_INTEGER"
  4074. "bonus_all_stats" "3"
  4075. }
  4076. "03"
  4077. {
  4078. "var_type" "FIELD_INTEGER"
  4079. "bonus_damage" "9"
  4080. }
  4081. "04"
  4082. {
  4083. "var_type" "FIELD_INTEGER"
  4084. "damage" "400 500 600 700 800"
  4085. }
  4086. }
  4087. }
  4088.  
  4089. "item_dagon_4"
  4090. {
  4091. // General
  4092. //-------------------------------------------------------------------------------------------------------------
  4093. "ID" "203" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4094. "AbilityName" "item_dagon_4"
  4095. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4096. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4097. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4098.  
  4099. // Stats
  4100. //-------------------------------------------------------------------------------------------------------------
  4101. "AbilityCastRange" "600 650 700 750 800"
  4102. "AbilityCastPoint" "0.0"
  4103. "AbilityCooldown" "40.0 36.0 32.0 28.0 24.0"
  4104. "AbilitySharedCooldown" "dagon"
  4105. "MaxUpgradeLevel" "5"
  4106. "ItemBaseLevel" "4"
  4107.  
  4108. // Item Info
  4109. //-------------------------------------------------------------------------------------------------------------
  4110. "AbilityManaCost" "180 160 140 120 100"
  4111. "ItemCost" "2850"
  4112. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4113. "ItemQuality" "rare"
  4114. "ItemAliases" "codex;zap"
  4115.  
  4116. // Special
  4117. //-------------------------------------------------------------------------------------------------------------
  4118. "AbilitySpecial"
  4119. {
  4120. "01"
  4121. {
  4122. "var_type" "FIELD_INTEGER"
  4123. "bonus_intellect" "13 15 17 19 21"
  4124. }
  4125. "02"
  4126. {
  4127. "var_type" "FIELD_INTEGER"
  4128. "bonus_all_stats" "3"
  4129. }
  4130. "03"
  4131. {
  4132. "var_type" "FIELD_INTEGER"
  4133. "bonus_damage" "9"
  4134. }
  4135. "04"
  4136. {
  4137. "var_type" "FIELD_INTEGER"
  4138. "damage" "400 500 600 700 800"
  4139. }
  4140. }
  4141. }
  4142.  
  4143. "item_dagon_5"
  4144. {
  4145. // General
  4146. //-------------------------------------------------------------------------------------------------------------
  4147. "ID" "204" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4148. "AbilityName" "item_dagon_5"
  4149. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4150. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4151. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4152.  
  4153. // Stats
  4154. //-------------------------------------------------------------------------------------------------------------
  4155. "AbilityCastRange" "600 650 700 750 800"
  4156. "AbilityCastPoint" "0.0"
  4157. "AbilityCooldown" "40.0 36.0 32.0 28.0 24.0"
  4158. "AbilitySharedCooldown" "dagon"
  4159. "MaxUpgradeLevel" "5"
  4160. "ItemBaseLevel" "5"
  4161.  
  4162. // Item Info
  4163. //-------------------------------------------------------------------------------------------------------------
  4164. "AbilityManaCost" "180 160 140 120 100"
  4165. "ItemCost" "2850"
  4166. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4167. "ItemQuality" "rare"
  4168. "ItemAliases" "codex;zap"
  4169.  
  4170. // Special
  4171. //-------------------------------------------------------------------------------------------------------------
  4172. "AbilitySpecial"
  4173. {
  4174. "01"
  4175. {
  4176. "var_type" "FIELD_INTEGER"
  4177. "bonus_intellect" "13 15 17 19 21"
  4178. }
  4179. "02"
  4180. {
  4181. "var_type" "FIELD_INTEGER"
  4182. "bonus_all_stats" "3"
  4183. }
  4184. "03"
  4185. {
  4186. "var_type" "FIELD_INTEGER"
  4187. "bonus_damage" "9"
  4188. }
  4189. "04"
  4190. {
  4191. "var_type" "FIELD_INTEGER"
  4192. "damage" "400 500 600 700 800"
  4193. }
  4194. }
  4195. }
  4196.  
  4197. //=================================================================================================================
  4198. // Recipe: Necronomicon
  4199. //=================================================================================================================
  4200. "item_recipe_necronomicon"
  4201. {
  4202. // General
  4203. //-------------------------------------------------------------------------------------------------------------
  4204. "ID" "105" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4205. "AbilityName" "item_recipe_necronomicon"
  4206.  
  4207. // Item Info
  4208. //-------------------------------------------------------------------------------------------------------------
  4209. "ItemCost" "1250"
  4210. "ItemShopTags" ""
  4211.  
  4212. // Recipe
  4213. //-------------------------------------------------------------------------------------------------------------
  4214. "ItemRecipe" "1"
  4215. "ItemResult" "item_necronomicon"
  4216. "ItemRequirements"
  4217. {
  4218. "01" "item_staff_of_wizardry;item_belt_of_strength"
  4219. }
  4220. }
  4221.  
  4222. "item_recipe_necronomicon_2"
  4223. {
  4224. // General
  4225. //-------------------------------------------------------------------------------------------------------------
  4226. "ID" "191" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4227. "AbilityName" "item_recipe_necronomicon_2"
  4228.  
  4229. // Item Info
  4230. //-------------------------------------------------------------------------------------------------------------
  4231. "ItemCost" "0"
  4232. "ItemShopTags" ""
  4233. "ItemBaseLevel" "2"
  4234.  
  4235. // Recipe
  4236. //-------------------------------------------------------------------------------------------------------------
  4237. "ItemRecipe" "1"
  4238. "ItemResult" "item_necronomicon_2"
  4239. "ItemRequirements"
  4240. {
  4241. "01" "item_necronomicon;item_recipe_necronomicon"
  4242. }
  4243. }
  4244.  
  4245. "item_recipe_necronomicon_3"
  4246. {
  4247. // General
  4248. //-------------------------------------------------------------------------------------------------------------
  4249. "ID" "192" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4250. "AbilityName" "item_recipe_necronomicon_3"
  4251.  
  4252. // Item Info
  4253. //-------------------------------------------------------------------------------------------------------------
  4254. "ItemCost" "0"
  4255. "ItemShopTags" ""
  4256. "ItemBaseLevel" "3"
  4257.  
  4258. // Recipe
  4259. //-------------------------------------------------------------------------------------------------------------
  4260. "ItemRecipe" "1"
  4261. "ItemResult" "item_necronomicon_3"
  4262. "ItemRequirements"
  4263. {
  4264. "01" "item_necronomicon_2;item_recipe_necronomicon"
  4265. }
  4266. }
  4267.  
  4268. //=================================================================================================================
  4269. // Necronomicon
  4270. //=================================================================================================================
  4271. "item_necronomicon"
  4272. {
  4273. // General
  4274. //-------------------------------------------------------------------------------------------------------------
  4275. "ID" "106" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4276. "AbilityName" "item_necronomicon"
  4277. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4278.  
  4279. // Stats
  4280. //-------------------------------------------------------------------------------------------------------------
  4281. "AbilityCastPoint" "0.0"
  4282. "AbilityCooldown" "80.0"
  4283. "AbilitySharedCooldown" "necronomicon"
  4284.  
  4285. // Item Info
  4286. //-------------------------------------------------------------------------------------------------------------
  4287. "AbilityManaCost" "50"
  4288. "ItemCost" "2700"
  4289. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4290. "ItemQuality" "rare"
  4291. "ItemAliases" "puzzlebox"
  4292.  
  4293. "MaxUpgradeLevel" "3"
  4294. "ItemBaseLevel" "1"
  4295.  
  4296. // Special
  4297. //-------------------------------------------------------------------------------------------------------------
  4298. "AbilitySpecial"
  4299. {
  4300. "01"
  4301. {
  4302. "var_type" "FIELD_INTEGER"
  4303. "bonus_intellect" "15 21 24"
  4304. }
  4305. "02"
  4306. {
  4307. "var_type" "FIELD_INTEGER"
  4308. "bonus_strength" "8 12 16"
  4309. }
  4310. "03"
  4311. {
  4312. "var_type" "FIELD_FLOAT"
  4313. "summon_duration" "35.0"
  4314. }
  4315. "04"
  4316. {
  4317. "var_type" "FIELD_INTEGER"
  4318. "warrior_mana_feedback" "20 50 75"
  4319. }
  4320. "05"
  4321. {
  4322. "var_type" "FIELD_INTEGER"
  4323. "warrior_truesight" "1000"
  4324. }
  4325. "06"
  4326. {
  4327. "var_type" "FIELD_INTEGER"
  4328. "archer_mana_burn" "125 175 225"
  4329. }
  4330. "07"
  4331. {
  4332. "var_type" "FIELD_INTEGER"
  4333. "archer_attack_speed" "3 6 9"
  4334. }
  4335. "08"
  4336. {
  4337. "var_type" "FIELD_INTEGER"
  4338. "archer_attack_speed_radius" "400"
  4339. }
  4340. }
  4341. }
  4342.  
  4343. "item_necronomicon_2"
  4344. {
  4345. // General
  4346. //-------------------------------------------------------------------------------------------------------------
  4347. "ID" "193" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4348. "AbilityName" "item_necronomicon_2"
  4349. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4350.  
  4351. // Stats
  4352. //-------------------------------------------------------------------------------------------------------------
  4353. "AbilityCastPoint" "0.0"
  4354. "AbilityCooldown" "80.0"
  4355. "AbilitySharedCooldown" "necronomicon"
  4356.  
  4357. // Item Info
  4358. //-------------------------------------------------------------------------------------------------------------
  4359. "AbilityManaCost" "50"
  4360. "ItemCost" "2700"
  4361. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4362. "ItemQuality" "rare"
  4363. "ItemAliases" "puzzlebox"
  4364.  
  4365. "MaxUpgradeLevel" "3"
  4366. "ItemBaseLevel" "2"
  4367.  
  4368. // Special
  4369. //-------------------------------------------------------------------------------------------------------------
  4370. "AbilitySpecial"
  4371. {
  4372. "01"
  4373. {
  4374. "var_type" "FIELD_INTEGER"
  4375. "bonus_intellect" "15 21 24"
  4376. }
  4377. "02"
  4378. {
  4379. "var_type" "FIELD_INTEGER"
  4380. "bonus_strength" "8 12 16"
  4381. }
  4382. "03"
  4383. {
  4384. "var_type" "FIELD_FLOAT"
  4385. "summon_duration" "35.0"
  4386. }
  4387. "04"
  4388. {
  4389. "var_type" "FIELD_INTEGER"
  4390. "warrior_mana_feedback" "20 50 75"
  4391. }
  4392. "05"
  4393. {
  4394. "var_type" "FIELD_INTEGER"
  4395. "warrior_truesight" "1000"
  4396. }
  4397. "06"
  4398. {
  4399. "var_type" "FIELD_INTEGER"
  4400. "archer_mana_burn" "125 175 225"
  4401. }
  4402. "07"
  4403. {
  4404. "var_type" "FIELD_INTEGER"
  4405. "archer_attack_speed" "3 6 9"
  4406. }
  4407. "08"
  4408. {
  4409. "var_type" "FIELD_INTEGER"
  4410. "archer_attack_speed_radius" "400"
  4411. }
  4412. }
  4413. }
  4414.  
  4415. "item_necronomicon_3"
  4416. {
  4417. // General
  4418. //-------------------------------------------------------------------------------------------------------------
  4419. "ID" "194" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4420. "AbilityName" "item_necronomicon_3"
  4421. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4422.  
  4423. // Stats
  4424. //-------------------------------------------------------------------------------------------------------------
  4425. "AbilityCastPoint" "0.0"
  4426. "AbilityCooldown" "80.0"
  4427. "AbilitySharedCooldown" "necronomicon"
  4428.  
  4429. // Item Info
  4430. //-------------------------------------------------------------------------------------------------------------
  4431. "AbilityManaCost" "50"
  4432. "ItemCost" "2700"
  4433. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4434. "ItemQuality" "rare"
  4435. "ItemAliases" "puzzlebox;reveal;true sight"
  4436.  
  4437. "MaxUpgradeLevel" "3"
  4438. "ItemBaseLevel" "3"
  4439.  
  4440. // Special
  4441. //-------------------------------------------------------------------------------------------------------------
  4442. "AbilitySpecial"
  4443. {
  4444. "01"
  4445. {
  4446. "var_type" "FIELD_INTEGER"
  4447. "bonus_intellect" "15 21 24"
  4448. }
  4449. "02"
  4450. {
  4451. "var_type" "FIELD_INTEGER"
  4452. "bonus_strength" "8 12 16"
  4453. }
  4454. "03"
  4455. {
  4456. "var_type" "FIELD_FLOAT"
  4457. "summon_duration" "35.0"
  4458. }
  4459. "04"
  4460. {
  4461. "var_type" "FIELD_INTEGER"
  4462. "warrior_mana_feedback" "20 50 75"
  4463. }
  4464. "05"
  4465. {
  4466. "var_type" "FIELD_INTEGER"
  4467. "warrior_truesight" "1000"
  4468. }
  4469. "06"
  4470. {
  4471. "var_type" "FIELD_INTEGER"
  4472. "archer_mana_burn" "125 175 225"
  4473. }
  4474. "07"
  4475. {
  4476. "var_type" "FIELD_INTEGER"
  4477. "archer_attack_speed" "3 6 9"
  4478. }
  4479. "08"
  4480. {
  4481. "var_type" "FIELD_INTEGER"
  4482. "archer_attack_speed_radius" "400"
  4483. }
  4484. }
  4485. }
  4486.  
  4487. //=================================================================================================================
  4488. // Recipe: Scepter
  4489. //=================================================================================================================
  4490. "item_recipe_ultimate_scepter"
  4491. {
  4492. // General
  4493. //-------------------------------------------------------------------------------------------------------------
  4494. "ID" "107" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4495. "AbilityName" "item_recipe_ultimate_scepter"
  4496.  
  4497. // Item Info
  4498. //-------------------------------------------------------------------------------------------------------------
  4499. "ItemCost" "0"
  4500. "ItemShopTags" ""
  4501.  
  4502. // Recipe
  4503. //-------------------------------------------------------------------------------------------------------------
  4504. "ItemRecipe" "1"
  4505. "ItemResult" "item_ultimate_scepter"
  4506. "ItemRequirements"
  4507. {
  4508. "01" "item_point_booster;item_staff_of_wizardry;item_ogre_axe;item_blade_of_alacrity"
  4509. }
  4510. }
  4511.  
  4512. //=================================================================================================================
  4513. // Scepter
  4514. //=================================================================================================================
  4515. "item_ultimate_scepter"
  4516. {
  4517. // General
  4518. //-------------------------------------------------------------------------------------------------------------
  4519. "ID" "108" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4520. "AbilityName" "item_ultimate_scepter"
  4521. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4522.  
  4523. // Item Info
  4524. //-------------------------------------------------------------------------------------------------------------
  4525. "ItemCost" "4200"
  4526. "ItemShopTags" "int;str;agi;mana_pool;health_pool;hard_to_tag"
  4527. "ItemQuality" "rare"
  4528. "ItemAliases" "ultimate;staff of the master;sotm"
  4529.  
  4530. // Special
  4531. //-------------------------------------------------------------------------------------------------------------
  4532. "AbilitySpecial"
  4533. {
  4534. "01"
  4535. {
  4536. "var_type" "FIELD_INTEGER"
  4537. "bonus_all_stats" "10"
  4538. }
  4539. "02"
  4540. {
  4541. "var_type" "FIELD_INTEGER"
  4542. "bonus_health" "200"
  4543. }
  4544. "03"
  4545. {
  4546. "var_type" "FIELD_INTEGER"
  4547. "bonus_mana" "150"
  4548. }
  4549. }
  4550. }
  4551.  
  4552. //=================================================================================================================
  4553. // Recipe: Refresher
  4554. //=================================================================================================================
  4555. "item_recipe_refresher"
  4556. {
  4557. // General
  4558. //-------------------------------------------------------------------------------------------------------------
  4559. "ID" "109" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4560. "AbilityName" "item_recipe_refresher"
  4561.  
  4562. // Item Info
  4563. //-------------------------------------------------------------------------------------------------------------
  4564. "ItemCost" "1875"
  4565. "ItemShopTags" ""
  4566.  
  4567. // Recipe
  4568. //-------------------------------------------------------------------------------------------------------------
  4569. "ItemRecipe" "1"
  4570. "ItemResult" "item_refresher"
  4571. "ItemRequirements"
  4572. {
  4573. "01" "item_oblivion_staff;item_pers"
  4574. }
  4575. }
  4576.  
  4577. //=================================================================================================================
  4578. // Refresher
  4579. //=================================================================================================================
  4580. "item_refresher"
  4581. {
  4582. // General
  4583. //-------------------------------------------------------------------------------------------------------------
  4584. "ID" "110" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4585. "AbilityName" "item_refresher"
  4586. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4587.  
  4588. // Stats
  4589. //-------------------------------------------------------------------------------------------------------------
  4590. "AbilityCastPoint" "0.0"
  4591. "AbilityCooldown" "160.0"
  4592.  
  4593. // Item Info
  4594. //-------------------------------------------------------------------------------------------------------------
  4595. "AbilityManaCost" "375"
  4596. "ItemCost" "5300"
  4597. "ItemShopTags" "regen_health;regen_mana;damage;hard_to_tag"
  4598. "ItemQuality" "rare"
  4599. "ItemAliases" "restoration stone"
  4600.  
  4601. // Special
  4602. //-------------------------------------------------------------------------------------------------------------
  4603. "AbilitySpecial"
  4604. {
  4605. "01"
  4606. {
  4607. "var_type" "FIELD_INTEGER"
  4608. "bonus_health_regen" "5"
  4609. }
  4610. "02"
  4611. {
  4612. "var_type" "FIELD_INTEGER"
  4613. "bonus_mana_regen" "200"
  4614. }
  4615. "03"
  4616. {
  4617. "var_type" "FIELD_INTEGER"
  4618. "bonus_damage" "40"
  4619. }
  4620. "04"
  4621. {
  4622. "var_type" "FIELD_INTEGER"
  4623. "bonus_int" "6"
  4624. }
  4625.  
  4626. }
  4627. }
  4628.  
  4629. //=================================================================================================================
  4630. // Recipe: Assault Cuirass
  4631. //=================================================================================================================
  4632. "item_recipe_assault"
  4633. {
  4634. // General
  4635. //-------------------------------------------------------------------------------------------------------------
  4636. "ID" "111" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4637. "AbilityName" "item_recipe_assault"
  4638.  
  4639. // Item Info
  4640. //-------------------------------------------------------------------------------------------------------------
  4641. "ItemCost" "1300"
  4642. "ItemShopTags" ""
  4643.  
  4644. // Recipe
  4645. //-------------------------------------------------------------------------------------------------------------
  4646. "ItemRecipe" "1"
  4647. "ItemResult" "item_assault"
  4648. "ItemRequirements"
  4649. {
  4650. "01" "item_platemail;item_hyperstone;item_chainmail"
  4651. }
  4652. }
  4653.  
  4654. //=================================================================================================================
  4655. // Assault Cuirass
  4656. //=================================================================================================================
  4657. "item_assault"
  4658. {
  4659. // General
  4660. //-------------------------------------------------------------------------------------------------------------
  4661. "ID" "112" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4662. "AbilityName" "item_assault"
  4663. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4664.  
  4665. // Item Info
  4666. //-------------------------------------------------------------------------------------------------------------
  4667. "ItemCost" "5350"
  4668. "ItemShopTags" "attack_speed;armor;hard_to_tag"
  4669. "ItemQuality" "epic"
  4670. "ItemAliases" "ac;demonic breastplate;db"
  4671.  
  4672. // Special
  4673. //-------------------------------------------------------------------------------------------------------------
  4674. "AbilitySpecial"
  4675. {
  4676. "01"
  4677. {
  4678. "var_type" "FIELD_INTEGER"
  4679. "bonus_attack_speed" "35"
  4680. }
  4681. "02"
  4682. {
  4683. "var_type" "FIELD_INTEGER"
  4684. "bonus_armor" "10"
  4685. }
  4686. "03"
  4687. {
  4688. "var_type" "FIELD_INTEGER"
  4689. "aura_radius" "900 "
  4690. }
  4691. "04"
  4692. {
  4693. "var_type" "FIELD_INTEGER"
  4694. "aura_attack_speed" "20"
  4695. }
  4696. "05"
  4697. {
  4698. "var_type" "FIELD_INTEGER"
  4699. "aura_positive_armor" "5"
  4700. }
  4701. "06"
  4702. {
  4703. "var_type" "FIELD_INTEGER"
  4704. "aura_negative_armor" "-5"
  4705. }
  4706. }
  4707. }
  4708.  
  4709. //=================================================================================================================
  4710. // Recipe: Heart
  4711. //=================================================================================================================
  4712. "item_recipe_heart"
  4713. {
  4714. // General
  4715. //-------------------------------------------------------------------------------------------------------------
  4716. "ID" "113" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4717. "AbilityName" "item_recipe_heart"
  4718.  
  4719. // Item Info
  4720. //-------------------------------------------------------------------------------------------------------------
  4721. "ItemCost" "1200"
  4722. "ItemShopTags" ""
  4723.  
  4724. // Recipe
  4725. //-------------------------------------------------------------------------------------------------------------
  4726. "ItemRecipe" "1"
  4727. "ItemResult" "item_heart"
  4728. "ItemRequirements"
  4729. {
  4730. "01" "item_reaver;item_vitality_booster"
  4731. }
  4732. }
  4733.  
  4734. //=================================================================================================================
  4735. // Heart
  4736. //=================================================================================================================
  4737. "item_heart"
  4738. {
  4739. // General
  4740. //-------------------------------------------------------------------------------------------------------------
  4741. "ID" "114" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4742. "AbilityName" "item_heart"
  4743. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4744.  
  4745. // Stats
  4746. //-------------------------------------------------------------------------------------------------------------
  4747. "AbilityCooldown" "6.0"
  4748.  
  4749. // Item Info
  4750. //-------------------------------------------------------------------------------------------------------------
  4751. "ItemCost" "5500"
  4752. "ItemShopTags" "str;regen_health;health_pool"
  4753. "ItemQuality" "epic"
  4754. "ItemAliases" "hot;tarrasque;behemoth's heart"
  4755.  
  4756. // Special
  4757. //-------------------------------------------------------------------------------------------------------------
  4758. "AbilitySpecial"
  4759. {
  4760. "01"
  4761. {
  4762. "var_type" "FIELD_INTEGER"
  4763. "bonus_strength" "40"
  4764. }
  4765. "02"
  4766. {
  4767. "var_type" "FIELD_INTEGER"
  4768. "bonus_health" "300"
  4769. }
  4770. "03"
  4771. {
  4772. "var_type" "FIELD_INTEGER"
  4773. "health_regen_rate" "2"
  4774. }
  4775. "04"
  4776. {
  4777. "var_type" "FIELD_FLOAT"
  4778. "cooldown_melee" "4"
  4779. }
  4780. }
  4781. }
  4782.  
  4783. //=================================================================================================================
  4784. // Recipe: Black King Bar
  4785. //=================================================================================================================
  4786. "item_recipe_black_king_bar"
  4787. {
  4788. // General
  4789. //-------------------------------------------------------------------------------------------------------------
  4790. "ID" "115" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4791. "AbilityName" "item_recipe_black_king_bar"
  4792.  
  4793. // Item Info
  4794. //-------------------------------------------------------------------------------------------------------------
  4795. "ItemCost" "1300"
  4796. "ItemShopTags" ""
  4797.  
  4798. // Recipe
  4799. //-------------------------------------------------------------------------------------------------------------
  4800. "ItemRecipe" "1"
  4801. "ItemResult" "item_black_king_bar"
  4802. "ItemRequirements"
  4803. {
  4804. "01" "item_ogre_axe;item_mithril_hammer"
  4805. }
  4806. }
  4807.  
  4808. //=================================================================================================================
  4809. // Black King Bar
  4810. //=================================================================================================================
  4811. "item_black_king_bar"
  4812. {
  4813. // General
  4814. //-------------------------------------------------------------------------------------------------------------
  4815. "ID" "116" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4816. "AbilityName" "item_black_king_bar"
  4817. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4818.  
  4819. // Stats
  4820. //-------------------------------------------------------------------------------------------------------------
  4821. "AbilityCooldown" "80 75 70 65 60 55"
  4822.  
  4823. // Item Info
  4824. //-------------------------------------------------------------------------------------------------------------
  4825. "ItemCost" "3900"
  4826. "ItemShopTags" "str;damage;hard_to_tag"
  4827. "ItemQuality" "epic"
  4828. "ItemAliases" "bkb;avatar;shrunken head"
  4829.  
  4830. // Special
  4831. //-------------------------------------------------------------------------------------------------------------
  4832. "AbilitySpecial"
  4833. {
  4834. "01"
  4835. {
  4836. "var_type" "FIELD_INTEGER"
  4837. "bonus_strength" "10"
  4838. }
  4839. "02"
  4840. {
  4841. "var_type" "FIELD_INTEGER"
  4842. "bonus_damage" "24"
  4843. }
  4844. "03"
  4845. {
  4846. "var_type" "FIELD_FLOAT"
  4847. "duration" "10.0 9.0 8.0 7.0 6.0 5.0"
  4848. }
  4849. "04"
  4850. {
  4851. "var_type" "FIELD_INTEGER"
  4852. "max_level" "5"
  4853. }
  4854. "05"
  4855. {
  4856. "var_type" "FIELD_INTEGER"
  4857. "model_scale" "30" // Percentage over model scale
  4858. }
  4859. }
  4860. }
  4861.  
  4862. //=================================================================================================================
  4863. // Aegis of Immortality
  4864. //=================================================================================================================
  4865. "item_aegis"
  4866. {
  4867. // General
  4868. //-------------------------------------------------------------------------------------------------------------
  4869. "ID" "117" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4870. "AbilityName" "item_aegis"
  4871. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4872. "Model" "models/props_gameplay/aegis.mdl"
  4873.  
  4874. // Item Info
  4875. //-------------------------------------------------------------------------------------------------------------
  4876. "ItemCost" "0"
  4877. "ItemShopTags" ""
  4878. "ItemQuality" "artifact"
  4879.  
  4880. // Items
  4881. //-------------------------------------------------------------------------------------------------------------
  4882. "ItemPurchasable" "0"
  4883. "ItemDroppable" "0"
  4884. "ItemSellable" "0"
  4885. "ItemKillable" "1"
  4886.  
  4887. // Special
  4888. //-------------------------------------------------------------------------------------------------------------
  4889. "AbilitySpecial"
  4890. {
  4891. "01"
  4892. {
  4893. "var_type" "FIELD_FLOAT"
  4894. "reincarnate_time" "5.0"
  4895. }
  4896. }
  4897. }
  4898.  
  4899. //=================================================================================================================
  4900. // Recipe: Shiva's Guard
  4901. //=================================================================================================================
  4902. "item_recipe_shivas_guard"
  4903. {
  4904. // General
  4905. //-------------------------------------------------------------------------------------------------------------
  4906. "ID" "118" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4907. "AbilityName" "item_recipe_shivas_guard"
  4908.  
  4909. // Item Info
  4910. //-------------------------------------------------------------------------------------------------------------
  4911. "ItemCost" "600"
  4912. "ItemShopTags" ""
  4913.  
  4914. // Recipe
  4915. //-------------------------------------------------------------------------------------------------------------
  4916. "ItemRecipe" "1"
  4917. "ItemResult" "item_shivas_guard"
  4918. "ItemRequirements"
  4919. {
  4920. "01" "item_platemail;item_mystic_staff"
  4921. }
  4922. }
  4923.  
  4924. //=================================================================================================================
  4925. // Shiva's
  4926. //=================================================================================================================
  4927. "item_shivas_guard"
  4928. {
  4929. // General
  4930. //-------------------------------------------------------------------------------------------------------------
  4931. "ID" "119" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4932. "AbilityName" "item_shivas_guard"
  4933. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  4934.  
  4935. // Stats
  4936. //-------------------------------------------------------------------------------------------------------------
  4937. "AbilityCooldown" "30"
  4938.  
  4939. // Item Info
  4940. //-------------------------------------------------------------------------------------------------------------
  4941. "AbilityManaCost" "100"
  4942. "ItemCost" "4700"
  4943. "ItemShopTags" "int;armor;hard_to_tag"
  4944. "ItemQuality" "epic"
  4945. "ItemDisassemblable" "1"
  4946. "ItemAliases" "frostfield plate"
  4947.  
  4948. // Special
  4949. //-------------------------------------------------------------------------------------------------------------
  4950. "AbilitySpecial"
  4951. {
  4952. "01"
  4953. {
  4954. "var_type" "FIELD_INTEGER"
  4955. "bonus_intellect" "30"
  4956. }
  4957. "02"
  4958. {
  4959. "var_type" "FIELD_INTEGER"
  4960. "bonus_armor" "15"
  4961. }
  4962. "03"
  4963. {
  4964. "var_type" "FIELD_INTEGER"
  4965. "aura_radius" "1000"
  4966. }
  4967. "04"
  4968. {
  4969. "var_type" "FIELD_INTEGER"
  4970. "aura_attack_speed" "-25"
  4971. }
  4972. "05"
  4973. {
  4974. "var_type" "FIELD_INTEGER"
  4975. "blast_radius" "744"
  4976. }
  4977. "06"
  4978. {
  4979. "var_type" "FIELD_INTEGER"
  4980. "blast_speed" "300"
  4981. }
  4982. "07"
  4983. {
  4984. "var_type" "FIELD_INTEGER"
  4985. "blast_damage" "200"
  4986. }
  4987. "08"
  4988. {
  4989. "var_type" "FIELD_INTEGER"
  4990. "blast_movement_speed" "-40"
  4991. }
  4992. "09"
  4993. {
  4994. "var_type" "FIELD_FLOAT"
  4995. "blast_debuff_duration" "4.0"
  4996. }
  4997. }
  4998. }
  4999.  
  5000. //=================================================================================================================
  5001. // Recipe: Bloodstone
  5002. //=================================================================================================================
  5003. "item_recipe_bloodstone"
  5004. {
  5005. // General
  5006. //-------------------------------------------------------------------------------------------------------------
  5007. "ID" "120" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5008. "AbilityName" "item_recipe_bloodstone"
  5009.  
  5010. // Item Info
  5011. //-------------------------------------------------------------------------------------------------------------
  5012. "ItemCost" "0"
  5013. "ItemShopTags" ""
  5014.  
  5015. // Recipe
  5016. //-------------------------------------------------------------------------------------------------------------
  5017. "ItemRecipe" "1"
  5018. "ItemResult" "item_bloodstone"
  5019. "ItemRequirements"
  5020. {
  5021. "01" "item_pers;item_soul_booster"
  5022. }
  5023. }
  5024.  
  5025. //=================================================================================================================
  5026. // Bloodstone
  5027. //=================================================================================================================
  5028. "item_bloodstone"
  5029. {
  5030. // General
  5031. //-------------------------------------------------------------------------------------------------------------
  5032. "ID" "121" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5033. "AbilityName" "item_bloodstone"
  5034. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5035.  
  5036. // Item Info
  5037. //-------------------------------------------------------------------------------------------------------------
  5038. "ItemCost" "5050"
  5039. "ItemShopTags" "regen_health;regen_mana;mana_pool;health_pool"
  5040. "ItemQuality" "epic"
  5041. "ItemInitialCharges" "6"
  5042. "ItemDisplayCharges" "1"
  5043. "ItemAliases" "bs;sacrificial stone"
  5044.  
  5045. // Special
  5046. //-------------------------------------------------------------------------------------------------------------
  5047. "AbilitySpecial"
  5048. {
  5049. "01"
  5050. {
  5051. "var_type" "FIELD_INTEGER"
  5052. "bonus_health" "500"
  5053. }
  5054. "02"
  5055. {
  5056. "var_type" "FIELD_INTEGER"
  5057. "bonus_mana" "400"
  5058. }
  5059. "03"
  5060. {
  5061. "var_type" "FIELD_INTEGER"
  5062. "bonus_health_regen" "8"
  5063. }
  5064. "04"
  5065. {
  5066. "var_type" "FIELD_INTEGER"
  5067. "bonus_mana_regen" "200"
  5068. }
  5069. "05"
  5070. {
  5071. "var_type" "FIELD_INTEGER"
  5072. "charge_range" "1600"
  5073. }
  5074. "06"
  5075. {
  5076. "var_type" "FIELD_INTEGER"
  5077. "heal_on_death_range" "1675"
  5078. }
  5079. "07"
  5080. {
  5081. "var_type" "FIELD_INTEGER"
  5082. "heal_on_death_base" "400"
  5083. }
  5084. "08"
  5085. {
  5086. "var_type" "FIELD_INTEGER"
  5087. "heal_on_death_per_charge" "30"
  5088. }
  5089. "09"
  5090. {
  5091. "var_type" "FIELD_INTEGER"
  5092. "vision_on_death_radius" "1800"
  5093. }
  5094. "10"
  5095. {
  5096. "var_type" "FIELD_FLOAT"
  5097. "respawn_time_reduction" "4.0"
  5098. }
  5099. "11"
  5100. {
  5101. "var_type" "FIELD_INTEGER"
  5102. "death_gold_reduction" "25"
  5103. }
  5104. "12"
  5105. {
  5106. "var_type" "FIELD_FLOAT"
  5107. "on_death_removal" "0.7" //30% gone
  5108. }
  5109. }
  5110. }
  5111.  
  5112. //=================================================================================================================
  5113. // Recipe: Sphere
  5114. //=================================================================================================================
  5115. "item_recipe_sphere"
  5116. {
  5117. // General
  5118. //-------------------------------------------------------------------------------------------------------------
  5119. "ID" "122" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5120. "AbilityName" "item_recipe_sphere"
  5121.  
  5122. // Item Info
  5123. //-------------------------------------------------------------------------------------------------------------
  5124. "ItemCost" "1325"
  5125. "ItemShopTags" ""
  5126.  
  5127. // Recipe
  5128. //-------------------------------------------------------------------------------------------------------------
  5129. "ItemRecipe" "1"
  5130. "ItemResult" "item_sphere"
  5131. "ItemRequirements"
  5132. {
  5133. "01" "item_ultimate_orb;item_pers"
  5134. }
  5135. }
  5136.  
  5137. //=================================================================================================================
  5138. // Sphere
  5139. //=================================================================================================================
  5140. "item_sphere"
  5141. {
  5142. // General
  5143. //-------------------------------------------------------------------------------------------------------------
  5144. "ID" "123" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5145. "AbilityName" "item_sphere"
  5146. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5147.  
  5148. // Item Info
  5149. //-------------------------------------------------------------------------------------------------------------
  5150. "ItemCost" "5175"
  5151. "ItemShopTags" "regen_health;regen_mana;str;agi;int;hard_to_tag"
  5152. "ItemQuality" "epic"
  5153. "ItemAliases" "ls;linken's;nullstone"
  5154.  
  5155. // Special
  5156. //-------------------------------------------------------------------------------------------------------------
  5157. "AbilitySpecial"
  5158. {
  5159. "01"
  5160. {
  5161. "var_type" "FIELD_INTEGER"
  5162. "bonus_all_stats" "15"
  5163. }
  5164. "02"
  5165. {
  5166. "var_type" "FIELD_INTEGER"
  5167. "bonus_health_regen" "6"
  5168. }
  5169. "03"
  5170. {
  5171. "var_type" "FIELD_INTEGER"
  5172. "bonus_mana_regen" "150"
  5173. }
  5174. "04"
  5175. {
  5176. "var_type" "FIELD_FLOAT"
  5177. "block_cooldown" "20.0"
  5178. }
  5179. "04"
  5180. {
  5181. "var_type" "FIELD_INTEGER"
  5182. "bonus_damage" "10"
  5183. }
  5184. }
  5185. }
  5186.  
  5187. //=================================================================================================================
  5188. // Recipe: Vanguard
  5189. //=================================================================================================================
  5190. "item_recipe_vanguard"
  5191. {
  5192. // General
  5193. //-------------------------------------------------------------------------------------------------------------
  5194. "ID" "124" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5195. "AbilityName" "item_recipe_vanguard"
  5196.  
  5197. // Item Info
  5198. //-------------------------------------------------------------------------------------------------------------
  5199. "ItemCost" "0"
  5200. "ItemShopTags" ""
  5201.  
  5202. // Recipe
  5203. //-------------------------------------------------------------------------------------------------------------
  5204. "ItemRecipe" "1"
  5205. "ItemResult" "item_vanguard"
  5206. "ItemRequirements"
  5207. {
  5208. "01" "item_ring_of_health;item_vitality_booster;item_stout_shield"
  5209. }
  5210. }
  5211.  
  5212. //=================================================================================================================
  5213. // Vanguard
  5214. //=================================================================================================================
  5215. "item_vanguard"
  5216. {
  5217. // General
  5218. //-------------------------------------------------------------------------------------------------------------
  5219. "ID" "125" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5220. "AbilityName" "item_vanguard"
  5221. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5222.  
  5223. // Item Info
  5224. //-------------------------------------------------------------------------------------------------------------
  5225. "ItemCost" "2225"
  5226. "ItemShopTags" "regen_health;block;health_pool"
  5227. "ItemQuality" "epic"
  5228. "ItemAliases" "helm of the black legion;hotbl"
  5229.  
  5230. // Special
  5231. //-------------------------------------------------------------------------------------------------------------
  5232. "AbilitySpecial"
  5233. {
  5234. "01"
  5235. {
  5236. "var_type" "FIELD_INTEGER"
  5237. "bonus_health" "250"
  5238. }
  5239. "02"
  5240. {
  5241. "var_type" "FIELD_INTEGER"
  5242. "bonus_health_regen" "6"
  5243. }
  5244. "03"
  5245. {
  5246. "var_type" "FIELD_INTEGER"
  5247. "block_chance" "60"
  5248. }
  5249. "04"
  5250. {
  5251. "var_type" "FIELD_INTEGER"
  5252. "block_damage_ranged" "20"
  5253. }
  5254. "04"
  5255. {
  5256. "var_type" "FIELD_INTEGER"
  5257. "block_damage_melee" "40"
  5258. }
  5259. }
  5260. }
  5261.  
  5262. //=================================================================================================================
  5263. // Recipe: Blade Mail
  5264. //=================================================================================================================
  5265. "item_recipe_blade_mail"
  5266. {
  5267. // General
  5268. //-------------------------------------------------------------------------------------------------------------
  5269. "ID" "126" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5270. "AbilityName" "item_recipe_blade_mail"
  5271.  
  5272. // Item Info
  5273. //-------------------------------------------------------------------------------------------------------------
  5274. "ItemCost" "0"
  5275. "ItemShopTags" ""
  5276.  
  5277. // Recipe
  5278. //-------------------------------------------------------------------------------------------------------------
  5279. "ItemRecipe" "1"
  5280. "ItemResult" "item_blade_mail"
  5281. "ItemRequirements"
  5282. {
  5283. "01" "item_broadsword;item_chainmail;item_robe"
  5284. }
  5285. }
  5286.  
  5287. //=================================================================================================================
  5288. // Blade Mail
  5289. //=================================================================================================================
  5290. "item_blade_mail"
  5291. {
  5292. // General
  5293. //-------------------------------------------------------------------------------------------------------------
  5294. "ID" "127" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5295. "AbilityName" "item_blade_mail"
  5296. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  5297.  
  5298. // Stats
  5299. //-------------------------------------------------------------------------------------------------------------
  5300. "AbilityCooldown" "22.0"
  5301.  
  5302. // Item Info
  5303. //-------------------------------------------------------------------------------------------------------------
  5304. "AbilityManaCost" "25"
  5305. "ItemCost" "2200"
  5306. "ItemShopTags" "damage;armor;int;hard_to_tag"
  5307. "ItemQuality" "epic"
  5308. "ItemAliases" "barbed armor"
  5309.  
  5310. // Special
  5311. //-------------------------------------------------------------------------------------------------------------
  5312. "AbilitySpecial"
  5313. {
  5314. "01"
  5315. {
  5316. "var_type" "FIELD_INTEGER"
  5317. "bonus_damage" "22"
  5318. }
  5319. "02"
  5320. {
  5321. "var_type" "FIELD_INTEGER"
  5322. "bonus_armor" "5"
  5323. }
  5324. "03"
  5325. {
  5326. "var_type" "FIELD_INTEGER"
  5327. "bonus_intellect" "10"
  5328. }
  5329. "04"
  5330. {
  5331. "var_type" "FIELD_FLOAT"
  5332. "duration" "4.0"
  5333. }
  5334. }
  5335. }
  5336.  
  5337. //=================================================================================================================
  5338. // Recipe: Soul Booster
  5339. //=================================================================================================================
  5340. "item_recipe_soul_booster"
  5341. {
  5342. // General
  5343. //-------------------------------------------------------------------------------------------------------------
  5344. "ID" "128" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5345. "AbilityName" "item_recipe_soul_booster"
  5346.  
  5347. // Item Info
  5348. //-------------------------------------------------------------------------------------------------------------
  5349. "ItemCost" "0"
  5350. "ItemShopTags" ""
  5351.  
  5352. // Recipe
  5353. //-------------------------------------------------------------------------------------------------------------
  5354. "ItemRecipe" "1"
  5355. "ItemResult" "item_soul_booster"
  5356. "ItemRequirements"
  5357. {
  5358. "01" "item_vitality_booster;item_energy_booster;item_point_booster"
  5359. }
  5360. }
  5361.  
  5362. //=================================================================================================================
  5363. // Soul Booster
  5364. //=================================================================================================================
  5365. "item_soul_booster"
  5366. {
  5367. // General
  5368. //-------------------------------------------------------------------------------------------------------------
  5369. "ID" "129" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5370. "AbilityName" "item_soul_booster"
  5371. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5372.  
  5373. // Item Info
  5374. //-------------------------------------------------------------------------------------------------------------
  5375. "ItemCost" "3300"
  5376. "ItemShopTags" "regen_health;regen_mana;health_pool;mana_pool"
  5377. "ItemQuality" "epic"
  5378. "ItemAliases" "icon of the goddess"
  5379.  
  5380. // Special
  5381. //-------------------------------------------------------------------------------------------------------------
  5382. "AbilitySpecial"
  5383. {
  5384. "01"
  5385. {
  5386. "var_type" "FIELD_INTEGER"
  5387. "bonus_health" "450"
  5388. }
  5389. "02"
  5390. {
  5391. "var_type" "FIELD_INTEGER"
  5392. "bonus_mana" "400"
  5393. }
  5394. "03"
  5395. {
  5396. "var_type" "FIELD_INTEGER"
  5397. "bonus_health_regen" "4"
  5398. }
  5399. "04"
  5400. {
  5401. "var_type" "FIELD_INTEGER"
  5402. "bonus_mana_regen" "100"
  5403. }
  5404. }
  5405. }
  5406.  
  5407. //=================================================================================================================
  5408. // Recipe: Hood of Defiance
  5409. //=================================================================================================================
  5410. "item_recipe_hood_of_defiance"
  5411. {
  5412. // General
  5413. //-------------------------------------------------------------------------------------------------------------
  5414. "ID" "130" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5415. "AbilityName" "item_recipe_hood_of_defiance"
  5416.  
  5417. // Item Info
  5418. //-------------------------------------------------------------------------------------------------------------
  5419. "ItemCost" "0"
  5420. "ItemShopTags" ""
  5421.  
  5422. // Recipe
  5423. //-------------------------------------------------------------------------------------------------------------
  5424. "ItemRecipe" "1"
  5425. "ItemResult" "item_hood_of_defiance"
  5426. "ItemRequirements"
  5427. {
  5428. "01" "item_ring_of_health;item_cloak;item_ring_of_regen;item_ring_of_regen"
  5429. }
  5430. }
  5431.  
  5432. //=================================================================================================================
  5433. // Hood of Defiance
  5434. //=================================================================================================================
  5435. "item_hood_of_defiance"
  5436. {
  5437. // General
  5438. //-------------------------------------------------------------------------------------------------------------
  5439. "ID" "131" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5440. "AbilityName" "item_hood_of_defiance"
  5441. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5442.  
  5443. // Item Info
  5444. //-------------------------------------------------------------------------------------------------------------
  5445. "ItemCost" "2125"
  5446. "ItemShopTags" "regen_health;magic_resist"
  5447. "ItemQuality" "epic"
  5448. "ItemAliases" "shaman's headdress"
  5449.  
  5450. // Special
  5451. //-------------------------------------------------------------------------------------------------------------
  5452. "AbilitySpecial"
  5453. {
  5454. "01"
  5455. {
  5456. "var_type" "FIELD_INTEGER"
  5457. "bonus_spell_resist" "130"
  5458. }
  5459. "02"
  5460. {
  5461. "var_type" "FIELD_INTEGER"
  5462. "bonus_health_regen" "8"
  5463. }
  5464.  
  5465. "03"
  5466. {
  5467. "var_type" "FIELD_INTEGER"
  5468. "tooltip_resist" "30"
  5469. }
  5470. }
  5471. }
  5472.  
  5473. //=================================================================================================================
  5474. // Recipe: Rapier
  5475. //=================================================================================================================
  5476. "item_recipe_rapier"
  5477. {
  5478. // General
  5479. //-------------------------------------------------------------------------------------------------------------
  5480. "ID" "132" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5481. "AbilityName" "item_recipe_rapier"
  5482.  
  5483. // Item Info
  5484. //-------------------------------------------------------------------------------------------------------------
  5485. "ItemCost" "0"
  5486. "ItemShopTags" ""
  5487.  
  5488. // Recipe
  5489. //-------------------------------------------------------------------------------------------------------------
  5490. "ItemRecipe" "1"
  5491. "ItemResult" "item_rapier"
  5492. "ItemRequirements"
  5493. {
  5494. "01" "item_relic;item_demon_edge"
  5495. }
  5496. }
  5497.  
  5498. //=================================================================================================================
  5499. // Rapier
  5500. //=================================================================================================================
  5501. "item_rapier"
  5502. {
  5503. // General
  5504. //-------------------------------------------------------------------------------------------------------------
  5505. "ID" "133" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5506. "AbilityName" "item_rapier"
  5507. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5508.  
  5509. // Item Info
  5510. //-------------------------------------------------------------------------------------------------------------
  5511. "ItemCost" "6200"
  5512. "ItemShopTags" "damage"
  5513. "ItemQuality" "epic"
  5514. "ItemShareability" "ITEM_NOT_SHAREABLE"
  5515. "ItemSellable" "0"
  5516. "ItemKillable" "0"
  5517. "ItemAliases" "doom bringer;doombringer"
  5518. "ItemDeclaresPurchase" "1"
  5519.  
  5520. // Special
  5521. //-------------------------------------------------------------------------------------------------------------
  5522. "AbilitySpecial"
  5523. {
  5524. "01"
  5525. {
  5526. "var_type" "FIELD_INTEGER"
  5527. "bonus_damage" "300"
  5528. }
  5529. }
  5530. }
  5531.  
  5532. //=================================================================================================================
  5533. // Recipe: Monkey King Bar
  5534. //=================================================================================================================
  5535. "item_recipe_monkey_king_bar"
  5536. {
  5537. // General
  5538. //-------------------------------------------------------------------------------------------------------------
  5539. "ID" "134" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5540. "AbilityName" "item_recipe_monkey_king_bar"
  5541.  
  5542. // Item Info
  5543. //-------------------------------------------------------------------------------------------------------------
  5544. "ItemCost" "0"
  5545. "ItemShopTags" ""
  5546.  
  5547. // Recipe
  5548. //-------------------------------------------------------------------------------------------------------------
  5549. "ItemRecipe" "1"
  5550. "ItemResult" "item_monkey_king_bar"
  5551. "ItemRequirements"
  5552. {
  5553. "01" "item_demon_edge;item_javelin;item_javelin"
  5554. }
  5555. }
  5556.  
  5557. //=================================================================================================================
  5558. // Monkey King Bar
  5559. //=================================================================================================================
  5560. "item_monkey_king_bar"
  5561. {
  5562. // General
  5563. //-------------------------------------------------------------------------------------------------------------
  5564. "ID" "135" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5565. "AbilityName" "item_monkey_king_bar"
  5566. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5567.  
  5568. // Item Info
  5569. //-------------------------------------------------------------------------------------------------------------
  5570. "ItemCost" "5400"
  5571. "ItemShopTags" "damage;attack_speed;hard_to_tag"
  5572. "ItemQuality" "epic"
  5573. "ItemAliases" "mkb;savage mace"
  5574.  
  5575. // Special
  5576. //-------------------------------------------------------------------------------------------------------------
  5577. "AbilitySpecial"
  5578. {
  5579. "01"
  5580. {
  5581. "var_type" "FIELD_INTEGER"
  5582. "bonus_damage" "88"
  5583. }
  5584. "02"
  5585. {
  5586. "var_type" "FIELD_INTEGER"
  5587. "bonus_attack_speed" "15"
  5588. }
  5589. "03"
  5590. {
  5591. "var_type" "FIELD_INTEGER"
  5592. "bash_chance" "35"
  5593. }
  5594. "04"
  5595. {
  5596. "var_type" "FIELD_INTEGER"
  5597. "bash_damage" "100"
  5598. }
  5599. "05"
  5600. {
  5601. "var_type" "FIELD_FLOAT"
  5602. "bash_stun" "0.01"
  5603. }
  5604. }
  5605. }
  5606.  
  5607. //=================================================================================================================
  5608. // Recipe: Radiance
  5609. //=================================================================================================================
  5610. "item_recipe_radiance"
  5611. {
  5612. // General
  5613. //-------------------------------------------------------------------------------------------------------------
  5614. "ID" "136" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5615. "AbilityName" "item_recipe_radiance"
  5616.  
  5617. // Item Info
  5618. //-------------------------------------------------------------------------------------------------------------
  5619. "ItemCost" "1350"
  5620. "ItemShopTags" ""
  5621.  
  5622. // Recipe
  5623. //-------------------------------------------------------------------------------------------------------------
  5624. "ItemRecipe" "1"
  5625. "ItemResult" "item_radiance"
  5626. "ItemRequirements"
  5627. {
  5628. "01" "item_relic"
  5629. }
  5630. }
  5631.  
  5632. //=================================================================================================================
  5633. // Radiance
  5634. //=================================================================================================================
  5635. "item_radiance"
  5636. {
  5637. // General
  5638. //-------------------------------------------------------------------------------------------------------------
  5639. "ID" "137" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5640. "AbilityName" "item_radiance"
  5641. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  5642.  
  5643. // Item Info
  5644. //-------------------------------------------------------------------------------------------------------------
  5645. "ItemCost" "5150"
  5646. "ItemShopTags" "damage"
  5647. "ItemQuality" "epic"
  5648. "ItemAliases" "mock of brilliance"
  5649.  
  5650. // Special
  5651. //-------------------------------------------------------------------------------------------------------------
  5652. "AbilitySpecial"
  5653. {
  5654. "01"
  5655. {
  5656. "var_type" "FIELD_INTEGER"
  5657. "bonus_damage" "60"
  5658. }
  5659. "02"
  5660. {
  5661. "var_type" "FIELD_INTEGER"
  5662. "aura_radius" "650"
  5663. }
  5664. "03"
  5665. {
  5666. "var_type" "FIELD_INTEGER"
  5667. "aura_damage" "40"
  5668. }
  5669. }
  5670. }
  5671.  
  5672. //=================================================================================================================
  5673. // Recipe: Butterfly
  5674. //=================================================================================================================
  5675. "item_recipe_butterfly"
  5676. {
  5677. // General
  5678. //-------------------------------------------------------------------------------------------------------------
  5679. "ID" "138" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5680. "AbilityName" "item_recipe_butterfly"
  5681.  
  5682. // Item Info
  5683. //-------------------------------------------------------------------------------------------------------------
  5684. "ItemCost" "0"
  5685. "ItemShopTags" ""
  5686.  
  5687. // Recipe
  5688. //-------------------------------------------------------------------------------------------------------------
  5689. "ItemRecipe" "1"
  5690. "ItemResult" "item_butterfly"
  5691. "ItemRequirements"
  5692. {
  5693. "01" "item_talisman_of_evasion;item_quarterstaff;item_eagle"
  5694. }
  5695. }
  5696.  
  5697. //=================================================================================================================
  5698. // Butterfly
  5699. //=================================================================================================================
  5700. "item_butterfly"
  5701. {
  5702. // General
  5703. //-------------------------------------------------------------------------------------------------------------
  5704. "ID" "139" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5705. "AbilityName" "item_butterfly"
  5706. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5707.  
  5708. // Item Info
  5709. //-------------------------------------------------------------------------------------------------------------
  5710. "ItemCost" "6000"
  5711. "ItemShopTags" "agi;damage;evasion;attack_speed"
  5712. "ItemQuality" "epic"
  5713. "ItemAliases" "bfly;wingbow"
  5714.  
  5715. // Special
  5716. //-------------------------------------------------------------------------------------------------------------
  5717. "AbilitySpecial"
  5718. {
  5719. "01"
  5720. {
  5721. "var_type" "FIELD_INTEGER"
  5722. "bonus_agility" "30"
  5723. }
  5724. "02"
  5725. {
  5726. "var_type" "FIELD_INTEGER"
  5727. "bonus_damage" "30"
  5728. }
  5729. "03"
  5730. {
  5731. "var_type" "FIELD_INTEGER"
  5732. "bonus_evasion" "35"
  5733. }
  5734. "04"
  5735. {
  5736. "var_type" "FIELD_INTEGER"
  5737. "bonus_attack_speed" "30"
  5738. }
  5739. }
  5740. }
  5741.  
  5742. //=================================================================================================================
  5743. // Recipe: Greater Crit
  5744. //=================================================================================================================
  5745. "item_recipe_greater_crit"
  5746. {
  5747. // General
  5748. //-------------------------------------------------------------------------------------------------------------
  5749. "ID" "140" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5750. "AbilityName" "item_recipe_greater_crit"
  5751.  
  5752. // Item Info
  5753. //-------------------------------------------------------------------------------------------------------------
  5754. "ItemCost" "1200"
  5755. "ItemShopTags" ""
  5756.  
  5757. // Recipe
  5758. //-------------------------------------------------------------------------------------------------------------
  5759. "ItemRecipe" "1"
  5760. "ItemResult" "item_greater_crit"
  5761. "ItemRequirements"
  5762. {
  5763. "01" "item_lesser_crit;item_demon_edge"
  5764. }
  5765. }
  5766.  
  5767. //=================================================================================================================
  5768. // Greater Crit
  5769. //=================================================================================================================
  5770. "item_greater_crit"
  5771. {
  5772. // General
  5773. //-------------------------------------------------------------------------------------------------------------
  5774. "ID" "141" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5775. "AbilityName" "item_greater_crit"
  5776. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5777.  
  5778. // Item Info
  5779. //-------------------------------------------------------------------------------------------------------------
  5780. "ItemCost" "5750"
  5781. "ItemShopTags" "damage;crit"
  5782. "ItemQuality" "epic"
  5783. "ItemAliases" "riftshards;buriza-do kyanon"
  5784.  
  5785. // Special
  5786. //-------------------------------------------------------------------------------------------------------------
  5787. "AbilitySpecial"
  5788. {
  5789. "01"
  5790. {
  5791. "var_type" "FIELD_INTEGER"
  5792. "bonus_damage" "81"
  5793. }
  5794. "02"
  5795. {
  5796. "var_type" "FIELD_INTEGER"
  5797. "crit_chance" "25"
  5798. }
  5799. "03"
  5800. {
  5801. "var_type" "FIELD_INTEGER"
  5802. "crit_multiplier" "250"
  5803. }
  5804. }
  5805. }
  5806.  
  5807. //=================================================================================================================
  5808. // Recipe: Basher
  5809. //=================================================================================================================
  5810. "item_recipe_basher"
  5811. {
  5812. // General
  5813. //-------------------------------------------------------------------------------------------------------------
  5814. "ID" "142" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5815. "AbilityName" "item_recipe_basher"
  5816.  
  5817. // Item Info
  5818. //-------------------------------------------------------------------------------------------------------------
  5819. "ItemCost" "1000"
  5820. "ItemShopTags" ""
  5821.  
  5822. // Recipe
  5823. //-------------------------------------------------------------------------------------------------------------
  5824. "ItemRecipe" "1"
  5825. "ItemResult" "item_basher"
  5826. "ItemRequirements"
  5827. {
  5828. "01" "item_belt_of_strength;item_javelin"
  5829. }
  5830. }
  5831.  
  5832. //=================================================================================================================
  5833. // Basher
  5834. //=================================================================================================================
  5835. "item_basher"
  5836. {
  5837. // General
  5838. //-------------------------------------------------------------------------------------------------------------
  5839. "ID" "143" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5840. "AbilityName" "item_basher"
  5841. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5842.  
  5843. // Stats
  5844. //-------------------------------------------------------------------------------------------------------------
  5845. "AbilityCooldown" "2.0"
  5846.  
  5847. // Item Info
  5848. //-------------------------------------------------------------------------------------------------------------
  5849. "ItemCost" "2950"
  5850. "ItemShopTags" "damage;str;hard_to_tag"
  5851. "ItemQuality" "epic"
  5852. "ItemAliases" "cranium;brutalizer"
  5853.  
  5854. // Special
  5855. //-------------------------------------------------------------------------------------------------------------
  5856. "AbilitySpecial"
  5857. {
  5858. "01"
  5859. {
  5860. "var_type" "FIELD_INTEGER"
  5861. "bonus_damage" "40"
  5862. }
  5863. "02"
  5864. {
  5865. "var_type" "FIELD_INTEGER"
  5866. "bonus_strength" "6"
  5867. }
  5868. "03"
  5869. {
  5870. "var_type" "FIELD_INTEGER"
  5871. "bash_chance_melee" "25"
  5872. }
  5873. "04"
  5874. {
  5875. "var_type" "FIELD_INTEGER"
  5876. "bash_chance_ranged" "10"
  5877. }
  5878. "05"
  5879. {
  5880. "var_type" "FIELD_FLOAT"
  5881. "bash_duration" "1.4"
  5882. }
  5883. "06"
  5884. {
  5885. "var_type" "FIELD_FLOAT"
  5886. "bash_cooldown" "2.0"
  5887. }
  5888. }
  5889. }
  5890.  
  5891. //=================================================================================================================
  5892. // Recipe: Battlefury
  5893. //=================================================================================================================
  5894. "item_recipe_bfury"
  5895. {
  5896. // General
  5897. //-------------------------------------------------------------------------------------------------------------
  5898. "ID" "144" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5899. "AbilityName" "item_recipe_bfury"
  5900.  
  5901. // Item Info
  5902. //-------------------------------------------------------------------------------------------------------------
  5903. "ItemCost" "0"
  5904. "ItemShopTags" ""
  5905.  
  5906. // Recipe
  5907. //-------------------------------------------------------------------------------------------------------------
  5908. "ItemRecipe" "1"
  5909. "ItemResult" "item_bfury"
  5910. "ItemRequirements"
  5911. {
  5912. "01" "item_broadsword;item_claymore;item_pers"
  5913. }
  5914. }
  5915.  
  5916. //=================================================================================================================
  5917. // Battlefury
  5918. //=================================================================================================================
  5919. "item_bfury"
  5920. {
  5921. // General
  5922. //-------------------------------------------------------------------------------------------------------------
  5923. "ID" "145" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5924. "AbilityName" "item_bfury"
  5925. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5926.  
  5927. // Item Info
  5928. //-------------------------------------------------------------------------------------------------------------
  5929. "ItemCost" "4350"
  5930. "ItemShopTags" "damage;health_regen;mana_regen;hard_to_tag"
  5931. "ItemQuality" "epic"
  5932. "ItemAliases" "bfury;runed axe;runed cleaver"
  5933.  
  5934. // Special
  5935. //-------------------------------------------------------------------------------------------------------------
  5936. "AbilitySpecial"
  5937. {
  5938. "01"
  5939. {
  5940. "var_type" "FIELD_INTEGER"
  5941. "bonus_damage" "65"
  5942. }
  5943. "02"
  5944. {
  5945. "var_type" "FIELD_INTEGER"
  5946. "bonus_health_regen" "6"
  5947. }
  5948. "03"
  5949. {
  5950. "var_type" "FIELD_INTEGER"
  5951. "bonus_mana_regen" "150"
  5952. }
  5953. "04"
  5954. {
  5955. "var_type" "FIELD_INTEGER"
  5956. "cleave_damage_percent" "35"
  5957. }
  5958. "05"
  5959. {
  5960. "var_type" "FIELD_INTEGER"
  5961. "cleave_radius" "225"
  5962. }
  5963. }
  5964. }
  5965.  
  5966. //=================================================================================================================
  5967. // Recipe: Manta
  5968. //=================================================================================================================
  5969. "item_recipe_manta"
  5970. {
  5971. // General
  5972. //-------------------------------------------------------------------------------------------------------------
  5973. "ID" "146" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5974. "AbilityName" "item_recipe_manta"
  5975.  
  5976. // Item Info
  5977. //-------------------------------------------------------------------------------------------------------------
  5978. "ItemCost" "650"
  5979. "ItemShopTags" ""
  5980.  
  5981. // Recipe
  5982. //-------------------------------------------------------------------------------------------------------------
  5983. "ItemRecipe" "1"
  5984. "ItemResult" "item_manta"
  5985. "ItemRequirements"
  5986. {
  5987. "01" "item_yasha;item_ultimate_orb"
  5988. }
  5989. }
  5990.  
  5991. //=================================================================================================================
  5992. // Manta
  5993. //=================================================================================================================
  5994. "item_manta"
  5995. {
  5996. // General
  5997. //-------------------------------------------------------------------------------------------------------------
  5998. "ID" "147" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5999. "AbilityName" "item_manta"
  6000. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  6001.  
  6002. // Stats
  6003. //-------------------------------------------------------------------------------------------------------------
  6004. "AbilityCooldown" "50.0"
  6005. "AbilityCastPoint" "0.0"
  6006.  
  6007. // Item Info
  6008. //-------------------------------------------------------------------------------------------------------------
  6009. "AbilityManaCost" "165"
  6010. "ItemCost" "4900"
  6011. "ItemShopTags" "agi;str;int;attack_speed;move_speed;hard_to_tag"
  6012. "ItemQuality" "epic"
  6013. "ItemDisassemblable" "1"
  6014. "ItemAliases" "geometer's bane;illusions"
  6015.  
  6016. // Special
  6017. //-------------------------------------------------------------------------------------------------------------
  6018. "AbilitySpecial"
  6019. {
  6020. "01"
  6021. {
  6022. "var_type" "FIELD_INTEGER"
  6023. "bonus_strength" "10"
  6024. }
  6025. "02"
  6026. {
  6027. "var_type" "FIELD_INTEGER"
  6028. "bonus_agility" "26"
  6029. }
  6030. "03"
  6031. {
  6032. "var_type" "FIELD_INTEGER"
  6033. "bonus_intellect" "10"
  6034. }
  6035. "04"
  6036. {
  6037. "var_type" "FIELD_INTEGER"
  6038. "bonus_attack_speed" "15"
  6039. }
  6040. "05"
  6041. {
  6042. "var_type" "FIELD_INTEGER"
  6043. "bonus_movement_speed" "10"
  6044. }
  6045. "06"
  6046. {
  6047. "var_type" "FIELD_INTEGER"
  6048. "images_count" "2"
  6049. }
  6050. "07"
  6051. {
  6052. "var_type" "FIELD_INTEGER"
  6053. "images_do_damage_percent_melee" "-67"
  6054. }
  6055. "08"
  6056. {
  6057. "var_type" "FIELD_INTEGER"
  6058. "images_take_damage_percent_melee" "250"
  6059. }
  6060. "09"
  6061. {
  6062. "var_type" "FIELD_INTEGER"
  6063. "images_do_damage_percent_ranged" "-72"
  6064. }
  6065. "10"
  6066. {
  6067. "var_type" "FIELD_INTEGER"
  6068. "images_take_damage_percent_ranged" "300"
  6069. }
  6070. "11"
  6071. {
  6072. "var_type" "FIELD_FLOAT"
  6073. "cooldown_melee" "35.0"
  6074. }
  6075. "12"
  6076. {
  6077. "var_type" "FIELD_FLOAT"
  6078. "cooldown_melee" "50.0"
  6079. }
  6080. "13"
  6081. {
  6082. "var_type" "FIELD_FLOAT"
  6083. "invuln_duration" "0.23"
  6084. }
  6085. "14"
  6086. {
  6087. "var_type" "FIELD_INTEGER"
  6088. "vision_radius" "1000"
  6089. }
  6090. "15"
  6091. {
  6092. "var_type" "FIELD_INTEGER"
  6093. "tooltip_outgoing_melee" "33"
  6094. }
  6095. "16"
  6096. {
  6097. "var_type" "FIELD_INTEGER"
  6098. "tooltip_outgoing_range" "28"
  6099. }
  6100. }
  6101. }
  6102.  
  6103. //=================================================================================================================
  6104. // Recipe: Lesser Crit
  6105. //=================================================================================================================
  6106. "item_recipe_lesser_crit"
  6107. {
  6108. // General
  6109. //-------------------------------------------------------------------------------------------------------------
  6110. "ID" "148" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6111. "AbilityName" "item_recipe_lesser_crit"
  6112.  
  6113. // Item Info
  6114. //-------------------------------------------------------------------------------------------------------------
  6115. "ItemCost" "500"
  6116. "ItemShopTags" ""
  6117.  
  6118. // Recipe
  6119. //-------------------------------------------------------------------------------------------------------------
  6120. "ItemRecipe" "1"
  6121. "ItemResult" "item_lesser_crit"
  6122. "ItemRequirements"
  6123. {
  6124. "01" "item_broadsword;item_blades_of_attack"
  6125. }
  6126. }
  6127.  
  6128. //=================================================================================================================
  6129. // Lesser Crit
  6130. //=================================================================================================================
  6131. "item_lesser_crit"
  6132. {
  6133. // General
  6134. //-------------------------------------------------------------------------------------------------------------
  6135. "ID" "149" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6136. "AbilityName" "item_lesser_crit"
  6137. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6138.  
  6139. // Item Info
  6140. //-------------------------------------------------------------------------------------------------------------
  6141. "ItemCost" "2150"
  6142. "ItemShopTags" "damage;crit"
  6143. "ItemQuality" "epic"
  6144.  
  6145. // Special
  6146. //-------------------------------------------------------------------------------------------------------------
  6147. "AbilitySpecial"
  6148. {
  6149. "01"
  6150. {
  6151. "var_type" "FIELD_INTEGER"
  6152. "bonus_damage" "35"
  6153. }
  6154. "02"
  6155. {
  6156. "var_type" "FIELD_INTEGER"
  6157. "crit_chance" "20"
  6158. }
  6159. "03"
  6160. {
  6161. "var_type" "FIELD_INTEGER"
  6162. "crit_multiplier" "175"
  6163. }
  6164. }
  6165. }
  6166.  
  6167. //=================================================================================================================
  6168. // Recipe: Armlet
  6169. //=================================================================================================================
  6170. "item_recipe_armlet"
  6171. {
  6172. // General
  6173. //-------------------------------------------------------------------------------------------------------------
  6174. "ID" "150" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6175. "AbilityName" "item_recipe_armlet"
  6176.  
  6177. // Item Info
  6178. //-------------------------------------------------------------------------------------------------------------
  6179. "ItemCost" "700"
  6180. "ItemShopTags" ""
  6181.  
  6182. // Recipe
  6183. //-------------------------------------------------------------------------------------------------------------
  6184. "ItemRecipe" "1"
  6185. "ItemResult" "item_armlet"
  6186. "ItemRequirements"
  6187. {
  6188. "01" "item_helm_of_iron_will;item_gloves;item_blades_of_attack"
  6189. }
  6190. }
  6191.  
  6192. //=================================================================================================================
  6193. // Armlet
  6194. //=================================================================================================================
  6195. "item_armlet"
  6196. {
  6197. // General
  6198. //-------------------------------------------------------------------------------------------------------------
  6199. "ID" "151" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6200. "AbilityName" "item_armlet"
  6201. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  6202.  
  6203. // Stats
  6204. //-------------------------------------------------------------------------------------------------------------
  6205. "AbilityCooldown" "5.0"
  6206.  
  6207. // Item Info
  6208. //-------------------------------------------------------------------------------------------------------------
  6209. "ItemCost" "2600"
  6210. "ItemShopTags" "damage;attack_speed;armor;regen_health;hard_to_tag"
  6211. "ItemQuality" "epic"
  6212. "ItemAliases" "mordiggian;insanitarius"
  6213.  
  6214. // Special
  6215. //-------------------------------------------------------------------------------------------------------------
  6216. "AbilitySpecial"
  6217. {
  6218. "01"
  6219. {
  6220. "var_type" "FIELD_INTEGER"
  6221. "bonus_damage" "9"
  6222. }
  6223. "02"
  6224. {
  6225. "var_type" "FIELD_INTEGER"
  6226. "bonus_attack_speed" "15"
  6227. }
  6228. "03"
  6229. {
  6230. "var_type" "FIELD_INTEGER"
  6231. "bonus_armor" "5"
  6232. }
  6233. "04"
  6234. {
  6235. "var_type" "FIELD_INTEGER"
  6236. "bonus_health_regen" "5"
  6237. }
  6238. "05"
  6239. {
  6240. "var_type" "FIELD_INTEGER"
  6241. "unholy_bonus_damage" "31"
  6242. }
  6243. "06"
  6244. {
  6245. "var_type" "FIELD_INTEGER"
  6246. "unholy_bonus_attack_speed" "10"
  6247. }
  6248. "07"
  6249. {
  6250. "var_type" "FIELD_INTEGER"
  6251. "unholy_bonus_strength" "25"
  6252. }
  6253. "08"
  6254. {
  6255. "var_type" "FIELD_INTEGER"
  6256. "unholy_health_drain" "37"
  6257. }
  6258. }
  6259. }
  6260.  
  6261. //=================================================================================================================
  6262. // Recipe: Invisibility Sword
  6263. //=================================================================================================================
  6264. "item_recipe_invis_sword"
  6265. {
  6266. // General
  6267. //-------------------------------------------------------------------------------------------------------------
  6268. "ID" "183" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6269. "AbilityName" "item_recipe_invis_sword"
  6270.  
  6271. // Item Info
  6272. //-------------------------------------------------------------------------------------------------------------
  6273. "ItemCost" "1000"
  6274. "ItemShopTags" ""
  6275.  
  6276. // Recipe
  6277. //-------------------------------------------------------------------------------------------------------------
  6278. "ItemRecipe" "1"
  6279. "ItemResult" "item_invis_sword"
  6280. "ItemRequirements"
  6281. {
  6282. "01" "item_quarterstaff;item_claymore"
  6283. }
  6284. }
  6285.  
  6286. //=================================================================================================================
  6287. // Invisibility Sword
  6288. //=================================================================================================================
  6289. "item_invis_sword"
  6290. {
  6291. // General
  6292. //-------------------------------------------------------------------------------------------------------------
  6293. "ID" "152" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6294. "AbilityName" "item_invis_sword"
  6295. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  6296.  
  6297. // Stats
  6298. //-------------------------------------------------------------------------------------------------------------
  6299. "AbilityCooldown" "18.0"
  6300.  
  6301. // Item Info
  6302. //-------------------------------------------------------------------------------------------------------------
  6303. "AbilityManaCost" "75"
  6304. "ItemCost" "3300"
  6305. "ItemShopTags" "damage;attack_speed;movespeed;hard_to_tag"
  6306. "ItemQuality" "epic"
  6307. "ItemAliases" "lothar's edge;assassin's shroud;invis"
  6308.  
  6309. // Special
  6310. //-------------------------------------------------------------------------------------------------------------
  6311. "AbilitySpecial"
  6312. {
  6313. "01"
  6314. {
  6315. "var_type" "FIELD_INTEGER"
  6316. "bonus_damage" "38"
  6317. }
  6318. "02"
  6319. {
  6320. "var_type" "FIELD_INTEGER"
  6321. "bonus_attack_speed" "10"
  6322. }
  6323. "03"
  6324. {
  6325. "var_type" "FIELD_FLOAT"
  6326. "windwalk_duration" "9.0"
  6327. }
  6328. "04"
  6329. {
  6330. "var_type" "FIELD_INTEGER"
  6331. "windwalk_movement_speed" "20"
  6332. }
  6333. "05"
  6334. {
  6335. "var_type" "FIELD_FLOAT"
  6336. "windwalk_fade_time" "0.3"
  6337. }
  6338. "06"
  6339. {
  6340. "var_type" "FIELD_INTEGER"
  6341. "windwalk_bonus_damage" "150"
  6342. }
  6343. }
  6344. }
  6345.  
  6346. //=================================================================================================================
  6347. // Recipe: Sange and Yasha
  6348. //=================================================================================================================
  6349. "item_recipe_sange_and_yasha"
  6350. {
  6351. // General
  6352. //-------------------------------------------------------------------------------------------------------------
  6353. "ID" "153" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6354. "AbilityName" "item_recipe_sange_and_yasha"
  6355.  
  6356. // Item Info
  6357. //-------------------------------------------------------------------------------------------------------------
  6358. "ItemCost" "0"
  6359. "ItemShopTags" ""
  6360.  
  6361. // Recipe
  6362. //-------------------------------------------------------------------------------------------------------------
  6363. "ItemRecipe" "1"
  6364. "ItemResult" "item_sange_and_yasha"
  6365. "ItemRequirements"
  6366. {
  6367. "01" "item_yasha;item_sange"
  6368. }
  6369. }
  6370.  
  6371. //=================================================================================================================
  6372. // Sange and Yasha
  6373. //=================================================================================================================
  6374. "item_sange_and_yasha"
  6375. {
  6376. // General
  6377. //-------------------------------------------------------------------------------------------------------------
  6378. "ID" "154" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6379. "AbilityName" "item_sange_and_yasha"
  6380. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6381.  
  6382. // Item Info
  6383. //-------------------------------------------------------------------------------------------------------------
  6384. "ItemCost" "4300"
  6385. "ItemShopTags" "damage;str;agi;attack_speed;unique"
  6386. "ItemQuality" "artifact"
  6387. "ItemAliases" "sny;s&y;sy;frostburn"
  6388.  
  6389. // Special
  6390. //-------------------------------------------------------------------------------------------------------------
  6391. "AbilitySpecial"
  6392. {
  6393. "01"
  6394. {
  6395. "var_type" "FIELD_INTEGER"
  6396. "bonus_damage" "12"
  6397. }
  6398. "02"
  6399. {
  6400. "var_type" "FIELD_INTEGER"
  6401. "bonus_strength" "16"
  6402. }
  6403. "03"
  6404. {
  6405. "var_type" "FIELD_INTEGER"
  6406. "bonus_agility" "16"
  6407. }
  6408. "04"
  6409. {
  6410. "var_type" "FIELD_INTEGER"
  6411. "bonus_attack_speed" "15"
  6412. }
  6413. "05"
  6414. {
  6415. "var_type" "FIELD_INTEGER"
  6416. "movement_speed_percent_bonus" "12"
  6417. }
  6418. "06"
  6419. {
  6420. "var_type" "FIELD_INTEGER"
  6421. "maim_chance" "15"
  6422. }
  6423. "07"
  6424. {
  6425. "var_type" "FIELD_INTEGER"
  6426. "maim_slow_movement" "-30"
  6427. }
  6428. "08"
  6429. {
  6430. "var_type" "FIELD_INTEGER"
  6431. "maim_slow_attack" "-30"
  6432. }
  6433. "09"
  6434. {
  6435. "var_type" "FIELD_FLOAT"
  6436. "maim_duration" "4.0"
  6437. }
  6438. }
  6439. }
  6440.  
  6441. //=================================================================================================================
  6442. // Recipe: Satanic
  6443. //=================================================================================================================
  6444. "item_recipe_satanic"
  6445. {
  6446. // General
  6447. //-------------------------------------------------------------------------------------------------------------
  6448. "ID" "155" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6449. "AbilityName" "item_recipe_satanic"
  6450.  
  6451. // Item Info
  6452. //-------------------------------------------------------------------------------------------------------------
  6453. "ItemCost" "1100"
  6454. "ItemShopTags" ""
  6455.  
  6456. // Recipe
  6457. //-------------------------------------------------------------------------------------------------------------
  6458. "ItemRecipe" "1"
  6459. "ItemResult" "item_satanic"
  6460. "ItemRequirements"
  6461. {
  6462. "01" "item_reaver;item_helm_of_the_dominator"
  6463. }
  6464. }
  6465.  
  6466. //=================================================================================================================
  6467. // Satanic
  6468. //=================================================================================================================
  6469. "item_satanic"
  6470. {
  6471. // General
  6472. //-------------------------------------------------------------------------------------------------------------
  6473. "ID" "156" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6474. "AbilityName" "item_satanic"
  6475. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  6476.  
  6477. // Stats
  6478. //-------------------------------------------------------------------------------------------------------------
  6479. "AbilityCooldown" "35.0"
  6480.  
  6481. // Item Info
  6482. //-------------------------------------------------------------------------------------------------------------
  6483. "ItemCost" "6150"
  6484. "ItemShopTags" "damage;str;armor;unique;hard_to_tag"
  6485. "ItemQuality" "artifact"
  6486. "ItemAliases" "symbol of rage;lifesteal"
  6487.  
  6488. // Special
  6489. //-------------------------------------------------------------------------------------------------------------
  6490. "AbilitySpecial"
  6491. {
  6492. "01"
  6493. {
  6494. "var_type" "FIELD_INTEGER"
  6495. "bonus_damage" "20"
  6496. }
  6497. "02"
  6498. {
  6499. "var_type" "FIELD_INTEGER"
  6500. "bonus_strength" "25"
  6501. }
  6502. "03"
  6503. {
  6504. "var_type" "FIELD_INTEGER"
  6505. "bonus_armor" "5"
  6506. }
  6507. "04"
  6508. {
  6509. "var_type" "FIELD_INTEGER"
  6510. "lifesteal_percent" "25"
  6511. }
  6512. "05"
  6513. {
  6514. "var_type" "FIELD_INTEGER"
  6515. "unholy_lifesteal_percent" "175"
  6516. }
  6517. "06"
  6518. {
  6519. "var_type" "FIELD_FLOAT"
  6520. "unholy_duration" "3.5"
  6521. }
  6522. }
  6523. }
  6524.  
  6525. //=================================================================================================================
  6526. // Recipe: Mjollnir
  6527. //=================================================================================================================
  6528. "item_recipe_mjollnir"
  6529. {
  6530. // General
  6531. //-------------------------------------------------------------------------------------------------------------
  6532. "ID" "157" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6533. "AbilityName" "item_recipe_mjollnir"
  6534.  
  6535. // Item Info
  6536. //-------------------------------------------------------------------------------------------------------------
  6537. "ItemCost" "600"
  6538. "ItemShopTags" ""
  6539.  
  6540. // Recipe
  6541. //-------------------------------------------------------------------------------------------------------------
  6542. "ItemRecipe" "1"
  6543. "ItemResult" "item_mjollnir"
  6544. "ItemRequirements"
  6545. {
  6546. "01" "item_hyperstone;item_maelstrom"
  6547. }
  6548. }
  6549.  
  6550. //=================================================================================================================
  6551. // Mjollnir
  6552. //=================================================================================================================
  6553. "item_mjollnir"
  6554. {
  6555. // General
  6556. //-------------------------------------------------------------------------------------------------------------
  6557. "ID" "158" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6558. "AbilityName" "item_mjollnir"
  6559. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  6560. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  6561. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  6562.  
  6563. // Stats
  6564. //-------------------------------------------------------------------------------------------------------------
  6565. "AbilityCastRange" "600"
  6566. "AbilityCastPoint" "0.0"
  6567. "AbilityCooldown" "35.0"
  6568.  
  6569. // Item Info
  6570. //-------------------------------------------------------------------------------------------------------------
  6571. "AbilityManaCost" "50"
  6572. "ItemCost" "5400"
  6573. "ItemShopTags" "damage;attack_speed;unique"
  6574. "ItemQuality" "artifact"
  6575. "ItemDisassemblable" "1"
  6576. "ItemAliases" "charged hammer;orb"
  6577.  
  6578. // Special
  6579. //-------------------------------------------------------------------------------------------------------------
  6580. "AbilitySpecial"
  6581. {
  6582. "01"
  6583. {
  6584. "var_type" "FIELD_INTEGER"
  6585. "bonus_damage" "24"
  6586. }
  6587. "02"
  6588. {
  6589. "var_type" "FIELD_INTEGER"
  6590. "bonus_attack_speed" "80"
  6591. }
  6592. "03"
  6593. {
  6594. "var_type" "FIELD_FLOAT"
  6595. "static_duration" "20.0"
  6596. }
  6597. "04"
  6598. {
  6599. "var_type" "FIELD_INTEGER"
  6600. "static_chance" "20"
  6601. }
  6602. "05"
  6603. {
  6604. "var_type" "FIELD_INTEGER"
  6605. "static_strikes" "2"
  6606. }
  6607. "06"
  6608. {
  6609. "var_type" "FIELD_INTEGER"
  6610. "static_damage" "200"
  6611. }
  6612. "07"
  6613. {
  6614. "var_type" "FIELD_INTEGER"
  6615. "static_primary_radius" "600"
  6616. }
  6617. "08"
  6618. {
  6619. "var_type" "FIELD_INTEGER"
  6620. "static_seconary_radius" "900"
  6621. }
  6622. "09"
  6623. {
  6624. "var_type" "FIELD_INTEGER"
  6625. "static_radius" "300"
  6626. }
  6627. "10"
  6628. {
  6629. "var_type" "FIELD_FLOAT"
  6630. "static_cooldown" "1.0"
  6631. }
  6632. "11"
  6633. {
  6634. "var_type" "FIELD_INTEGER"
  6635. "chain_chance" "25"
  6636. }
  6637. "12"
  6638. {
  6639. "var_type" "FIELD_INTEGER"
  6640. "chain_damage" "160"
  6641. }
  6642. "13"
  6643. {
  6644. "var_type" "FIELD_INTEGER"
  6645. "chain_strikes" "8"
  6646. }
  6647. "14"
  6648. {
  6649. "var_type" "FIELD_INTEGER"
  6650. "chain_radius" "500"
  6651. }
  6652. "15"
  6653. {
  6654. "var_type" "FIELD_FLOAT"
  6655. "chain_delay" "0.25"
  6656. }
  6657. }
  6658. }
  6659.  
  6660. //=================================================================================================================
  6661. // Recipe: Skadi
  6662. //=================================================================================================================
  6663. "item_recipe_skadi"
  6664. {
  6665. // General
  6666. //-------------------------------------------------------------------------------------------------------------
  6667. "ID" "159" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6668. "AbilityName" "item_recipe_skadi"
  6669.  
  6670. // Item Info
  6671. //-------------------------------------------------------------------------------------------------------------
  6672. "ItemCost" "0"
  6673. "ItemShopTags" ""
  6674.  
  6675. // Recipe
  6676. //-------------------------------------------------------------------------------------------------------------
  6677. "ItemRecipe" "1"
  6678. "ItemResult" "item_skadi"
  6679. "ItemRequirements"
  6680. {
  6681. "01" "item_ultimate_orb;item_ultimate_orb;item_point_booster;item_orb_of_venom"
  6682. }
  6683. }
  6684.  
  6685. //=================================================================================================================
  6686. // Skadi
  6687. //=================================================================================================================
  6688. "item_skadi"
  6689. {
  6690. // General
  6691. //-------------------------------------------------------------------------------------------------------------
  6692. "ID" "160" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6693. "AbilityName" "item_skadi"
  6694. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6695.  
  6696. // Item Info
  6697. //-------------------------------------------------------------------------------------------------------------
  6698. "ItemCost" "5850"
  6699. "ItemShopTags" "agi;str;int;hard_to_tag;mana_pool;health_pool;unique"
  6700. "ItemQuality" "artifact"
  6701. "ItemAliases" "eos;frostwolf skull;fws;orb"
  6702.  
  6703. // Special
  6704. //-------------------------------------------------------------------------------------------------------------
  6705. "AbilitySpecial"
  6706. {
  6707. "01"
  6708. {
  6709. "var_type" "FIELD_INTEGER"
  6710. "bonus_all_stats" "25"
  6711. }
  6712. "02"
  6713. {
  6714. "var_type" "FIELD_INTEGER"
  6715. "bonus_health" "200"
  6716. }
  6717. "03"
  6718. {
  6719. "var_type" "FIELD_INTEGER"
  6720. "bonus_mana" "150"
  6721. }
  6722. "04"
  6723. {
  6724. "var_type" "FIELD_INTEGER"
  6725. "cold_movement_speed" "-30"
  6726. }
  6727. "05"
  6728. {
  6729. "var_type" "FIELD_INTEGER"
  6730. "cold_attack_speed" "-20"
  6731. }
  6732. "06"
  6733. {
  6734. "var_type" "FIELD_FLOAT"
  6735. "cold_duration_melee" "3.0"
  6736. }
  6737. "07"
  6738. {
  6739. "var_type" "FIELD_FLOAT"
  6740. "cold_duration_ranged" "2.0"
  6741. }
  6742. }
  6743. }
  6744.  
  6745. //=================================================================================================================
  6746. // Recipe: Sange
  6747. //=================================================================================================================
  6748. "item_recipe_sange"
  6749. {
  6750. // General
  6751. //-------------------------------------------------------------------------------------------------------------
  6752. "ID" "161" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6753. "AbilityName" "item_recipe_sange"
  6754.  
  6755. // Item Info
  6756. //-------------------------------------------------------------------------------------------------------------
  6757. "ItemCost" "700"
  6758. "ItemShopTags" ""
  6759.  
  6760. // Recipe
  6761. //-------------------------------------------------------------------------------------------------------------
  6762. "ItemRecipe" "1"
  6763. "ItemResult" "item_sange"
  6764. "ItemRequirements"
  6765. {
  6766. "01" "item_ogre_axe;item_belt_of_strength"
  6767. }
  6768. }
  6769.  
  6770. //=================================================================================================================
  6771. // Sange
  6772. //=================================================================================================================
  6773. "item_sange"
  6774. {
  6775. // General
  6776. //-------------------------------------------------------------------------------------------------------------
  6777. "ID" "162" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6778. "AbilityName" "item_sange"
  6779. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6780.  
  6781. // Item Info
  6782. //-------------------------------------------------------------------------------------------------------------
  6783. "ItemCost" "2150"
  6784. "ItemShopTags" "damage;str;unique"
  6785. "ItemQuality" "artifact"
  6786. "ItemAliases" "icebrand"
  6787.  
  6788. // Special
  6789. //-------------------------------------------------------------------------------------------------------------
  6790. "AbilitySpecial"
  6791. {
  6792. "01"
  6793. {
  6794. "var_type" "FIELD_INTEGER"
  6795. "bonus_damage" "10"
  6796. }
  6797. "02"
  6798. {
  6799. "var_type" "FIELD_INTEGER"
  6800. "bonus_strength" "16"
  6801. }
  6802. "03"
  6803. {
  6804. "var_type" "FIELD_INTEGER"
  6805. "maim_chance" "15"
  6806. }
  6807. "04"
  6808. {
  6809. "var_type" "FIELD_INTEGER"
  6810. "maim_movement_speed" "-20"
  6811. }
  6812. "05"
  6813. {
  6814. "var_type" "FIELD_INTEGER"
  6815. "maim_attack_speed" "-20"
  6816. }
  6817. "06"
  6818. {
  6819. "var_type" "FIELD_FLOAT"
  6820. "maim_duration" "4.0"
  6821. }
  6822. }
  6823. }
  6824.  
  6825. //=================================================================================================================
  6826. // Recipe: Helm of the Dominator
  6827. //=================================================================================================================
  6828. "item_recipe_helm_of_the_dominator"
  6829. {
  6830. // General
  6831. //-------------------------------------------------------------------------------------------------------------
  6832. "ID" "163" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6833. "AbilityName" "item_recipe_helm_of_the_dominator"
  6834.  
  6835. // Item Info
  6836. //-------------------------------------------------------------------------------------------------------------
  6837. "ItemCost" "0"
  6838. "ItemShopTags" ""
  6839.  
  6840. // Recipe
  6841. //-------------------------------------------------------------------------------------------------------------
  6842. "ItemRecipe" "1"
  6843. "ItemResult" "item_helm_of_the_dominator"
  6844. "ItemRequirements"
  6845. {
  6846. "01" "item_lifesteal;item_helm_of_iron_will"
  6847. }
  6848. }
  6849.  
  6850. //=================================================================================================================
  6851. // Helm of the Dominator
  6852. //=================================================================================================================
  6853. "item_helm_of_the_dominator"
  6854. {
  6855. // General
  6856. //-------------------------------------------------------------------------------------------------------------
  6857. "ID" "164" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6858. "AbilityName" "item_helm_of_the_dominator"
  6859. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  6860. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  6861. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP"
  6862. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS"
  6863.  
  6864. // Stats
  6865. //-------------------------------------------------------------------------------------------------------------
  6866. "AbilityCastRange" "700"
  6867. "AbilityCastPoint" "0.0"
  6868. "AbilityCooldown" "300.0"
  6869.  
  6870. // Item Info
  6871. //-------------------------------------------------------------------------------------------------------------
  6872. "AbilityManaCost" "75"
  6873. "ItemCost" "1850"
  6874. "ItemShopTags" "damage;armor;unique;hard_to_tag"
  6875. "ItemQuality" "artifact"
  6876. "ItemDisassemblable" "1"
  6877. "ItemAliases" "hotd;whispering helm;lifesteal;orb"
  6878.  
  6879. // Special
  6880. //-------------------------------------------------------------------------------------------------------------
  6881. "AbilitySpecial"
  6882. {
  6883. "01"
  6884. {
  6885. "var_type" "FIELD_INTEGER"
  6886. "bonus_damage" "20"
  6887. }
  6888. "02"
  6889. {
  6890. "var_type" "FIELD_INTEGER"
  6891. "bonus_armor" "5"
  6892. }
  6893. "03"
  6894. {
  6895. "var_type" "FIELD_INTEGER"
  6896. "lifesteal_percent" "15"
  6897. }
  6898. "04"
  6899. {
  6900. "var_type" "FIELD_FLOAT"
  6901. "dominate_duration" "1200.0"
  6902. }
  6903. }
  6904. }
  6905.  
  6906. //=================================================================================================================
  6907. // Recipe: Maelstrom
  6908. //=================================================================================================================
  6909. "item_recipe_maelstrom"
  6910. {
  6911. // General
  6912. //-------------------------------------------------------------------------------------------------------------
  6913. "ID" "165" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6914. "AbilityName" "item_recipe_maelstrom"
  6915.  
  6916. // Item Info
  6917. //-------------------------------------------------------------------------------------------------------------
  6918. "ItemCost" "600"
  6919. "ItemShopTags" ""
  6920.  
  6921. // Recipe
  6922. //-------------------------------------------------------------------------------------------------------------
  6923. "ItemRecipe" "1"
  6924. "ItemResult" "item_maelstrom"
  6925. "ItemRequirements"
  6926. {
  6927. "01" "item_gloves;item_mithril_hammer"
  6928. }
  6929. }
  6930.  
  6931. //=================================================================================================================
  6932. // Maelstrom
  6933. //=================================================================================================================
  6934. "item_maelstrom"
  6935. {
  6936. // General
  6937. //-------------------------------------------------------------------------------------------------------------
  6938. "ID" "166" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6939. "AbilityName" "item_maelstrom"
  6940. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6941.  
  6942. // Item Info
  6943. //-------------------------------------------------------------------------------------------------------------
  6944. "ItemCost" "2700"
  6945. "ItemShopTags" "damage;attack_speed;unique"
  6946. "ItemQuality" "artifact"
  6947. "ItemAliases" "thunderclaw;orb"
  6948.  
  6949. // Special
  6950. //-------------------------------------------------------------------------------------------------------------
  6951. "AbilitySpecial"
  6952. {
  6953. "01"
  6954. {
  6955. "var_type" "FIELD_INTEGER"
  6956. "bonus_damage" "24"
  6957. }
  6958. "02"
  6959. {
  6960. "var_type" "FIELD_INTEGER"
  6961. "bonus_attack_speed" "25"
  6962. }
  6963. "03"
  6964. {
  6965. "var_type" "FIELD_INTEGER"
  6966. "chain_chance" "25"
  6967. }
  6968. "04"
  6969. {
  6970. "var_type" "FIELD_INTEGER"
  6971. "chain_strikes" "4"
  6972. }
  6973. "05"
  6974. {
  6975. "var_type" "FIELD_INTEGER"
  6976. "chain_damage" "120"
  6977. }
  6978. "06"
  6979. {
  6980. "var_type" "FIELD_INTEGER"
  6981. "chain_radius" "500"
  6982. }
  6983. "07"
  6984. {
  6985. "var_type" "FIELD_FLOAT"
  6986. "chain_delay" "0.25"
  6987. }
  6988. }
  6989. }
  6990.  
  6991. //=================================================================================================================
  6992. // Recipe: Desolator
  6993. //=================================================================================================================
  6994. "item_recipe_desolator"
  6995. {
  6996. // General
  6997. //-------------------------------------------------------------------------------------------------------------
  6998. "ID" "167" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6999. "AbilityName" "item_recipe_desolator"
  7000.  
  7001. // Item Info
  7002. //-------------------------------------------------------------------------------------------------------------
  7003. "ItemCost" "900"
  7004. "ItemShopTags" ""
  7005.  
  7006. // Recipe
  7007. //-------------------------------------------------------------------------------------------------------------
  7008. "ItemRecipe" "1"
  7009. "ItemResult" "item_desolator"
  7010. "ItemRequirements"
  7011. {
  7012. "01" "item_mithril_hammer;item_mithril_hammer"
  7013. }
  7014. }
  7015.  
  7016. //=================================================================================================================
  7017. // Desolator
  7018. //=================================================================================================================
  7019. "item_desolator"
  7020. {
  7021. // General
  7022. //-------------------------------------------------------------------------------------------------------------
  7023. "ID" "168" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7024. "AbilityName" "item_desolator"
  7025. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7026.  
  7027. // Item Info
  7028. //-------------------------------------------------------------------------------------------------------------
  7029. "ItemCost" "4100"
  7030. "ItemShopTags" "damage;unique"
  7031. "ItemQuality" "artifact"
  7032. "ItemAliases" "shieldbreaker;corruption;orb"
  7033.  
  7034. // Special
  7035. //-------------------------------------------------------------------------------------------------------------
  7036. "AbilitySpecial"
  7037. {
  7038. "01"
  7039. {
  7040. "var_type" "FIELD_INTEGER"
  7041. "bonus_damage" "60"
  7042. }
  7043. "02"
  7044. {
  7045. "var_type" "FIELD_INTEGER"
  7046. "corruption_armor" "-6"
  7047. }
  7048. "03"
  7049. {
  7050. "var_type" "FIELD_FLOAT"
  7051. "corruption_duration" "7.0"
  7052. }
  7053. }
  7054. }
  7055.  
  7056. //=================================================================================================================
  7057. // Recipe: Yasha
  7058. //=================================================================================================================
  7059. "item_recipe_yasha"
  7060. {
  7061. // General
  7062. //-------------------------------------------------------------------------------------------------------------
  7063. "ID" "169" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7064. "AbilityName" "item_recipe_yasha"
  7065.  
  7066. // Item Info
  7067. //-------------------------------------------------------------------------------------------------------------
  7068. "ItemCost" "700"
  7069. "ItemShopTags" ""
  7070.  
  7071. // Recipe
  7072. //-------------------------------------------------------------------------------------------------------------
  7073. "ItemRecipe" "1"
  7074. "ItemResult" "item_yasha"
  7075. "ItemRequirements"
  7076. {
  7077. "01" "item_blade_of_alacrity;item_boots_of_elves"
  7078. }
  7079. }
  7080.  
  7081. //=================================================================================================================
  7082. // Yasha
  7083. //=================================================================================================================
  7084. "item_yasha"
  7085. {
  7086. // General
  7087. //-------------------------------------------------------------------------------------------------------------
  7088. "ID" "170" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7089. "AbilityName" "item_yasha"
  7090. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7091.  
  7092. // Item Info
  7093. //-------------------------------------------------------------------------------------------------------------
  7094. "ItemCost" "2150"
  7095. "ItemShopTags" "agi;attack_speed;move_speed"
  7096. "ItemQuality" "artifact"
  7097. "ItemAliases" "firebrand"
  7098.  
  7099. // Special
  7100. //-------------------------------------------------------------------------------------------------------------
  7101. "AbilitySpecial"
  7102. {
  7103. "01"
  7104. {
  7105. "var_type" "FIELD_INTEGER"
  7106. "bonus_agility" "16"
  7107. }
  7108. "02"
  7109. {
  7110. "var_type" "FIELD_INTEGER"
  7111. "bonus_attack_speed" "15"
  7112. }
  7113. "03"
  7114. {
  7115. "var_type" "FIELD_INTEGER"
  7116. "movement_speed_percent_bonus" "10"
  7117. }
  7118. }
  7119. }
  7120.  
  7121. //=================================================================================================================
  7122. // Recipe: Mask of Madness
  7123. //=================================================================================================================
  7124. "item_recipe_mask_of_madness"
  7125. {
  7126. // General
  7127. //-------------------------------------------------------------------------------------------------------------
  7128. "ID" "171" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7129. "AbilityName" "item_recipe_mask_of_madness"
  7130.  
  7131. // Item Info
  7132. //-------------------------------------------------------------------------------------------------------------
  7133. "ItemCost" "1000"
  7134. "ItemShopTags" ""
  7135.  
  7136. // Recipe
  7137. //-------------------------------------------------------------------------------------------------------------
  7138. "ItemRecipe" "1"
  7139. "ItemResult" "item_mask_of_madness"
  7140. "ItemRequirements"
  7141. {
  7142. "01" "item_lifesteal"
  7143. }
  7144. }
  7145.  
  7146. //=================================================================================================================
  7147. // Mask of Madness
  7148. //=================================================================================================================
  7149. "item_mask_of_madness"
  7150. {
  7151. // General
  7152. //-------------------------------------------------------------------------------------------------------------
  7153. "ID" "172" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7154. "AbilityName" "item_mask_of_madness"
  7155. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  7156.  
  7157. // Stats
  7158. //-------------------------------------------------------------------------------------------------------------
  7159. "AbilityCooldown" "25.0"
  7160.  
  7161. // Item Info
  7162. //-------------------------------------------------------------------------------------------------------------
  7163. "AbilityManaCost" "25"
  7164. "ItemCost" "1900"
  7165. "ItemShopTags" "unique;hard_to_tag"
  7166. "ItemQuality" "artifact"
  7167. "ItemAliases" "mom;elder parasite;lifesteal;orb"
  7168.  
  7169. // Special
  7170. //-------------------------------------------------------------------------------------------------------------
  7171. "AbilitySpecial"
  7172. {
  7173. "01"
  7174. {
  7175. "var_type" "FIELD_INTEGER"
  7176. "lifesteal_percent" "17"
  7177. }
  7178. "02"
  7179. {
  7180. "var_type" "FIELD_INTEGER"
  7181. "berserk_bonus_attack_speed" "100"
  7182. }
  7183. "03"
  7184. {
  7185. "var_type" "FIELD_INTEGER"
  7186. "berserk_bonus_movement_speed" "25"
  7187. }
  7188. "04"
  7189. {
  7190. "var_type" "FIELD_INTEGER"
  7191. "berserk_extra_damage" "30"
  7192. }
  7193. "05"
  7194. {
  7195. "var_type" "FIELD_FLOAT"
  7196. "berserk_duration" "12.0"
  7197. }
  7198. }
  7199. }
  7200.  
  7201. //=================================================================================================================
  7202. // Recipe: Diffusal Blade
  7203. //=================================================================================================================
  7204. "item_recipe_diffusal_blade"
  7205. {
  7206. // General
  7207. //-------------------------------------------------------------------------------------------------------------
  7208. "ID" "173" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7209. "AbilityName" "item_recipe_diffusal_blade"
  7210.  
  7211. // Item Info
  7212. //-------------------------------------------------------------------------------------------------------------
  7213. "ItemCost" "850"
  7214. "ItemShopTags" ""
  7215.  
  7216. // Recipe
  7217. //-------------------------------------------------------------------------------------------------------------
  7218. "ItemRecipe" "1"
  7219. "ItemResult" "item_diffusal_blade"
  7220. "ItemRequirements"
  7221. {
  7222. "01" "item_blade_of_alacrity;item_blade_of_alacrity;item_robe"
  7223. }
  7224. }
  7225.  
  7226. "item_recipe_diffusal_blade_2"
  7227. {
  7228. // General
  7229. //-------------------------------------------------------------------------------------------------------------
  7230. "ID" "195" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7231. "AbilityName" "item_recipe_diffusal_blade_2"
  7232.  
  7233. // Item Info
  7234. //-------------------------------------------------------------------------------------------------------------
  7235. "ItemCost" "0"
  7236. "ItemShopTags" ""
  7237.  
  7238. // Recipe
  7239. //-------------------------------------------------------------------------------------------------------------
  7240. "ItemRecipe" "1"
  7241. "ItemResult" "item_diffusal_blade_2"
  7242. "ItemRequirements"
  7243. {
  7244. "01" "item_diffusal_blade;item_recipe_diffusal_blade"
  7245. }
  7246. }
  7247.  
  7248. //=================================================================================================================
  7249. // Diffusal Blade
  7250. //=================================================================================================================
  7251. "item_diffusal_blade"
  7252. {
  7253. // General
  7254. //-------------------------------------------------------------------------------------------------------------
  7255. "ID" "174" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7256. "AbilityName" "item_diffusal_blade"
  7257. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7258. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  7259. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  7260.  
  7261. // Stats
  7262. //-------------------------------------------------------------------------------------------------------------
  7263. "AbilityCastRange" "600"
  7264. "AbilityCastPoint" "0.0"
  7265. "AbilityCooldown" "12.0"
  7266. "AbilitySharedCooldown" "diffusal"
  7267.  
  7268. // Item Info
  7269. //-------------------------------------------------------------------------------------------------------------
  7270. "AbilityManaCost" "0"
  7271. "ItemCost" "3300"
  7272. "ItemShopTags" "agi;int;unique;hard_to_tag"
  7273. "ItemQuality" "artifact"
  7274. "ItemBaseLevel" "1"
  7275.  
  7276. "ItemPermanent" "1"
  7277. "ItemInitialCharges" "8"
  7278. "ItemRequiresCharges" "1"
  7279. "ItemDisplayCharges" "1"
  7280. "MaxUpgradeLevel" "2"
  7281. "ItemBaseLevel" "1"
  7282. "ItemAliases" "nullfire blade;orb;manaburn;mana burn"
  7283.  
  7284. // Special
  7285. //-------------------------------------------------------------------------------------------------------------
  7286. "AbilitySpecial"
  7287. {
  7288. "01"
  7289. {
  7290. "var_type" "FIELD_INTEGER"
  7291. "bonus_agility" "22 26"
  7292. }
  7293. "02"
  7294. {
  7295. "var_type" "FIELD_INTEGER"
  7296. "bonus_intellect" "6 10"
  7297. }
  7298. "03"
  7299. {
  7300. "var_type" "FIELD_INTEGER"
  7301. "initial_charges" "8"
  7302. }
  7303. "03"
  7304. {
  7305. "var_type" "FIELD_INTEGER"
  7306. "feedback_mana_burn" "20 36"
  7307. }
  7308. "04"
  7309. {
  7310. "var_type" "FIELD_INTEGER"
  7311. "purge_summoned_damage" "99999"
  7312. }
  7313. "05"
  7314. {
  7315. "var_type" "FIELD_INTEGER"
  7316. "purge_rate" "5"
  7317. }
  7318. "06"
  7319. {
  7320. "var_type" "FIELD_FLOAT"
  7321. "purge_root_duration" "3.0"
  7322. }
  7323. "07"
  7324. {
  7325. "var_type" "FIELD_FLOAT"
  7326. "purge_slow_duration" "4.0"
  7327. }
  7328. }
  7329. }
  7330.  
  7331. "item_diffusal_blade_2"
  7332. {
  7333. // General
  7334. //-------------------------------------------------------------------------------------------------------------
  7335. "ID" "196" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7336. "AbilityName" "item_diffusal_blade"
  7337. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7338. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  7339. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  7340.  
  7341. // Stats
  7342. //-------------------------------------------------------------------------------------------------------------
  7343. "AbilityCastRange" "600"
  7344. "AbilityCastPoint" "0.0"
  7345. "AbilityCooldown" "12.0"
  7346. "AbilitySharedCooldown" "diffusal"
  7347.  
  7348. // Item Info
  7349. //-------------------------------------------------------------------------------------------------------------
  7350. "AbilityManaCost" "0"
  7351. "ItemCost" "3300"
  7352. "ItemShopTags" "agi;int;unique;hard_to_tag"
  7353. "ItemQuality" "artifact"
  7354.  
  7355. "ItemPermanent" "1"
  7356. "ItemInitialCharges" "8"
  7357. "ItemRequiresCharges" "1"
  7358. "ItemDisplayCharges" "1"
  7359. "MaxUpgradeLevel" "2"
  7360. "ItemBaseLevel" "2"
  7361. "ItemAliases" "nullfire blade;orb;manaburn;mana burn"
  7362.  
  7363. // Special
  7364. //-------------------------------------------------------------------------------------------------------------
  7365. "AbilitySpecial"
  7366. {
  7367. "01"
  7368. {
  7369. "var_type" "FIELD_INTEGER"
  7370. "bonus_agility" "22 26"
  7371. }
  7372. "02"
  7373. {
  7374. "var_type" "FIELD_INTEGER"
  7375. "bonus_intellect" "6 10"
  7376. }
  7377. "03"
  7378. {
  7379. "var_type" "FIELD_INTEGER"
  7380. "initial_charges" "8"
  7381. }
  7382. "03"
  7383. {
  7384. "var_type" "FIELD_INTEGER"
  7385. "feedback_mana_burn" "20 36"
  7386. }
  7387. "04"
  7388. {
  7389. "var_type" "FIELD_INTEGER"
  7390. "purge_summoned_damage" "99999"
  7391. }
  7392. "05"
  7393. {
  7394. "var_type" "FIELD_INTEGER"
  7395. "purge_rate" "5"
  7396. }
  7397. "06"
  7398. {
  7399. "var_type" "FIELD_FLOAT"
  7400. "purge_root_duration" "3.0"
  7401. }
  7402. "07"
  7403. {
  7404. "var_type" "FIELD_FLOAT"
  7405. "purge_slow_duration" "4.0"
  7406. }
  7407. }
  7408. }
  7409.  
  7410. //=================================================================================================================
  7411. // Recipe: Ethereal Blade
  7412. //=================================================================================================================
  7413. "item_recipe_ethereal_blade"
  7414. {
  7415. // General
  7416. //-------------------------------------------------------------------------------------------------------------
  7417. "ID" "175" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7418. "AbilityName" "item_recipe_ethereal_blade"
  7419.  
  7420. // Item Info
  7421. //-------------------------------------------------------------------------------------------------------------
  7422. "ItemCost" "0"
  7423. "ItemShopTags" ""
  7424.  
  7425. // Recipe
  7426. //-------------------------------------------------------------------------------------------------------------
  7427. "ItemRecipe" "1"
  7428. "ItemResult" "item_ethereal_blade"
  7429. "ItemRequirements"
  7430. {
  7431. "01" "item_eagle;item_ghost"
  7432. }
  7433. }
  7434.  
  7435. //=================================================================================================================
  7436. // Ethereal Blade
  7437. //=================================================================================================================
  7438. "item_ethereal_blade"
  7439. {
  7440. // General
  7441. //-------------------------------------------------------------------------------------------------------------
  7442. "ID" "176" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7443. "AbilityName" "item_ethereal_blade"
  7444. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7445. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  7446. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM"
  7447.  
  7448. // Stats
  7449. //-------------------------------------------------------------------------------------------------------------
  7450. "AbilityCastRange" "800"
  7451. "AbilityCastPoint" "0.0"
  7452. "AbilityCooldown" "30.0"
  7453. "AbilitySharedCooldown" "ethereal"
  7454.  
  7455. // Item Info
  7456. //-------------------------------------------------------------------------------------------------------------
  7457. "AbilityManaCost" "50"
  7458. "ItemCost" "4900"
  7459. "ItemShopTags" "agi;str;int;hard_to_tag"
  7460. "ItemQuality" "epic"
  7461. "ItemDisassemblable" "1"
  7462. "ItemAliases" "eb"
  7463.  
  7464. // Special
  7465. //-------------------------------------------------------------------------------------------------------------
  7466. "AbilitySpecial"
  7467. {
  7468. "01"
  7469. {
  7470. "var_type" "FIELD_INTEGER"
  7471. "bonus_agility" "40"
  7472. }
  7473. "02"
  7474. {
  7475. "var_type" "FIELD_INTEGER"
  7476. "bonus_strength" "10"
  7477. }
  7478. "03"
  7479. {
  7480. "var_type" "FIELD_INTEGER"
  7481. "bonus_intellect" "10"
  7482. }
  7483. "03"
  7484. {
  7485. "var_type" "FIELD_INTEGER"
  7486. "blast_movement_slow" "-60"
  7487. }
  7488. "04"
  7489. {
  7490. "var_type" "FIELD_FLOAT"
  7491. "duration" "3.0"
  7492. }
  7493. "05"
  7494. {
  7495. "var_type" "FIELD_FLOAT"
  7496. "blast_agility_multiplier" "2.0"
  7497. }
  7498. "06"
  7499. {
  7500. "var_type" "FIELD_INTEGER"
  7501. "blast_damage_base" "75"
  7502. }
  7503. "07"
  7504. {
  7505. "var_type" "FIELD_INTEGER"
  7506. "ethereal_damage_bonus" "40"
  7507. }
  7508. }
  7509. }
  7510.  
  7511. //=================================================================================================================
  7512. // Recipe: Soul Ring
  7513. //=================================================================================================================
  7514. "item_recipe_soul_ring"
  7515. {
  7516. // General
  7517. //-------------------------------------------------------------------------------------------------------------
  7518. "ID" "177" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7519. "AbilityName" "item_recipe_soul_ring"
  7520.  
  7521. // Item Info
  7522. //-------------------------------------------------------------------------------------------------------------
  7523. "ItemCost" "125"
  7524. "ItemShopTags" ""
  7525.  
  7526. // Recipe
  7527. //-------------------------------------------------------------------------------------------------------------
  7528. "ItemRecipe" "1"
  7529. "ItemResult" "item_soul_ring"
  7530. "ItemRequirements"
  7531. {
  7532. "01" "item_ring_of_regen;item_sobi_mask"
  7533. }
  7534. }
  7535.  
  7536. //=================================================================================================================
  7537. // Soul Ring
  7538. //=================================================================================================================
  7539. "item_soul_ring"
  7540. {
  7541. // General
  7542. //-------------------------------------------------------------------------------------------------------------
  7543. "ID" "178" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7544. "AbilityName" "item_soul_ring"
  7545. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  7546.  
  7547. // Stats
  7548. //-------------------------------------------------------------------------------------------------------------
  7549. "AbilityCooldown" "25.0"
  7550.  
  7551. // Item Info
  7552. //-------------------------------------------------------------------------------------------------------------
  7553. "AbilityManaCost" "0"
  7554. "ItemCost" "800"
  7555. "ItemShopTags" "regen_health;boost_mana"
  7556. "ItemQuality" "common"
  7557. "ItemAliases" "blood chalice"
  7558.  
  7559. // Sound
  7560. //-------------------------------------------------------------------------------------------------------------
  7561. "UIPickupSound" "Item.PickUpRingShop"
  7562. "UIDropSound" "Item.DropRingShop"
  7563. "WorldDropSound" "Item.DropRingWorld"
  7564.  
  7565. // Special
  7566. //-------------------------------------------------------------------------------------------------------------
  7567. "AbilitySpecial"
  7568. {
  7569. "01"
  7570. {
  7571. "var_type" "FIELD_INTEGER"
  7572. "health_regen" "3"
  7573. }
  7574. "02"
  7575. {
  7576. "var_type" "FIELD_INTEGER"
  7577. "mana_regen" "50"
  7578. }
  7579. "03"
  7580. {
  7581. "var_type" "FIELD_INTEGER"
  7582. "health_sacrifice" "150"
  7583. }
  7584. "03"
  7585. {
  7586. "var_type" "FIELD_INTEGER"
  7587. "mana_gain" "150"
  7588. }
  7589. "04"
  7590. {
  7591. "var_type" "FIELD_FLOAT"
  7592. "duration" "10.0"
  7593. }
  7594. }
  7595. }
  7596.  
  7597.  
  7598. //=================================================================================================================
  7599. // Recipe: Arcane Boots
  7600. //=================================================================================================================
  7601. "item_recipe_arcane_boots"
  7602. {
  7603. // General
  7604. //-------------------------------------------------------------------------------------------------------------
  7605. "ID" "179" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7606. "AbilityName" "item_recipe_arcane_boots"
  7607.  
  7608. // Item Info
  7609. //-------------------------------------------------------------------------------------------------------------
  7610. "ItemCost" "0"
  7611. "ItemShopTags" ""
  7612.  
  7613. // Recipe
  7614. //-------------------------------------------------------------------------------------------------------------
  7615. "ItemRecipe" "1"
  7616. "ItemResult" "item_arcane_boots"
  7617. "ItemRequirements"
  7618. {
  7619. "01" "item_energy_booster;item_boots"
  7620. }
  7621. }
  7622.  
  7623. //=================================================================================================================
  7624. // Arcane Boots
  7625. //=================================================================================================================
  7626. "item_arcane_boots"
  7627. {
  7628. // General
  7629. //-------------------------------------------------------------------------------------------------------------
  7630. "ID" "180" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7631. "AbilityName" "item_arcane_boots"
  7632. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7633.  
  7634. // Stats
  7635. //-------------------------------------------------------------------------------------------------------------
  7636. "AbilityCooldown" "45.0"
  7637.  
  7638. // Item Info
  7639. //-------------------------------------------------------------------------------------------------------------
  7640. "AbilityManaCost" "25"
  7641. "ItemCost" "1500"
  7642. "ItemShopTags" "move_speed;boost_mana;mana_pool"
  7643. "ItemQuality" "rare"
  7644. "ItemDisassemblable" "1"
  7645. "ItemAliases" "ring of sorcery;mana boots"
  7646.  
  7647. // Special
  7648. //-------------------------------------------------------------------------------------------------------------
  7649. "AbilitySpecial"
  7650. {
  7651. "01"
  7652. {
  7653. "var_type" "FIELD_INTEGER"
  7654. "bonus_movement" "65"
  7655. }
  7656. "02"
  7657. {
  7658. "var_type" "FIELD_INTEGER"
  7659. "bonus_mana" "250"
  7660. }
  7661. "03"
  7662. {
  7663. "var_type" "FIELD_INTEGER"
  7664. "replenish_radius" "600"
  7665. }
  7666. "04"
  7667. {
  7668. "var_type" "FIELD_INTEGER"
  7669. "replenish_amount" "135"
  7670. }
  7671. }
  7672. }
  7673.  
  7674. //=================================================================================================================
  7675. // Orb of Venom
  7676. //=================================================================================================================
  7677. "item_orb_of_venom"
  7678. {
  7679. // General
  7680. //-------------------------------------------------------------------------------------------------------------
  7681. "ID" "181" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7682. "AbilityName" "item_orb_of_venom"
  7683. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7684.  
  7685. // Item Info
  7686. //-------------------------------------------------------------------------------------------------------------
  7687. "ItemCost" "350"
  7688. "ItemShopTags" "hard_to_tag"
  7689. "ItemQuality" "secret_shop"
  7690. "SecretShop" "1"
  7691. "SideShop" "1"
  7692.  
  7693. // Special
  7694. //-------------------------------------------------------------------------------------------------------------
  7695. "AbilitySpecial"
  7696. {
  7697. "01"
  7698. {
  7699. "var_type" "FIELD_INTEGER"
  7700. "poison_movement_speed_melee" "-12"
  7701. }
  7702. "02"
  7703. {
  7704. "var_type" "FIELD_INTEGER"
  7705. "poison_movement_speed_range" "-4"
  7706. }
  7707. "03"
  7708. {
  7709. "var_type" "FIELD_FLOAT"
  7710. "poison_duration" "4.0"
  7711. }
  7712. "04"
  7713. {
  7714. "var_type" "FIELD_FLOAT"
  7715. "poison_damage" "3.0"
  7716. }
  7717. }
  7718. }
  7719.  
  7720. //=================================================================================================================
  7721. // Recipe: Ancient Janggo of Endurance
  7722. //=================================================================================================================
  7723. "item_recipe_ancient_janggo"
  7724. {
  7725. // General
  7726. //-------------------------------------------------------------------------------------------------------------
  7727. "ID" "184" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7728. "AbilityName" "item_recipe_ancient_janggo"
  7729.  
  7730. // Item Info
  7731. //-------------------------------------------------------------------------------------------------------------
  7732. "ItemCost" "750"
  7733. "ItemShopTags" ""
  7734.  
  7735. // Recipe
  7736. //-------------------------------------------------------------------------------------------------------------
  7737. "ItemRecipe" "1"
  7738. "ItemResult" "item_ancient_janggo"
  7739. "ItemRequirements"
  7740. {
  7741. "01" "item_bracer;item_robe"
  7742. "02" "item_ancient_janggo"
  7743. }
  7744. }
  7745.  
  7746. //=================================================================================================================
  7747. // Ancient Janggo of Endurance
  7748. //=================================================================================================================
  7749. "item_ancient_janggo"
  7750. {
  7751. // General
  7752. //-------------------------------------------------------------------------------------------------------------
  7753. "ID" "185" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7754. "AbilityName" "item_ancient_janggo"
  7755. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7756. "ItemPermanent" "1"
  7757.  
  7758. // Stats
  7759. //-------------------------------------------------------------------------------------------------------------
  7760. "AbilityCooldown" "30.0"
  7761.  
  7762. // Item Info
  7763. //-------------------------------------------------------------------------------------------------------------
  7764. "ItemCost" "1725"
  7765. "ItemShopTags" "str;agi;int;damage;move_speed;attack_speed;hard_to_tag"
  7766. "ItemQuality" "rare"
  7767. "ItemInitialCharges" "4"
  7768. "ItemDisplayCharges" "1"
  7769.  
  7770. // Special
  7771. //-------------------------------------------------------------------------------------------------------------
  7772. "AbilitySpecial"
  7773. {
  7774. "01"
  7775. {
  7776. "var_type" "FIELD_INTEGER"
  7777. "bonus_stats" "9"
  7778. }
  7779. "02"
  7780. {
  7781. "var_type" "FIELD_INTEGER"
  7782. "bonus_damage" "9"
  7783. }
  7784. "03"
  7785. {
  7786. "var_type" "FIELD_INTEGER"
  7787. "bonus_aura_attack_speed_pct" "5"
  7788. }
  7789. "04"
  7790. {
  7791. "var_type" "FIELD_INTEGER"
  7792. "bonus_aura_movement_speed_pct" "5"
  7793. }
  7794. "05"
  7795. {
  7796. "var_type" "FIELD_INTEGER"
  7797. "bonus_attack_speed_pct" "10"
  7798. }
  7799. "06"
  7800. {
  7801. "var_type" "FIELD_INTEGER"
  7802. "bonus_movement_speed_pct" "10"
  7803. }
  7804. "07"
  7805. {
  7806. "var_type" "FIELD_FLOAT"
  7807. "duration" "6.0"
  7808. }
  7809. "08"
  7810. {
  7811. "var_type" "FIELD_INTEGER"
  7812. "radius" "900"
  7813. }
  7814. }
  7815. }
  7816.  
  7817. //=================================================================================================================
  7818. // Recipe: Medallion of Courage
  7819. //=================================================================================================================
  7820. "item_recipe_medallion_of_courage"
  7821. {
  7822. // General
  7823. //-------------------------------------------------------------------------------------------------------------
  7824. "ID" "186" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7825. "AbilityName" "item_recipe_medallion_of_courage"
  7826.  
  7827. // Item Info
  7828. //-------------------------------------------------------------------------------------------------------------
  7829. "ItemCost" "200"
  7830. "ItemShopTags" ""
  7831.  
  7832. // Recipe
  7833. //-------------------------------------------------------------------------------------------------------------
  7834. "ItemRecipe" "1"
  7835. "ItemResult" "item_medallion_of_courage"
  7836. "ItemRequirements"
  7837. {
  7838. "01" "item_chainmail;item_sobi_mask"
  7839. }
  7840. }
  7841.  
  7842. //=================================================================================================================
  7843. // Medallion of Courage
  7844. //=================================================================================================================
  7845. "item_medallion_of_courage"
  7846. {
  7847. // General
  7848. //-------------------------------------------------------------------------------------------------------------
  7849. "ID" "187" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7850. "AbilityName" "item_medallion_of_courage"
  7851. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7852. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  7853. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_MECHANICAL"
  7854.  
  7855. // Stats
  7856. //-------------------------------------------------------------------------------------------------------------
  7857. "AbilityCastRange" "800"
  7858. "AbilityCooldown" "7.0"
  7859.  
  7860. // Item Info
  7861. //-------------------------------------------------------------------------------------------------------------
  7862. "ItemCost" "1075"
  7863. "ItemShopTags" "armor;regen_mana;hard_to_tag"
  7864. "ItemQuality" "rare"
  7865.  
  7866. // Special
  7867. //-------------------------------------------------------------------------------------------------------------
  7868. "AbilitySpecial"
  7869. {
  7870. "01"
  7871. {
  7872. "var_type" "FIELD_INTEGER"
  7873. "bonus_armor" "6"
  7874. }
  7875. "02"
  7876. {
  7877. "var_type" "FIELD_INTEGER"
  7878. "bonus_mana_regen_pct" "50"
  7879. }
  7880. "03"
  7881. {
  7882. "var_type" "FIELD_INTEGER"
  7883. "armor_reduction" "-6"
  7884. }
  7885. "04"
  7886. {
  7887. "var_type" "FIELD_FLOAT"
  7888. "duration" "7.0"
  7889. }
  7890. }
  7891. }
  7892.  
  7893. //=================================================================================================================
  7894. // Smoke of Deceit
  7895. //=================================================================================================================
  7896. "item_smoke_of_deceit"
  7897. {
  7898. // General
  7899. //-------------------------------------------------------------------------------------------------------------
  7900. "ID" "188" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7901. "AbilityName" "item_smoke_of_deceit"
  7902. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7903.  
  7904. // Stats
  7905. //-------------------------------------------------------------------------------------------------------------
  7906. "AbilityCooldown" "90.0"
  7907.  
  7908. // Item Info
  7909. //-------------------------------------------------------------------------------------------------------------
  7910. "ItemCost" "100"
  7911. "ItemShopTags" "consumable"
  7912. "ItemQuality" "consumable"
  7913. "ItemStackable" "1"
  7914. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  7915. "ItemPermanent" "0"
  7916. "ItemInitialCharges" "1"
  7917. "ItemDisplayCharges" "1"
  7918. "ItemStockMax" "3"
  7919. "ItemStockTime" "720.0"
  7920. "ItemDeclaresPurchase" "1"
  7921.  
  7922. // Special
  7923. //-------------------------------------------------------------------------------------------------------------
  7924. "AbilitySpecial"
  7925. {
  7926. "01"
  7927. {
  7928. "var_type" "FIELD_INTEGER"
  7929. "application_radius" "1200"
  7930. }
  7931. "02"
  7932. {
  7933. "var_type" "FIELD_INTEGER"
  7934. "visibility_radius" "1025"
  7935. }
  7936. "03"
  7937. {
  7938. "var_type" "FIELD_INTEGER"
  7939. "bonus_movement_speed" "15"
  7940. }
  7941. "04"
  7942. {
  7943. "var_type" "FIELD_FLOAT"
  7944. "duration" "40.0"
  7945. }
  7946. }
  7947. }
  7948.  
  7949. //=================================================================================================================
  7950. // Recipe: Veil of Discord
  7951. //=================================================================================================================
  7952. "item_recipe_veil_of_discord"
  7953. {
  7954. // General
  7955. //-------------------------------------------------------------------------------------------------------------
  7956. "ID" "189" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7957. "AbilityName" "item_recipe_veil_of_discord"
  7958.  
  7959. // Item Info
  7960. //-------------------------------------------------------------------------------------------------------------
  7961. "ItemCost" "1250"
  7962. "ItemShopTags" ""
  7963.  
  7964. // Recipe
  7965. //-------------------------------------------------------------------------------------------------------------
  7966. "ItemRecipe" "1"
  7967. "ItemResult" "item_veil_of_discord"
  7968. "ItemRequirements"
  7969. {
  7970. "01" "item_helm_of_iron_will;item_robe"
  7971. }
  7972. }
  7973.  
  7974. //=================================================================================================================
  7975. // Veil of discord
  7976. //=================================================================================================================
  7977. "item_veil_of_discord"
  7978. {
  7979. // General
  7980. //-------------------------------------------------------------------------------------------------------------
  7981. "ID" "190" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7982. "AbilityName" "item_veil_of_discord"
  7983. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_POINT"
  7984.  
  7985. // Stats
  7986. //-------------------------------------------------------------------------------------------------------------
  7987. "AbilityCooldown" "30"
  7988. "AbilityCastRange" "875"
  7989. "AbilityCastPoint" "0.0"
  7990.  
  7991.  
  7992. // Item Info
  7993. //-------------------------------------------------------------------------------------------------------------
  7994. "AbilityManaCost" "75"
  7995. "ItemCost" "2650"
  7996. "ItemShopTags" "int;armor;regen_health;hard_to_tag"
  7997. "ItemQuality" "rare"
  7998. "ItemAliases" "vod"
  7999.  
  8000. // Special
  8001. //-------------------------------------------------------------------------------------------------------------
  8002. "AbilitySpecial"
  8003. {
  8004. "01"
  8005. {
  8006. "var_type" "FIELD_INTEGER"
  8007. "bonus_armor" "5"
  8008. }
  8009. "02"
  8010. {
  8011. "var_type" "FIELD_INTEGER"
  8012. "bonus_intellect" "12"
  8013. }
  8014. "03"
  8015. {
  8016. "var_type" "FIELD_INTEGER"
  8017. "bonus_health_regen" "5"
  8018. }
  8019. "04"
  8020. {
  8021. "var_type" "FIELD_INTEGER"
  8022. "debuff_radius" "500"
  8023. }
  8024. "05"
  8025. {
  8026. "var_type" "FIELD_INTEGER"
  8027. "resist_debuff" "25"
  8028. }
  8029. "06"
  8030. {
  8031. "var_type" "FIELD_FLOAT"
  8032. "resist_debuff_duration" "15.0"
  8033. }
  8034. }
  8035. }
  8036.  
  8037. //=================================================================================================================
  8038. // Recipe: Rod of Atos
  8039. //=================================================================================================================
  8040. "item_recipe_rod_of_atos"
  8041. {
  8042. // General
  8043. //-------------------------------------------------------------------------------------------------------------
  8044. "ID" "205" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8045. "AbilityName" "item_recipe_rod_of_atos"
  8046.  
  8047. // Item Info
  8048. //-------------------------------------------------------------------------------------------------------------
  8049. "ItemCost" "0"
  8050. "ItemShopTags" ""
  8051.  
  8052. // Recipe
  8053. //-------------------------------------------------------------------------------------------------------------
  8054. "ItemRecipe" "1"
  8055. "ItemResult" "item_rod_of_atos"
  8056. "ItemRequirements"
  8057. {
  8058. "01" "item_staff_of_wizardry;item_staff_of_wizardry;item_vitality_booster"
  8059. }
  8060. }
  8061.  
  8062.  
  8063. //=================================================================================================================
  8064. // Rod of Atos
  8065. //=================================================================================================================
  8066. "item_rod_of_atos"
  8067. {
  8068. // General
  8069. //-------------------------------------------------------------------------------------------------------------
  8070. "ID" "206" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8071. "AbilityName" "item_rod_of_atos"
  8072. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8073. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8074. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8075.  
  8076. // Stats
  8077. //-------------------------------------------------------------------------------------------------------------
  8078. "AbilityCooldown" "20"
  8079. "AbilityCastRange" "800"
  8080. "AbilityCastPoint" "0.0"
  8081.  
  8082.  
  8083. // Item Info
  8084. //-------------------------------------------------------------------------------------------------------------
  8085. "AbilityManaCost" "50"
  8086. "ItemCost" "3100"
  8087. "ItemShopTags" "int;armor;regen_health"
  8088. "ItemQuality" "rare"
  8089.  
  8090. // Special
  8091. //-------------------------------------------------------------------------------------------------------------
  8092. "AbilitySpecial"
  8093. {
  8094. "01"
  8095. {
  8096. "var_type" "FIELD_INTEGER"
  8097. "bonus_intellect" "25"
  8098. }
  8099. "02"
  8100. {
  8101. "var_type" "FIELD_INTEGER"
  8102. "bonus_health" "250"
  8103. }
  8104. "03"
  8105. {
  8106. "var_type" "FIELD_INTEGER"
  8107. "slow" "-50"
  8108. }
  8109. "04"
  8110. {
  8111. "var_type" "FIELD_FLOAT"
  8112. "duration" "4"
  8113. }
  8114. }
  8115. }
  8116.  
  8117.  
  8118. //=================================================================================================================
  8119. // Recipe: Abyssal Blade
  8120. //=================================================================================================================
  8121. "item_recipe_abyssal_blade"
  8122. {
  8123. // General
  8124. //-------------------------------------------------------------------------------------------------------------
  8125. "ID" "207" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8126. "AbilityName" "item_recipe_abyssal_blade"
  8127.  
  8128. // Item Info
  8129. //-------------------------------------------------------------------------------------------------------------
  8130. "ItemCost" "0"
  8131. "ItemShopTags" ""
  8132.  
  8133.  
  8134. // Recipe
  8135. //-------------------------------------------------------------------------------------------------------------
  8136. "ItemRecipe" "1"
  8137. "ItemResult" "item_abyssal_blade"
  8138. "ItemRequirements"
  8139. {
  8140. "01" "item_basher;item_relic"
  8141. }
  8142. }
  8143.  
  8144.  
  8145. //=================================================================================================================
  8146. // Abyssal Blade
  8147. //=================================================================================================================
  8148. "item_abyssal_blade"
  8149. {
  8150. // General
  8151. //-------------------------------------------------------------------------------------------------------------
  8152. "ID" "208" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8153. "AbilityName" "item_abyssal_blade"
  8154. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8155. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8156. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8157. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES"
  8158.  
  8159. // Stats
  8160. //-------------------------------------------------------------------------------------------------------------
  8161. "AbilityCooldown" "60"
  8162. "AbilityCastRange" "140"
  8163. "AbilityCastPoint" "0.0"
  8164.  
  8165.  
  8166. // Item Info
  8167. //-------------------------------------------------------------------------------------------------------------
  8168. "AbilityManaCost" "150"
  8169. "ItemCost" "6750"
  8170. "ItemShopTags" "damage;str;hard_to_tag"
  8171. "ItemQuality" "epic"
  8172.  
  8173. // Special
  8174. //-------------------------------------------------------------------------------------------------------------
  8175. "AbilitySpecial"
  8176. {
  8177. "01"
  8178. {
  8179. "var_type" "FIELD_INTEGER"
  8180. "bonus_damage" "100"
  8181. }
  8182. "02"
  8183. {
  8184. "var_type" "FIELD_INTEGER"
  8185. "bonus_strength" "10"
  8186. }
  8187. "03"
  8188. {
  8189. "var_type" "FIELD_INTEGER"
  8190. "bash_chance_melee" "25"
  8191. }
  8192. "04"
  8193. {
  8194. "var_type" "FIELD_INTEGER"
  8195. "bash_chance_ranged" "10"
  8196. }
  8197. "05"
  8198. {
  8199. "var_type" "FIELD_FLOAT"
  8200. "bash_duration" "1.4"
  8201. }
  8202. "06"
  8203. {
  8204. "var_type" "FIELD_FLOAT"
  8205. "bash_cooldown" "2.0"
  8206. }
  8207. "07"
  8208. {
  8209. "var_type" "FIELD_FLOAT"
  8210. "stun_duration" "2"
  8211. }
  8212.  
  8213. }
  8214. }
  8215.  
  8216.  
  8217. //=================================================================================================================
  8218. // Recipe: Heaven's Halberd
  8219. //=================================================================================================================
  8220. "item_recipe_heavens_halberd"
  8221. {
  8222. // General
  8223. //-------------------------------------------------------------------------------------------------------------
  8224. "ID" "209" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8225. "AbilityName" "item_recipe_heavens_halberd"
  8226.  
  8227. // Item Info
  8228. //-------------------------------------------------------------------------------------------------------------
  8229. "ItemCost" "0"
  8230. "ItemShopTags" ""
  8231.  
  8232. // Recipe
  8233. //-------------------------------------------------------------------------------------------------------------
  8234. "ItemRecipe" "1"
  8235. "ItemResult" "item_heavens_halberd"
  8236. "ItemRequirements"
  8237. {
  8238. "01" "item_sange;item_talisman_of_evasion"
  8239. }
  8240. }
  8241.  
  8242.  
  8243. //=================================================================================================================
  8244. // Heaven's Halberd
  8245. //=================================================================================================================
  8246. "item_heavens_halberd"
  8247. {
  8248. // General
  8249. //-------------------------------------------------------------------------------------------------------------
  8250. "ID" "210" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8251. "AbilityName" "item_heavens_halberd"
  8252. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8253. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8254. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8255.  
  8256. // Stats
  8257. //-------------------------------------------------------------------------------------------------------------
  8258. "AbilityCooldown" "30"
  8259. "AbilityCastRange" "600"
  8260. "AbilityCastPoint" "0.0"
  8261.  
  8262.  
  8263. // Item Info
  8264. //-------------------------------------------------------------------------------------------------------------
  8265. "AbilityManaCost" "100"
  8266. "ItemCost" "3950"
  8267. "ItemShopTags" "str;damage;evasion"
  8268. "ItemQuality" "artifact"
  8269.  
  8270. // Special
  8271. //-------------------------------------------------------------------------------------------------------------
  8272. "AbilitySpecial"
  8273. {
  8274.  
  8275. "01"
  8276. {
  8277. "var_type" "FIELD_INTEGER"
  8278. "bonus_damage" "25"
  8279. }
  8280. "02"
  8281. {
  8282. "var_type" "FIELD_INTEGER"
  8283. "bonus_strength" "20"
  8284. }
  8285. "03"
  8286. {
  8287. "var_type" "FIELD_INTEGER"
  8288. "maim_chance" "15"
  8289. }
  8290. "04"
  8291. {
  8292. "var_type" "FIELD_INTEGER"
  8293. "maim_movement_speed" "-20"
  8294. }
  8295. "05"
  8296. {
  8297. "var_type" "FIELD_INTEGER"
  8298. "maim_attack_speed" "-20"
  8299. }
  8300. "06"
  8301. {
  8302. "var_type" "FIELD_FLOAT"
  8303. "maim_duration" "4.0"
  8304. }
  8305. "07"
  8306. {
  8307. "var_type" "FIELD_INTEGER"
  8308. "bonus_evasion" "25"
  8309. }
  8310. "08"
  8311. {
  8312. "var_type" "FIELD_FLOAT"
  8313. "disarm_range" "4.0"
  8314. }
  8315. "09"
  8316. {
  8317. "var_type" "FIELD_FLOAT"
  8318. "disarm_melee" "3.0"
  8319. }
  8320.  
  8321. }
  8322. }
  8323.  
  8324. //=================================================================================================================
  8325. // Recipe: Ring of Aquila
  8326. //=================================================================================================================
  8327. "item_recipe_ring_of_aquila"
  8328. {
  8329. // General
  8330. //-------------------------------------------------------------------------------------------------------------
  8331. "ID" "211" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8332. "AbilityName" "item_recipe_ring_of_aquila"
  8333.  
  8334. // Item Info
  8335. //-------------------------------------------------------------------------------------------------------------
  8336. "ItemCost" "0"
  8337. "ItemShopTags" ""
  8338.  
  8339. // Recipe
  8340. //-------------------------------------------------------------------------------------------------------------
  8341. "ItemRecipe" "1"
  8342. "ItemResult" "item_ring_of_aquila"
  8343. "ItemRequirements"
  8344. {
  8345. "01" "item_wraith_band;item_ring_of_basilius"
  8346. }
  8347. }
  8348.  
  8349. //=================================================================================================================
  8350. // Ring of Aquila
  8351. //=================================================================================================================
  8352. "item_ring_of_aquila"
  8353. {
  8354. // General
  8355. //-------------------------------------------------------------------------------------------------------------
  8356. "ID" "212" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8357. "AbilityName" "item_ring_of_aquila"
  8358. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  8359.  
  8360. // Item Info
  8361. //-------------------------------------------------------------------------------------------------------------
  8362. "ItemCost" "985"
  8363. "ItemShopTags" ""
  8364. "ItemQuality" "rare"
  8365. "ItemShareability" ""
  8366. "ItemDisassemblable" "1"
  8367. "ItemAliases" "roa"
  8368.  
  8369. // Sound
  8370. //-------------------------------------------------------------------------------------------------------------
  8371. "UIPickupSound" "Item.PickUpRingShop"
  8372. "UIDropSound" "Item.DropRingShop"
  8373. "WorldDropSound" "Item.DropRingWorld"
  8374.  
  8375. // Special
  8376. //-------------------------------------------------------------------------------------------------------------
  8377. "AbilitySpecial"
  8378. {
  8379. "01"
  8380. {
  8381. "var_type" "FIELD_INTEGER"
  8382. "bonus_damage" "9"
  8383. }
  8384. "02"
  8385. {
  8386. "var_type" "FIELD_INTEGER"
  8387. "bonus_all_stats" "3"
  8388. }
  8389. "03"
  8390. {
  8391. "var_type" "FIELD_INTEGER"
  8392. "bonus_agility" "3"
  8393. }
  8394. "04"
  8395. {
  8396. "var_type" "FIELD_INTEGER"
  8397. "bonus_armor" "1"
  8398. }
  8399. "05"
  8400. {
  8401. "var_type" "FIELD_INTEGER"
  8402. "aura_radius" "900"
  8403. }
  8404. "06"
  8405. {
  8406. "var_type" "FIELD_FLOAT"
  8407. "aura_mana_regen" "0.65"
  8408. }
  8409. "07"
  8410. {
  8411. "var_type" "FIELD_INTEGER"
  8412. "aura_bonus_armor" "2"
  8413. }
  8414. }
  8415. }
  8416.  
  8417. //=================================================================================================================
  8418. // Recipe: Tranquil Boots
  8419. //=================================================================================================================
  8420. "item_recipe_tranquil_boots"
  8421. {
  8422. // General
  8423. //-------------------------------------------------------------------------------------------------------------
  8424. "ID" "213" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8425. "AbilityName" "item_recipe_tranquil_boots"
  8426.  
  8427. // Item Info
  8428. //-------------------------------------------------------------------------------------------------------------
  8429. "ItemCost" "0"
  8430. "ItemShopTags" ""
  8431.  
  8432. // Recipe
  8433. //-------------------------------------------------------------------------------------------------------------
  8434. "ItemRecipe" "1"
  8435. "ItemResult" "item_tranquil_boots"
  8436. "ItemRequirements"
  8437. {
  8438. "01" "item_boots;item_ring_of_protection;item_ring_of_regen"
  8439. }
  8440. }
  8441.  
  8442. //=================================================================================================================
  8443. // Tranquil Boots
  8444. //=================================================================================================================
  8445. "item_tranquil_boots"
  8446. {
  8447. // General
  8448. //-------------------------------------------------------------------------------------------------------------
  8449. "ID" "214" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8450. "AbilityName" "item_tranquil_boots"
  8451. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  8452.  
  8453. // Stats
  8454. //-------------------------------------------------------------------------------------------------------------
  8455. "AbilityCooldown" "40.0"
  8456. "AbilityManaCost" "25"
  8457.  
  8458. // Item Info
  8459. //-------------------------------------------------------------------------------------------------------------
  8460. "ItemCost" "1025"
  8461. "ItemShopTags" "move_speed;regen_health;armor"
  8462. "ItemQuality" "rare"
  8463.  
  8464. // Special
  8465. //-------------------------------------------------------------------------------------------------------------
  8466. "AbilitySpecial"
  8467. {
  8468. "01"
  8469. {
  8470. "var_type" "FIELD_INTEGER"
  8471. "bonus_movement_speed" "80"
  8472. }
  8473. "02"
  8474. {
  8475. "var_type" "FIELD_INTEGER"
  8476. "bonus_armor" "3"
  8477. }
  8478. "03"
  8479. {
  8480. "var_type" "FIELD_INTEGER"
  8481. "bonus_health_regen" "3"
  8482. }
  8483. "04"
  8484. {
  8485. "var_type" "FIELD_FLOAT"
  8486. "heal_duration" "10.0"
  8487. }
  8488. "05"
  8489. {
  8490. "var_type" "FIELD_INTEGER"
  8491. "heal_amount" "150"
  8492. }
  8493. "06"
  8494. {
  8495. "var_type" "FIELD_FLOAT"
  8496. "heal_interval" "0.334"
  8497. }
  8498. "07"
  8499. {
  8500. "var_type" "FIELD_INTEGER"
  8501. "break_time" "10"
  8502. }
  8503. "08"
  8504. {
  8505. "var_type" "FIELD_INTEGER"
  8506. "break_count" "3"
  8507. }
  8508. "09"
  8509. {
  8510. "var_type" "FIELD_INTEGER"
  8511. "break_threshold" "20"
  8512. }
  8513. "10"
  8514. {
  8515. "var_type" "FIELD_INTEGER"
  8516. "broken_movement_speed" "50"
  8517. }
  8518. "11"
  8519. {
  8520. "var_type" "FIELD_INTEGER"
  8521. "boots_damage_cooldown" "3"
  8522. }
  8523. }
  8524. }
  8525.  
  8526. // next free ID: 215
  8527. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement