Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 343.59 KB | None | 0 0
  1. // Dota Heroes File
  2. "DOTAAbilities"
  3. {
  4. "Version" "1"
  5.  
  6. // NOTES:
  7. //
  8. // "ability_type":
  9. // DOTA_ABILITY_TYPE_BASIC = 0 :
  10. // DOTA_ABILITY_TYPE_ULTIMATE = 1 :
  11. // DOTA_ABILITY_TYPE_ATTRIBUTES = 2 :
  12. //
  13. // "ability_behavior":
  14. // 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.
  15. // DOTA_ABILITY_BEHAVIOR_PASSIVE = 2 : Can't be casted like above but this one shows up on the ability HUD
  16. // DOTA_ABILITY_BEHAVIOR_NO_TARGET = 4 : Doesn't need a target to be cast, ability fires off as soon as the button is pressed
  17. // DOTA_ABILITY_BEHAVIOR_UNIT_TARGET = 8 : Ability needs a target to be casted on.
  18. // 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)
  19. // 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.
  20. // 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)
  21. // DOTA_ABILITY_BEHAVIOR_CHANNELLED = 128 : This abillity is channelled. If the user moves or is silenced the ability is interrupted.
  22. // DOTA_ABILITY_BEHAVIOR_ITEM = 256 : This ability is tied up to an item.
  23. // DOTA_ABILITY_BEHAVIOR_TOGGLE = 512 : This ability can be insta-toggled
  24. // DOTA_ABILITY_BEHAVIOR_DIRECTIONAL = 1024 : This ability has a direction from the hero
  25. // DOTA_ABILITY_BEHAVIOR_IMMEDIATE = 2048 : This ability does not interrupt other abilities
  26. //
  27.  
  28. //=================================================================================================================
  29. // Blink dagger
  30. //=================================================================================================================
  31. "item_blink"
  32. {
  33. // General
  34. //-------------------------------------------------------------------------------------------------------------
  35. "ID" "1" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  36. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES"
  37.  
  38. // Stats
  39. //-------------------------------------------------------------------------------------------------------------
  40. "AbilityCastRange" "0"
  41. "AbilityCastPoint" "0.0"
  42. "AbilityCooldown" "12.0"
  43. "AbilityManaCost" "0"
  44.  
  45. // Item Info
  46. //-------------------------------------------------------------------------------------------------------------
  47. "ItemCost" "2150"
  48. "ItemShopTags" "teleport"
  49. "ItemQuality" "component"
  50. "ItemAliases" "blink dagger"
  51. "SideShop" "1"
  52. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  53.  
  54. // Special
  55. //-------------------------------------------------------------------------------------------------------------
  56. "AbilitySpecial"
  57. {
  58. "01"
  59. {
  60. "var_type" "FIELD_INTEGER"
  61. "blink_range" "1200"
  62. }
  63. "02"
  64. {
  65. "var_type" "FIELD_INTEGER"
  66. "blink_damage_cooldown" "3"
  67. }
  68. "03"
  69. {
  70. "var_type" "FIELD_INTEGER"
  71. "blink_range_clamp" "960"
  72. }
  73. }
  74. }
  75.  
  76. //=================================================================================================================
  77. // Blades of Attack
  78. //=================================================================================================================
  79. "item_blades_of_attack"
  80. {
  81. // General
  82. //-------------------------------------------------------------------------------------------------------------
  83. "ID" "2" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  84. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  85.  
  86. // Item Info
  87. //-------------------------------------------------------------------------------------------------------------
  88. "ItemCost" "450"
  89. "ItemShopTags" "damage;tutorial"
  90. "ItemQuality" "component"
  91. "ItemAliases" "blades of attack"
  92. "SideShop" "1"
  93.  
  94. // Special
  95. //-------------------------------------------------------------------------------------------------------------
  96. "AbilitySpecial"
  97. {
  98. "01"
  99. {
  100. "var_type" "FIELD_INTEGER"
  101. "bonus_damage" "9"
  102. }
  103. }
  104. }
  105.  
  106. //=================================================================================================================
  107. // Broadsword
  108. //=================================================================================================================
  109. "item_broadsword"
  110. {
  111. // General
  112. //-------------------------------------------------------------------------------------------------------------
  113. "ID" "3" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  114. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  115.  
  116. // Item Info
  117. //-------------------------------------------------------------------------------------------------------------
  118. "ItemCost" "1200"
  119. "ItemShopTags" "damage"
  120. "ItemQuality" "component"
  121. "ItemAliases" "broadsword"
  122.  
  123. // Special
  124. //-------------------------------------------------------------------------------------------------------------
  125. "AbilitySpecial"
  126. {
  127. "01"
  128. {
  129. "var_type" "FIELD_INTEGER"
  130. "bonus_damage" "18"
  131. }
  132. }
  133. }
  134.  
  135. //=================================================================================================================
  136. // Chainmail
  137. //=================================================================================================================
  138. "item_chainmail"
  139. {
  140. // General
  141. //-------------------------------------------------------------------------------------------------------------
  142. "ID" "4" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  143. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  144.  
  145.  
  146. // Item Info
  147. //-------------------------------------------------------------------------------------------------------------
  148. "ItemCost" "550"
  149. "ItemShopTags" "armor"
  150. "ItemQuality" "component"
  151. "ItemAliases" "chainmail"
  152. "SideShop" "1"
  153.  
  154. // Special
  155. //-------------------------------------------------------------------------------------------------------------
  156. "AbilitySpecial"
  157. {
  158. "01"
  159. {
  160. "var_type" "FIELD_INTEGER"
  161. "bonus_armor" "5"
  162. }
  163. }
  164. }
  165.  
  166. //=================================================================================================================
  167. // Claymore
  168. //=================================================================================================================
  169. "item_claymore"
  170. {
  171. // General
  172. //-------------------------------------------------------------------------------------------------------------
  173. "ID" "5" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  174. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  175.  
  176.  
  177. // Item Info
  178. //-------------------------------------------------------------------------------------------------------------
  179. "ItemCost" "1400"
  180. "ItemShopTags" "damage"
  181. "ItemQuality" "component"
  182. "ItemAliases" "claymore"
  183.  
  184. // Special
  185. //-------------------------------------------------------------------------------------------------------------
  186. "AbilitySpecial"
  187. {
  188. "01"
  189. {
  190. "var_type" "FIELD_INTEGER"
  191. "bonus_damage" "21"
  192. }
  193. }
  194. }
  195.  
  196. //=================================================================================================================
  197. // Helm of Iron Will
  198. //=================================================================================================================
  199. "item_helm_of_iron_will"
  200. {
  201. // General
  202. //-------------------------------------------------------------------------------------------------------------
  203. "ID" "6" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  204. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  205.  
  206. // Item Info
  207. //-------------------------------------------------------------------------------------------------------------
  208. "ItemCost" "950"
  209. "ItemShopTags" "armor;regen_health"
  210. "ItemQuality" "component"
  211. "ItemAliases" "helm of iron will"
  212. "SideShop" "1"
  213.  
  214. // Special
  215. //-------------------------------------------------------------------------------------------------------------
  216. "AbilitySpecial"
  217. {
  218. "01"
  219. {
  220. "var_type" "FIELD_INTEGER"
  221. "bonus_armor" "5"
  222. }
  223. "02"
  224. {
  225. "var_type" "FIELD_INTEGER"
  226. "bonus_regen" "3"
  227. }
  228. }
  229. }
  230.  
  231. //=================================================================================================================
  232. // Javelin
  233. //=================================================================================================================
  234. "item_javelin"
  235. {
  236. // General
  237. //-------------------------------------------------------------------------------------------------------------
  238. "ID" "7" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  239. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  240.  
  241. // Item Info
  242. //-------------------------------------------------------------------------------------------------------------
  243. "ItemCost" "1500"
  244. "ItemShopTags" "damage"
  245. "ItemQuality" "component"
  246. "ItemAliases" "javelin"
  247.  
  248. // Special
  249. //-------------------------------------------------------------------------------------------------------------
  250. "AbilitySpecial"
  251. {
  252. "01"
  253. {
  254. "var_type" "FIELD_INTEGER"
  255. "bonus_damage" "21"
  256. }
  257. "02"
  258. {
  259. "var_type" "FIELD_INTEGER"
  260. "bonus_chance" "20"
  261. }
  262. "03"
  263. {
  264. "var_type" "FIELD_INTEGER"
  265. "bonus_chance_damage" "40"
  266. }
  267. }
  268. }
  269.  
  270. //=================================================================================================================
  271. // Mithril Hammer
  272. //=================================================================================================================
  273. "item_mithril_hammer"
  274. {
  275. // General
  276. //-------------------------------------------------------------------------------------------------------------
  277. "ID" "8" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  278. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  279.  
  280. // Item Info
  281. //-------------------------------------------------------------------------------------------------------------
  282. "ItemCost" "1600"
  283. "ItemShopTags" "damage"
  284. "ItemQuality" "component"
  285. "ItemAliases" "mithril hammer"
  286.  
  287. // Special
  288. //-------------------------------------------------------------------------------------------------------------
  289. "AbilitySpecial"
  290. {
  291. "01"
  292. {
  293. "var_type" "FIELD_INTEGER"
  294. "bonus_damage" "24"
  295. }
  296. }
  297. }
  298.  
  299. //=================================================================================================================
  300. // Platemail
  301. //=================================================================================================================
  302. "item_platemail"
  303. {
  304. // General
  305. //-------------------------------------------------------------------------------------------------------------
  306. "ID" "9" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  307. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  308.  
  309.  
  310. // Item Info
  311. //-------------------------------------------------------------------------------------------------------------
  312. "ItemCost" "1400"
  313. "ItemShopTags" "armor"
  314. "ItemQuality" "component"
  315. "ItemAliases" "platemail"
  316.  
  317. // Special
  318. //-------------------------------------------------------------------------------------------------------------
  319. "AbilitySpecial"
  320. {
  321. "01"
  322. {
  323. "var_type" "FIELD_INTEGER"
  324. "bonus_armor" "10"
  325. }
  326. }
  327. }
  328.  
  329. //=================================================================================================================
  330. // Quarterstaff
  331. //=================================================================================================================
  332. "item_quarterstaff"
  333. {
  334. // General
  335. //-------------------------------------------------------------------------------------------------------------
  336. "ID" "10" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  337. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  338.  
  339. // Item Info
  340. //-------------------------------------------------------------------------------------------------------------
  341. "ItemCost" "900"
  342. "ItemShopTags" "damage;attack_speed"
  343. "ItemQuality" "component"
  344. "ItemAliases" "quarterstaff"
  345. "SideShop" "1"
  346.  
  347. // Special
  348. //-------------------------------------------------------------------------------------------------------------
  349. "AbilitySpecial"
  350. {
  351. "01"
  352. {
  353. "var_type" "FIELD_INTEGER"
  354. "bonus_damage" "10"
  355. }
  356. "02"
  357. {
  358. "var_type" "FIELD_INTEGER"
  359. "bonus_speed" "10"
  360. }
  361. }
  362. }
  363.  
  364.  
  365. //=================================================================================================================
  366. // Quelling Blade
  367. //=================================================================================================================
  368. "item_quelling_blade"
  369. {
  370. // General
  371. //-------------------------------------------------------------------------------------------------------------
  372. "ID" "11" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  373. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  374. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM"
  375. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  376.  
  377. "AbilityCastRange" "350"
  378. "AbilityCastPoint" "0.0"
  379. "AbilityCooldown" "5.0"
  380. "Model" "models/props_gameplay/quelling_blade.mdl"
  381.  
  382. // Item Info
  383. //-------------------------------------------------------------------------------------------------------------
  384. "AbilityManaCost" "0"
  385. "ItemCost" "225"
  386. "ItemShopTags" "damage"
  387. "ItemQuality" "component"
  388. "ItemAliases" "quelling blade"
  389. "SideShop" "1"
  390.  
  391. // Special
  392. //-------------------------------------------------------------------------------------------------------------
  393. "AbilitySpecial"
  394. {
  395. "01"
  396. {
  397. "var_type" "FIELD_INTEGER"
  398. "damage_bonus" "32"
  399. }
  400. "02"
  401. {
  402. "var_type" "FIELD_INTEGER"
  403. "damage_bonus_ranged" "12"
  404. }
  405. }
  406. }
  407.  
  408.  
  409. //=================================================================================================================
  410. // Ring of Protection
  411. //=================================================================================================================
  412. "item_ring_of_protection"
  413. {
  414. // General
  415. //-------------------------------------------------------------------------------------------------------------
  416. "ID" "12" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  417. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  418.  
  419. // Item Info
  420. //-------------------------------------------------------------------------------------------------------------
  421. "ItemCost" "175"
  422. "ItemShopTags" "armor"
  423. "ItemQuality" "component"
  424. "ItemAliases" "rop;ring of protection"
  425.  
  426. // Sound
  427. //-------------------------------------------------------------------------------------------------------------
  428. "UIPickupSound" "Item.PickUpRingShop"
  429. "UIDropSound" "Item.DropRingShop"
  430. "WorldDropSound" "Item.DropRingWorld"
  431.  
  432. // Special
  433. //-------------------------------------------------------------------------------------------------------------
  434. "AbilitySpecial"
  435. {
  436. "01"
  437. {
  438. "var_type" "FIELD_INTEGER"
  439. "bonus_armor" "2"
  440. }
  441. }
  442. }
  443.  
  444. //=================================================================================================================
  445. // Stout Shield
  446. //=================================================================================================================
  447. "item_stout_shield"
  448. {
  449. // General
  450. //-------------------------------------------------------------------------------------------------------------
  451. "ID" "182" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  452. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  453. "Model" "models/props_gameplay/stout_shield.mdl"
  454.  
  455. // Item Info
  456. //-------------------------------------------------------------------------------------------------------------
  457. "ItemCost" "250"
  458. "ItemShopTags" "block"
  459. "ItemQuality" "component"
  460. "ItemAliases" "stout shield"
  461. "SideShop" "1"
  462.  
  463. // Special
  464. //-------------------------------------------------------------------------------------------------------------
  465. "AbilitySpecial"
  466. {
  467. "01"
  468. {
  469. "var_type" "FIELD_INTEGER"
  470. "damage_block_melee" "20"
  471. }
  472. "02"
  473. {
  474. "var_type" "FIELD_INTEGER"
  475. "damage_block_ranged" "10"
  476. }
  477. "03"
  478. {
  479. "var_type" "FIELD_INTEGER"
  480. "block_chance" "60"
  481. }
  482. }
  483. }
  484.  
  485. //=================================================================================================================
  486. // Gauntlets
  487. //=================================================================================================================
  488. "item_gauntlets"
  489. {
  490. // General
  491. //-------------------------------------------------------------------------------------------------------------
  492. "ID" "13" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  493. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  494.  
  495. // Item Info
  496. //-------------------------------------------------------------------------------------------------------------
  497. "ItemCost" "150"
  498. "ItemShopTags" "str"
  499. "ItemQuality" "component"
  500. "ItemAliases" "gauntlets of strength"
  501.  
  502. // Special
  503. //-------------------------------------------------------------------------------------------------------------
  504. "AbilitySpecial"
  505. {
  506. "01"
  507. {
  508. "var_type" "FIELD_INTEGER"
  509. "bonus_strength" "3"
  510. }
  511. }
  512. }
  513.  
  514. //=================================================================================================================
  515. // Slippers
  516. //=================================================================================================================
  517. "item_slippers"
  518. {
  519. // General
  520. //-------------------------------------------------------------------------------------------------------------
  521. "ID" "14" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  522. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  523.  
  524. // Item Info
  525. //-------------------------------------------------------------------------------------------------------------
  526. "ItemCost" "150"
  527. "ItemShopTags" "agi"
  528. "ItemQuality" "component"
  529. "ItemAliases" "slippers of agility"
  530. "SideShop" "1"
  531.  
  532. // Special
  533. //-------------------------------------------------------------------------------------------------------------
  534. "AbilitySpecial"
  535. {
  536. "01"
  537. {
  538. "var_type" "FIELD_INTEGER"
  539. "bonus_agility" "3"
  540. }
  541. }
  542. }
  543.  
  544. //=================================================================================================================
  545. // Mantle
  546. //=================================================================================================================
  547. "item_mantle"
  548. {
  549. // General
  550. //-------------------------------------------------------------------------------------------------------------
  551. "ID" "15" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  552. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  553.  
  554. // Item Info
  555. //-------------------------------------------------------------------------------------------------------------
  556. "ItemCost" "150"
  557. "ItemShopTags" "int"
  558. "ItemQuality" "component"
  559. "ItemAliases" "mantle of intelligence"
  560.  
  561. // Special
  562. //-------------------------------------------------------------------------------------------------------------
  563. "AbilitySpecial"
  564. {
  565. "01"
  566. {
  567. "var_type" "FIELD_INTEGER"
  568. "bonus_intellect" "3"
  569. }
  570. }
  571. }
  572.  
  573. //=================================================================================================================
  574. // Branches
  575. //=================================================================================================================
  576. "item_branches"
  577. {
  578. // General
  579. //-------------------------------------------------------------------------------------------------------------
  580. "ID" "16" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  581. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  582. "Model" "models/props_gameplay/branch.mdl"
  583.  
  584. // Item Info
  585. //-------------------------------------------------------------------------------------------------------------
  586. "ItemCost" "50"
  587. "ItemShopTags" "agi;int;str"
  588. "ItemQuality" "component"
  589. "ItemAliases" "gg branch;iron branch"
  590.  
  591. // Special
  592. //-------------------------------------------------------------------------------------------------------------
  593. "AbilitySpecial"
  594. {
  595. "01"
  596. {
  597. "var_type" "FIELD_INTEGER"
  598. "bonus_all_stats" "1"
  599. }
  600. }
  601. }
  602.  
  603. //=================================================================================================================
  604. // Belt of Strength
  605. //=================================================================================================================
  606. "item_belt_of_strength"
  607. {
  608. // General
  609. //-------------------------------------------------------------------------------------------------------------
  610. "ID" "17" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  611. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  612.  
  613. // Item Info
  614. //-------------------------------------------------------------------------------------------------------------
  615. "ItemCost" "450"
  616. "ItemShopTags" "str"
  617. "ItemQuality" "component"
  618. "ItemAliases" "belt of strength"
  619. "SideShop" "1"
  620.  
  621. // Special
  622. //-------------------------------------------------------------------------------------------------------------
  623. "AbilitySpecial"
  624. {
  625. "01"
  626. {
  627. "var_type" "FIELD_INTEGER"
  628. "bonus_strength" "6"
  629. }
  630. }
  631. }
  632.  
  633. //=================================================================================================================
  634. // Boots of Elves
  635. //=================================================================================================================
  636. "item_boots_of_elves"
  637. {
  638. // General
  639. //-------------------------------------------------------------------------------------------------------------
  640. "ID" "18" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  641. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  642.  
  643. // Item Info
  644. //-------------------------------------------------------------------------------------------------------------
  645. "ItemCost" "450"
  646. "ItemShopTags" "agi"
  647. "ItemQuality" "component"
  648. "ItemAliases" "band of elvenskin"
  649. "SideShop" "1"
  650.  
  651. // Special
  652. //-------------------------------------------------------------------------------------------------------------
  653. "AbilitySpecial"
  654. {
  655. "01"
  656. {
  657. "var_type" "FIELD_INTEGER"
  658. "bonus_agility" "6"
  659. }
  660. }
  661. }
  662.  
  663. //=================================================================================================================
  664. // Robe
  665. //=================================================================================================================
  666. "item_robe"
  667. {
  668. // General
  669. //-------------------------------------------------------------------------------------------------------------
  670. "ID" "19" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  671. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  672.  
  673. // Item Info
  674. //-------------------------------------------------------------------------------------------------------------
  675. "ItemCost" "450"
  676. "ItemShopTags" "int"
  677. "ItemQuality" "component"
  678. "ItemAliases" "robe of the magi"
  679. "SideShop" "1"
  680.  
  681. // Special
  682. //-------------------------------------------------------------------------------------------------------------
  683. "AbilitySpecial"
  684. {
  685. "01"
  686. {
  687. "var_type" "FIELD_INTEGER"
  688. "bonus_intellect" "6"
  689. }
  690. }
  691. }
  692.  
  693. //=================================================================================================================
  694. // Circlet
  695. //=================================================================================================================
  696. "item_circlet"
  697. {
  698. // General
  699. //-------------------------------------------------------------------------------------------------------------
  700. "ID" "20" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  701. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  702.  
  703. // Item Info
  704. //-------------------------------------------------------------------------------------------------------------
  705. "ItemCost" "185"
  706. "ItemShopTags" "agi;int;str"
  707. "ItemQuality" "component"
  708. "ItemAliases" "circlet"
  709.  
  710. // Special
  711. //-------------------------------------------------------------------------------------------------------------
  712. "AbilitySpecial"
  713. {
  714. "01"
  715. {
  716. "var_type" "FIELD_INTEGER"
  717. "bonus_all_stats" "2"
  718. }
  719. }
  720. }
  721.  
  722. //=================================================================================================================
  723. // Ogre Axe
  724. //=================================================================================================================
  725. "item_ogre_axe"
  726. {
  727. // General
  728. //-------------------------------------------------------------------------------------------------------------
  729. "ID" "21" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  730. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  731.  
  732. // Item Info
  733. //-------------------------------------------------------------------------------------------------------------
  734. "ItemCost" "1000"
  735. "ItemShopTags" "str"
  736. "ItemQuality" "component"
  737. "ItemAliases" "ogre club"
  738.  
  739. // Special
  740. //-------------------------------------------------------------------------------------------------------------
  741. "AbilitySpecial"
  742. {
  743. "01"
  744. {
  745. "var_type" "FIELD_INTEGER"
  746. "bonus_strength" "10"
  747. }
  748. }
  749. }
  750.  
  751. //=================================================================================================================
  752. // Blade of Alacrity
  753. //=================================================================================================================
  754. "item_blade_of_alacrity"
  755. {
  756. // General
  757. //-------------------------------------------------------------------------------------------------------------
  758. "ID" "22" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  759. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  760.  
  761. // Item Info
  762. //-------------------------------------------------------------------------------------------------------------
  763. "ItemCost" "1000"
  764. "ItemShopTags" "agi"
  765. "ItemQuality" "component"
  766. "ItemAliases" "blade of alacrity"
  767.  
  768. // Special
  769. //-------------------------------------------------------------------------------------------------------------
  770. "AbilitySpecial"
  771. {
  772. "01"
  773. {
  774. "var_type" "FIELD_INTEGER"
  775. "bonus_agility" "10"
  776. }
  777. }
  778. }
  779.  
  780. //=================================================================================================================
  781. // Staff of Wizardry
  782. //=================================================================================================================
  783. "item_staff_of_wizardry"
  784. {
  785. // General
  786. //-------------------------------------------------------------------------------------------------------------
  787. "ID" "23" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  788. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  789.  
  790. // Item Info
  791. //-------------------------------------------------------------------------------------------------------------
  792. "ItemCost" "1000"
  793. "ItemShopTags" "int"
  794. "ItemQuality" "component"
  795. "ItemAliases" "staff of wizardry"
  796.  
  797. // Special
  798. //-------------------------------------------------------------------------------------------------------------
  799. "AbilitySpecial"
  800. {
  801. "01"
  802. {
  803. "var_type" "FIELD_INTEGER"
  804. "bonus_intellect" "10"
  805. }
  806. }
  807. }
  808.  
  809. //=================================================================================================================
  810. // Ultimate Orb
  811. //=================================================================================================================
  812. "item_ultimate_orb"
  813. {
  814. // General
  815. //-------------------------------------------------------------------------------------------------------------
  816. "ID" "24" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  817. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  818.  
  819. // Item Info
  820. //-------------------------------------------------------------------------------------------------------------
  821. "ItemCost" "2100"
  822. "ItemShopTags" "agi;int;str"
  823. "ItemQuality" "component"
  824. "ItemAliases" "ultimate orb"
  825. "SideShop" "1"
  826.  
  827. // Special
  828. //-------------------------------------------------------------------------------------------------------------
  829. "AbilitySpecial"
  830. {
  831. "01"
  832. {
  833. "var_type" "FIELD_INTEGER"
  834. "bonus_all_stats" "10"
  835. }
  836. }
  837. }
  838.  
  839. //=================================================================================================================
  840. // Gloves
  841. //=================================================================================================================
  842. "item_gloves"
  843. {
  844. // General
  845. //-------------------------------------------------------------------------------------------------------------
  846. "ID" "25" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  847. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  848.  
  849. // Item Info
  850. //-------------------------------------------------------------------------------------------------------------
  851. "ItemCost" "500"
  852. "ItemShopTags" "attack_speed"
  853. "ItemQuality" "component"
  854. "ItemAliases" "gloves of haste"
  855. "SideShop" "1"
  856.  
  857. // Special
  858. //-------------------------------------------------------------------------------------------------------------
  859. "AbilitySpecial"
  860. {
  861. "01"
  862. {
  863. "var_type" "FIELD_INTEGER"
  864. "bonus_attack_speed" "15"
  865. }
  866. }
  867. }
  868.  
  869. //=================================================================================================================
  870. // Lifesteal
  871. //=================================================================================================================
  872. "item_lifesteal"
  873. {
  874. // General
  875. //-------------------------------------------------------------------------------------------------------------
  876. "ID" "26" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  877. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  878.  
  879. // Item Info
  880. //-------------------------------------------------------------------------------------------------------------
  881. "ItemCost" "900"
  882. "ItemShopTags" "unique"
  883. "ItemQuality" "component"
  884. "ItemAliases" "morbid mask"
  885. "SideShop" "1"
  886.  
  887. // Special
  888. //-------------------------------------------------------------------------------------------------------------
  889. "AbilitySpecial"
  890. {
  891. "01"
  892. {
  893. "var_type" "FIELD_INTEGER"
  894. "lifesteal_percent" "15"
  895. }
  896. }
  897. }
  898.  
  899. //=================================================================================================================
  900. // Ring of Regen
  901. //=================================================================================================================
  902. "item_ring_of_regen"
  903. {
  904. // General
  905. //-------------------------------------------------------------------------------------------------------------
  906. "ID" "27" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  907. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  908.  
  909. // Item Info
  910. //-------------------------------------------------------------------------------------------------------------
  911. "ItemCost" "350"
  912. "ItemShopTags" "regen_health"
  913. "ItemQuality" "component"
  914. "ItemAliases" "ring of regen"
  915. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  916. "SideShop" "1"
  917. "ItemAliases" "ror"
  918.  
  919. // Sound
  920. //-------------------------------------------------------------------------------------------------------------
  921. "UIPickupSound" "Item.PickUpRingShop"
  922. "UIDropSound" "Item.DropRingShop"
  923. "WorldDropSound" "Item.DropRingWorld"
  924.  
  925. // Special
  926. //-------------------------------------------------------------------------------------------------------------
  927. "AbilitySpecial"
  928. {
  929. "01"
  930. {
  931. "var_type" "FIELD_INTEGER"
  932. "bonus_health_regen" "2"
  933. }
  934. }
  935.  
  936. }
  937.  
  938. //=================================================================================================================
  939. // Sobi Mask
  940. //=================================================================================================================
  941. "item_sobi_mask"
  942. {
  943. // General
  944. //-------------------------------------------------------------------------------------------------------------
  945. "ID" "28" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  946. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  947.  
  948. // Item Info
  949. //-------------------------------------------------------------------------------------------------------------
  950. "ItemCost" "325"
  951. "ItemShopTags" "regen_mana"
  952. "ItemQuality" "component"
  953. "ItemAliases" "sage's mask"
  954. "SideShop" "1"
  955. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  956.  
  957. // Special
  958. //-------------------------------------------------------------------------------------------------------------
  959. "AbilitySpecial"
  960. {
  961. "01"
  962. {
  963. "var_type" "FIELD_INTEGER"
  964. "bonus_mana_regen" "50"
  965. }
  966. }
  967. }
  968.  
  969. //=================================================================================================================
  970. // Boots
  971. //=================================================================================================================
  972. "item_boots"
  973. {
  974. // General
  975. //-------------------------------------------------------------------------------------------------------------
  976. "ID" "29" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  977. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  978. "Model" "models/props_gameplay/boots_of_speed.mdl"
  979.  
  980. // Item Info
  981. //-------------------------------------------------------------------------------------------------------------
  982. "ItemCost" "450"
  983. "ItemShopTags" "move_speed"
  984. "ItemQuality" "component"
  985. "ItemAliases" "boots of speed"
  986. "SideShop" "1"
  987.  
  988. // Special
  989. //-------------------------------------------------------------------------------------------------------------
  990. "AbilitySpecial"
  991. {
  992. "01"
  993. {
  994. "var_type" "FIELD_INTEGER"
  995. "bonus_movement_speed" "50"
  996. }
  997. }
  998. }
  999.  
  1000. //=================================================================================================================
  1001. // Gem
  1002. //=================================================================================================================
  1003. "item_gem"
  1004. {
  1005. // General
  1006. //-------------------------------------------------------------------------------------------------------------
  1007. "ID" "30" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1008. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1009. "Model" "models/props_gameplay/gem01.mdl"
  1010. "Effect" "dropped_gem"
  1011.  
  1012. // Item Info
  1013. //-------------------------------------------------------------------------------------------------------------
  1014. "ItemCost" "900"
  1015. "ItemShopTags" "see_invis"
  1016. "ItemQuality" "component"
  1017. "ItemAliases" "gem of true sight"
  1018. "ItemSellable" "0"
  1019. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  1020. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  1021. "ItemStockMax" "1"
  1022. "ItemStockTime" "600.0"
  1023. "ItemSupport" "1"
  1024. "ItemKillable" "0"
  1025.  
  1026. // Sound
  1027. //-------------------------------------------------------------------------------------------------------------
  1028. "UIPickupSound" "Item.PickUpGemShop"
  1029. "UIDropSound" "Item.DropGemShop"
  1030. "WorldDropSound" "Item.DropGemWorld"
  1031.  
  1032. // Special
  1033. //-------------------------------------------------------------------------------------------------------------
  1034. "AbilitySpecial"
  1035. {
  1036. "01"
  1037. {
  1038. "var_type" "FIELD_INTEGER"
  1039. "radius" "1100"
  1040. }
  1041. }
  1042. }
  1043.  
  1044. //=================================================================================================================
  1045. // Cloak
  1046. //=================================================================================================================
  1047. "item_cloak"
  1048. {
  1049. // General
  1050. //-------------------------------------------------------------------------------------------------------------
  1051. "ID" "31" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1052. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1053.  
  1054. // Item Info
  1055. //-------------------------------------------------------------------------------------------------------------
  1056. "ItemCost" "550"
  1057. "ItemShopTags" "magic_resist"
  1058. "ItemQuality" "component"
  1059. "ItemAliases" "cloak"
  1060. "SideShop" "1"
  1061.  
  1062. // Special
  1063. //-------------------------------------------------------------------------------------------------------------
  1064. "AbilitySpecial"
  1065. {
  1066. "01"
  1067. {
  1068. "var_type" "FIELD_INTEGER"
  1069. "bonus_magical_armor" "15"
  1070. }
  1071. "02"
  1072. {
  1073. "var_type" "FIELD_INTEGER"
  1074. "tooltip_resist" "15"
  1075. }
  1076. }
  1077. }
  1078.  
  1079. //=================================================================================================================
  1080. // Talisman of Evasion
  1081. //=================================================================================================================
  1082. "item_talisman_of_evasion"
  1083. {
  1084. // General
  1085. //-------------------------------------------------------------------------------------------------------------
  1086. "ID" "32" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1087. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1088.  
  1089. // Item Info
  1090. //-------------------------------------------------------------------------------------------------------------
  1091. "ItemCost" "1800"
  1092. "ItemShopTags" "evasion"
  1093. "ItemQuality" "component"
  1094. "ItemAliases" "talisman of evasion"
  1095. "SideShop" "1"
  1096.  
  1097. // Special
  1098. //-------------------------------------------------------------------------------------------------------------
  1099. "AbilitySpecial"
  1100. {
  1101. "01"
  1102. {
  1103. "var_type" "FIELD_INTEGER"
  1104. "bonus_evasion" "25"
  1105. }
  1106. }
  1107. }
  1108.  
  1109. //=================================================================================================================
  1110. // Cheese
  1111. //=================================================================================================================
  1112. "item_cheese"
  1113. {
  1114. // General
  1115. //-------------------------------------------------------------------------------------------------------------
  1116. "ID" "33" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1117. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1118. "Model" "models/props_gameplay/cheese.mdl"
  1119. "FightRecapLevel" "2"
  1120.  
  1121. // Stats
  1122. //-------------------------------------------------------------------------------------------------------------
  1123. "AbilityCooldown" "40.0"
  1124.  
  1125. // Item Info
  1126. //-------------------------------------------------------------------------------------------------------------
  1127. "ItemCost" "1000"
  1128. "ItemShopTags" ""
  1129. "ItemQuality" "epic"
  1130. "ItemPurchasable" "0"
  1131. "ItemStackable" "1"
  1132. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1133. "ItemPermanent" "0"
  1134. "ItemInitialCharges" "1"
  1135. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  1136.  
  1137. // Special
  1138. //-------------------------------------------------------------------------------------------------------------
  1139. "AbilitySpecial"
  1140. {
  1141. "01"
  1142. {
  1143. "var_type" "FIELD_INTEGER"
  1144. "health_restore" "2500"
  1145. }
  1146. "02"
  1147. {
  1148. "var_type" "FIELD_INTEGER"
  1149. "mana_restore" "1000"
  1150. }
  1151. }
  1152. }
  1153.  
  1154. //=================================================================================================================
  1155. // Magic Stick
  1156. //=================================================================================================================
  1157. "item_magic_stick"
  1158. {
  1159. // General
  1160. //-------------------------------------------------------------------------------------------------------------
  1161. "ID" "34" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1162. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1163. "Model" "models/props_gameplay/magic_wand.mdl"
  1164.  
  1165. // Stats
  1166. //-------------------------------------------------------------------------------------------------------------
  1167. "AbilityCooldown" "13.0"
  1168. "AbilitySharedCooldown" "magicwand"
  1169.  
  1170. // Item Info
  1171. //-------------------------------------------------------------------------------------------------------------
  1172. "ItemCost" "200"
  1173. "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana"
  1174. "ItemQuality" "component"
  1175. "ItemAliases" "magic stick"
  1176. "ItemRequiresCharges" "1"
  1177. "ItemDisplayCharges" "1"
  1178. "SideShop" "1"
  1179.  
  1180. // Special
  1181. //-------------------------------------------------------------------------------------------------------------
  1182. "AbilitySpecial"
  1183. {
  1184. "01"
  1185. {
  1186. "var_type" "FIELD_INTEGER"
  1187. "max_charges" "10"
  1188. }
  1189. "02"
  1190. {
  1191. "var_type" "FIELD_INTEGER"
  1192. "charge_radius" "1200"
  1193. }
  1194. "03"
  1195. {
  1196. "var_type" "FIELD_INTEGER"
  1197. "restore_per_charge" "15"
  1198. }
  1199. }
  1200. }
  1201.  
  1202. //=================================================================================================================
  1203. // Recipe: Magic Wand
  1204. //=================================================================================================================
  1205. "item_recipe_magic_wand"
  1206. {
  1207. // General
  1208. //-------------------------------------------------------------------------------------------------------------
  1209. "ID" "35" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1210. "Model" "models/props_gameplay/recipe.mdl"
  1211.  
  1212. // Item Info
  1213. //-------------------------------------------------------------------------------------------------------------
  1214. "ItemCost" "150"
  1215. "ItemShopTags" ""
  1216.  
  1217. // Recipe
  1218. //-------------------------------------------------------------------------------------------------------------
  1219. "ItemRecipe" "1"
  1220. "ItemResult" "item_magic_wand"
  1221. "ItemRequirements"
  1222. {
  1223. "01" "item_branches;item_branches;item_branches;item_magic_stick"
  1224. }
  1225. }
  1226.  
  1227. //=================================================================================================================
  1228. // Magic Wand
  1229. //=================================================================================================================
  1230. "item_magic_wand"
  1231. {
  1232. // General
  1233. //-------------------------------------------------------------------------------------------------------------
  1234. "ID" "36" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1235. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1236. "Model" "models/props_gameplay/magic_wand.mdl"
  1237.  
  1238. // Stats
  1239. //-------------------------------------------------------------------------------------------------------------
  1240. "AbilityCooldown" "13.0"
  1241. "AbilitySharedCooldown" "magicwand"
  1242.  
  1243. // Item Info
  1244. //-------------------------------------------------------------------------------------------------------------
  1245. "ItemCost" "500"
  1246. "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana;int;agi;str"
  1247. "ItemQuality" "common"
  1248. "ItemAliases" "magic wand"
  1249. "ItemRequiresCharges" "1"
  1250. "ItemDisplayCharges" "1"
  1251.  
  1252. // Special
  1253. //-------------------------------------------------------------------------------------------------------------
  1254. "AbilitySpecial"
  1255. {
  1256. "01"
  1257. {
  1258. "var_type" "FIELD_INTEGER"
  1259. "max_charges" "15"
  1260. }
  1261. "02"
  1262. {
  1263. "var_type" "FIELD_INTEGER"
  1264. "charge_radius" "1200"
  1265. }
  1266. "03"
  1267. {
  1268. "var_type" "FIELD_INTEGER"
  1269. "bonus_all_stats" "3"
  1270. }
  1271. "04"
  1272. {
  1273. "var_type" "FIELD_INTEGER"
  1274. "restore_per_charge" "15"
  1275. }
  1276. }
  1277. }
  1278.  
  1279. //=================================================================================================================
  1280. // Ghost
  1281. //=================================================================================================================
  1282. "item_ghost"
  1283. {
  1284. // General
  1285. //-------------------------------------------------------------------------------------------------------------
  1286. "ID" "37" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1287. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  1288. "FightRecapLevel" "1"
  1289.  
  1290. // Stats
  1291. //-------------------------------------------------------------------------------------------------------------
  1292. "AbilityCooldown" "30.0"
  1293. "AbilitySharedCooldown" "ethereal"
  1294.  
  1295. // Item Info
  1296. //-------------------------------------------------------------------------------------------------------------
  1297. "ItemCost" "1600"
  1298. "ItemShopTags" "int;agi;str;hard_to_tag"
  1299. "ItemQuality" "component"
  1300. "ItemAliases" "ghost scepter"
  1301.  
  1302. // Special
  1303. //-------------------------------------------------------------------------------------------------------------
  1304. "AbilitySpecial"
  1305. {
  1306. "01"
  1307. {
  1308. "var_type" "FIELD_INTEGER"
  1309. "bonus_all_stats" "7"
  1310. }
  1311. "02"
  1312. {
  1313. "var_type" "FIELD_FLOAT"
  1314. "duration" "4.0"
  1315. }
  1316. "03"
  1317. {
  1318. "var_type" "FIELD_INTEGER"
  1319. "extra_spell_damage_percent" "-40"
  1320. }
  1321. }
  1322. }
  1323.  
  1324. //=================================================================================================================
  1325. // Clarity
  1326. //=================================================================================================================
  1327. "item_clarity"
  1328. {
  1329. // General
  1330. //-------------------------------------------------------------------------------------------------------------
  1331. "ID" "38" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1332. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  1333. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1334. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1335. "Model" "models/props_gameplay/clarity.mdl"
  1336. // Stats
  1337. //-------------------------------------------------------------------------------------------------------------
  1338. "AbilityCastRange" "100"
  1339. "AbilityCastPoint" "0.0"
  1340.  
  1341. // Item Info
  1342. //-------------------------------------------------------------------------------------------------------------
  1343. "ItemCost" "50"
  1344. "ItemShopTags" "consumable"
  1345. "ItemQuality" "consumable"
  1346. "ItemAliases" "clarity"
  1347. "ItemStackable" "1"
  1348. "ItemPermanent" "0"
  1349. "ItemInitialCharges" "1"
  1350.  
  1351. // Special
  1352. //-------------------------------------------------------------------------------------------------------------
  1353. "AbilitySpecial"
  1354. {
  1355. "01"
  1356. {
  1357. "var_type" "FIELD_INTEGER"
  1358. "buff_duration" "40"
  1359. }
  1360. "02"
  1361. {
  1362. "var_type" "FIELD_INTEGER"
  1363. "total_mana" "135"
  1364. }
  1365. }
  1366. }
  1367.  
  1368. //=================================================================================================================
  1369. // Flask
  1370. //=================================================================================================================
  1371. "item_flask"
  1372. {
  1373. // General
  1374. //-------------------------------------------------------------------------------------------------------------
  1375. "ID" "39" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1376. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  1377. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1378. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1379. "Model" "models/props_gameplay/salve.mdl"
  1380.  
  1381. // Stats
  1382. //-------------------------------------------------------------------------------------------------------------
  1383. "AbilityCastRange" "100"
  1384. "AbilityCastPoint" "0.0"
  1385.  
  1386. // Item Info
  1387. //-------------------------------------------------------------------------------------------------------------
  1388. "ItemCost" "115"
  1389. "ItemShopTags" "consumable"
  1390. "ItemQuality" "consumable"
  1391. "ItemAliases" "healing salve"
  1392. "ItemStackable" "1"
  1393. "ItemPermanent" "0"
  1394. "ItemInitialCharges" "1"
  1395.  
  1396. // Special
  1397. //-------------------------------------------------------------------------------------------------------------
  1398. "AbilitySpecial"
  1399. {
  1400. "01"
  1401. {
  1402. "var_type" "FIELD_INTEGER"
  1403. "buff_duration" "10"
  1404. }
  1405. "02"
  1406. {
  1407. "var_type" "FIELD_INTEGER"
  1408. "total_health" "400"
  1409. }
  1410. }
  1411. }
  1412.  
  1413. //=================================================================================================================
  1414. // Dust
  1415. //=================================================================================================================
  1416. "item_dust"
  1417. {
  1418. // General
  1419. //-------------------------------------------------------------------------------------------------------------
  1420. "ID" "40" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1421. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1422. "Model" "models/props_gameplay/dust.mdl"
  1423. "Effect" "dropped_dust"
  1424.  
  1425. // Stats
  1426. //-------------------------------------------------------------------------------------------------------------
  1427. "AbilityCooldown" "60.0"
  1428.  
  1429. // Item Info
  1430. //-------------------------------------------------------------------------------------------------------------
  1431. "AbilityManaCost" "5"
  1432. "ItemCost" "180"
  1433. "ItemShopTags" "consumable"
  1434. "ItemQuality" "consumable"
  1435. "ItemAliases" "dust of appearance"
  1436. "ItemStackable" "1"
  1437. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1438. "ItemPermanent" "0"
  1439. "ItemInitialCharges" "2"
  1440. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES"
  1441. "ItemSupport" "1"
  1442.  
  1443.  
  1444. // Special
  1445. //-------------------------------------------------------------------------------------------------------------
  1446. "AbilitySpecial"
  1447. {
  1448. "01"
  1449. {
  1450. "var_type" "FIELD_INTEGER"
  1451. "duration" "12"
  1452. }
  1453. "02"
  1454. {
  1455. "var_type" "FIELD_INTEGER"
  1456. "radius" "1050"
  1457. }
  1458. "03"
  1459. {
  1460. "var_type" "FIELD_INTEGER"
  1461. "movespeed" "-15"
  1462. }
  1463. }
  1464. }
  1465.  
  1466. //=================================================================================================================
  1467. // Bottle
  1468. //=================================================================================================================
  1469. "item_bottle"
  1470. {
  1471. // General
  1472. //-------------------------------------------------------------------------------------------------------------
  1473. "ID" "41" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1474. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET"
  1475. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1476. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1477. "Model" "models/props_gameplay/bottle_blue.mdl"
  1478. "FightRecapLevel" "1"
  1479.  
  1480. // Stats
  1481. //-------------------------------------------------------------------------------------------------------------
  1482. "AbilityCooldown" "0.5"
  1483. "AbilityCastRange" "350"
  1484. "AbilityCastPoint" "0.0"
  1485.  
  1486. // Item Info
  1487. //-------------------------------------------------------------------------------------------------------------
  1488. "ItemCost" "650"
  1489. "ItemShopTags" "consumable"
  1490. "ItemQuality" "consumable"
  1491. "ItemAliases" "bottle"
  1492. "ItemStackable" "0"
  1493. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1494. "ItemPermanent" "1"
  1495. "ItemInitialCharges" "3"
  1496. "ItemDisplayCharges" "1"
  1497.  
  1498. // Special
  1499. //-------------------------------------------------------------------------------------------------------------
  1500. "AbilitySpecial"
  1501. {
  1502. "01"
  1503. {
  1504. "var_type" "FIELD_INTEGER"
  1505. "health_restore" "135"
  1506. }
  1507. "02"
  1508. {
  1509. "var_type" "FIELD_INTEGER"
  1510. "mana_restore" "70"
  1511. }
  1512.  
  1513. "03"
  1514. {
  1515. "var_type" "FIELD_INTEGER"
  1516. "restore_time" "3"
  1517. }
  1518. "04"
  1519. {
  1520. "var_type" "FIELD_INTEGER"
  1521. "movement_speed_percent_bonus" "-30"
  1522. }
  1523. }
  1524. }
  1525.  
  1526. //=================================================================================================================
  1527. // Observer Wards
  1528. //=================================================================================================================
  1529. "item_ward_observer"
  1530. {
  1531. // General
  1532. //-------------------------------------------------------------------------------------------------------------
  1533. "ID" "42" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1534. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET"
  1535. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1536. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1537. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO"
  1538. "Model" "models/props_gameplay/observer_ward_bundle.mdl"
  1539.  
  1540.  
  1541. // Stats
  1542. //-------------------------------------------------------------------------------------------------------------
  1543. "AbilityCastRange" "500"
  1544. "AbilityCastPoint" "0.0"
  1545. "AbilityCooldown" "1.0"
  1546.  
  1547. // Item Info
  1548. //-------------------------------------------------------------------------------------------------------------
  1549. "ItemCost" "150"
  1550. "ItemShopTags" "consumable"
  1551. "ItemQuality" "consumable"
  1552. "ItemAliases" "observer ward"
  1553. "ItemStackable" "1"
  1554. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  1555. "ItemPermanent" "0"
  1556. "ItemInitialCharges" "2"
  1557. "ItemStockMax" "2"
  1558. "ItemStockInitial" "1"
  1559. "ItemStockTime" "360.0"
  1560. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES"
  1561. "ItemSupport" "1"
  1562.  
  1563. // Special
  1564. //-------------------------------------------------------------------------------------------------------------
  1565. "AbilitySpecial"
  1566. {
  1567. "01"
  1568. {
  1569. "var_type" "FIELD_INTEGER"
  1570. "lifetime" "420"
  1571. }
  1572. "02"
  1573. {
  1574. "var_type" "FIELD_INTEGER"
  1575. "vision_range" "1600"
  1576. }
  1577. "03"
  1578. {
  1579. "var_type" "FIELD_INTEGER"
  1580. "health" "200"
  1581. }
  1582. }
  1583. }
  1584.  
  1585. //=================================================================================================================
  1586. // Sentry Ward
  1587. //=================================================================================================================
  1588. "item_ward_sentry"
  1589. {
  1590. // General
  1591. //-------------------------------------------------------------------------------------------------------------
  1592. "ID" "43" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1593. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET"
  1594. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1595. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  1596. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO"
  1597. "Model" "models/props_gameplay/sentry_ward_bundle.mdl"
  1598.  
  1599. // Stats
  1600. //-------------------------------------------------------------------------------------------------------------
  1601. "AbilityCastRange" "500"
  1602. "AbilityCastPoint" "0.0"
  1603. "AbilityCooldown" "1.0"
  1604.  
  1605. // Item Info
  1606. //-------------------------------------------------------------------------------------------------------------
  1607. "ItemCost" "200"
  1608. "ItemShopTags" "consumable"
  1609. "ItemQuality" "consumable"
  1610. "ItemAliases" "sentry ward"
  1611. "ItemStackable" "1"
  1612. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  1613. "ItemPermanent" "0"
  1614. "ItemInitialCharges" "2"
  1615. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES"
  1616. "ItemSupport" "1"
  1617.  
  1618.  
  1619. // Special
  1620. //-------------------------------------------------------------------------------------------------------------
  1621. "AbilitySpecial"
  1622. {
  1623. "01"
  1624. {
  1625. "var_type" "FIELD_INTEGER"
  1626. "lifetime" "240"
  1627. }
  1628. "02"
  1629. {
  1630. "var_type" "FIELD_INTEGER"
  1631. "vision_range" "0"
  1632. }
  1633. "03"
  1634. {
  1635. "var_type" "FIELD_INTEGER"
  1636. "true_sight_range" "800"
  1637. }
  1638. "04"
  1639. {
  1640. "var_type" "FIELD_INTEGER"
  1641. "health" "200"
  1642. }
  1643. }
  1644. }
  1645.  
  1646. //=================================================================================================================
  1647. // Tango
  1648. //=================================================================================================================
  1649. "item_tango"
  1650. {
  1651. // General
  1652. //-------------------------------------------------------------------------------------------------------------
  1653. "ID" "44" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1654. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  1655. "Model" "models/props_gameplay/tango.mdl"
  1656. "Effect" "dropped_tango"
  1657. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM"
  1658. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  1659.  
  1660. // Stats
  1661. //-------------------------------------------------------------------------------------------------------------
  1662. "AbilityCastRange" "165"
  1663. "AbilityCastPoint" "0.0"
  1664.  
  1665. // Item Info
  1666. //-------------------------------------------------------------------------------------------------------------
  1667. "ItemCost" "125"
  1668. "ItemShopTags" "consumable"
  1669. "ItemQuality" "consumable"
  1670. "ItemAliases" "tango"
  1671. "ItemStackable" "1"
  1672. "ItemPermanent" "0"
  1673. "ItemInitialCharges" "4"
  1674.  
  1675. // Special
  1676. //-------------------------------------------------------------------------------------------------------------
  1677. "AbilitySpecial"
  1678. {
  1679. "01"
  1680. {
  1681. "var_type" "FIELD_FLOAT"
  1682. "buff_duration" "16.0"
  1683. }
  1684. "02"
  1685. {
  1686. "var_type" "FIELD_INTEGER"
  1687. "total_heal" "115"
  1688. }
  1689. }
  1690. }
  1691.  
  1692. //=================================================================================================================
  1693. // Tango Single Instance
  1694. //=================================================================================================================
  1695. "item_tango_single"
  1696. {
  1697. // General
  1698. //-------------------------------------------------------------------------------------------------------------
  1699. "ID" "241" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1700. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  1701. "Model" "models/props_gameplay/tango.mdl"
  1702. "Effect" "dropped_tango"
  1703. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE"
  1704.  
  1705. // Stats
  1706. //-------------------------------------------------------------------------------------------------------------
  1707. "AbilityCastRange" "165"
  1708. "AbilityCastPoint" "0.0"
  1709. "AbilityCooldown" "60.0"
  1710.  
  1711. // Item Info
  1712. //-------------------------------------------------------------------------------------------------------------
  1713. "ItemCost" "30"
  1714. "ItemShopTags" "consumable"
  1715. "ItemQuality" "consumable"
  1716. "ItemStackable" "0"
  1717. "ItemPermanent" "0"
  1718. "ItemInitialCharges" "1"
  1719. "ItemPurchasable" "0"
  1720. "ItemSellable" "0"
  1721. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1722.  
  1723. // Special
  1724. //-------------------------------------------------------------------------------------------------------------
  1725. "AbilitySpecial"
  1726. {
  1727. "01"
  1728. {
  1729. "var_type" "FIELD_FLOAT"
  1730. "buff_duration" "16.0"
  1731. }
  1732. "02"
  1733. {
  1734. "var_type" "FIELD_INTEGER"
  1735. "total_heal" "115"
  1736. }
  1737. }
  1738. }
  1739.  
  1740. //=================================================================================================================
  1741. // Courier
  1742. //=================================================================================================================
  1743. "item_courier"
  1744. {
  1745. // General
  1746. //-------------------------------------------------------------------------------------------------------------
  1747. "ID" "45" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1748. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  1749. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES"
  1750.  
  1751. // Item Info
  1752. //-------------------------------------------------------------------------------------------------------------
  1753. "ItemCost" "150"
  1754. "ItemShopTags" "consumable"
  1755. "ItemQuality" "consumable"
  1756. "ItemAliases" "donkey;chicken;animal courier"
  1757. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1758. "ItemStockMax" "1"
  1759. "ItemStockTime" "7.0"
  1760. "ItemSupport" "1"
  1761.  
  1762. }
  1763.  
  1764. //=================================================================================================================
  1765. // Teleport Scroll
  1766. //=================================================================================================================
  1767. "item_tpscroll"
  1768. {
  1769. // General
  1770. //-------------------------------------------------------------------------------------------------------------
  1771. "ID" "46" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1772. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_NOASSIST | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  1773. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1774. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_BUILDING"
  1775. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  1776. "Model" "models/props_gameplay/tpscroll01.mdl"
  1777.  
  1778. // Stats
  1779. //-------------------------------------------------------------------------------------------------------------
  1780. "AbilityCastRange" "0"
  1781. "AbilityCooldown" "65.0"
  1782. "AbilitySharedCooldown" "teleport"
  1783. "AbilityChannelTime" "3.0"
  1784. "AbilityCastPoint" "0.0"
  1785.  
  1786. // Item Info
  1787. //-------------------------------------------------------------------------------------------------------------
  1788. "AbilityManaCost" "75"
  1789. "ItemCost" "135"
  1790. "ItemShopTags" "consumable;tutorial"
  1791. "ItemQuality" "consumable"
  1792. "ItemAliases" "tp;town portal scroll"
  1793. "ItemStackable" "1"
  1794. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  1795. "ItemPermanent" "0"
  1796. "ItemInitialCharges" "1"
  1797. "SideShop" "1"
  1798.  
  1799. // Special
  1800. //-------------------------------------------------------------------------------------------------------------
  1801. "AbilitySpecial"
  1802. {
  1803. "01"
  1804. {
  1805. "var_type" "FIELD_INTEGER"
  1806. "minimun_distance" "70"
  1807. }
  1808. "02"
  1809. {
  1810. "var_type" "FIELD_INTEGER"
  1811. "maximum_distance" "575"
  1812. }
  1813. "03"
  1814. {
  1815. "var_type" "FIELD_INTEGER"
  1816. "vision_radius" "200"
  1817. }
  1818. }
  1819. }
  1820.  
  1821. //=================================================================================================================
  1822. // Recipe: Travel Boots
  1823. //=================================================================================================================
  1824. "item_recipe_travel_boots"
  1825. {
  1826. // General
  1827. //-------------------------------------------------------------------------------------------------------------
  1828. "ID" "47" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1829. "Model" "models/props_gameplay/recipe.mdl"
  1830.  
  1831. // Item Info
  1832. //-------------------------------------------------------------------------------------------------------------
  1833. "ItemCost" "2000"
  1834. "ItemShopTags" ""
  1835.  
  1836. // Recipe
  1837. //-------------------------------------------------------------------------------------------------------------
  1838. "ItemRecipe" "1"
  1839. "ItemResult" "item_travel_boots"
  1840. "ItemRequirements"
  1841. {
  1842. "01" "item_boots"
  1843. }
  1844. }
  1845.  
  1846. //=================================================================================================================
  1847. // Travel Boots
  1848. //=================================================================================================================
  1849. "item_travel_boots"
  1850. {
  1851. // General
  1852. //-------------------------------------------------------------------------------------------------------------
  1853. "ID" "48" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1854. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  1855. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  1856. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP | DOTA_UNIT_TARGET_MECHANICAL | DOTA_UNIT_TARGET_BUILDING"
  1857. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  1858.  
  1859. // Stats
  1860. //-------------------------------------------------------------------------------------------------------------
  1861. "AbilityCooldown" "60.0"
  1862. "AbilitySharedCooldown" "teleport"
  1863. "AbilityChannelTime" "3.0"
  1864.  
  1865. // Item Info
  1866. //-------------------------------------------------------------------------------------------------------------
  1867. "AbilityManaCost" "75"
  1868. "ItemCost" "2450"
  1869. "ItemShopTags" "teleport;move_speed"
  1870. "ItemQuality" "common"
  1871. "ItemAliases" "bot;boots of travel"
  1872. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  1873.  
  1874. // Special
  1875. //-------------------------------------------------------------------------------------------------------------
  1876. "AbilitySpecial"
  1877. {
  1878. "01"
  1879. {
  1880. "var_type" "FIELD_INTEGER"
  1881. "bonus_movement_speed" "100"
  1882. }
  1883. }
  1884. }
  1885.  
  1886. //=================================================================================================================
  1887. // Recipe: Phase Boots
  1888. //=================================================================================================================
  1889. "item_recipe_phase_boots"
  1890. {
  1891. // General
  1892. //-------------------------------------------------------------------------------------------------------------
  1893. "ID" "49" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1894. "Model" "models/props_gameplay/recipe.mdl"
  1895.  
  1896. // Item Info
  1897. //-------------------------------------------------------------------------------------------------------------
  1898. "ItemCost" "0"
  1899. "ItemShopTags" ""
  1900.  
  1901. // Recipe
  1902. //-------------------------------------------------------------------------------------------------------------
  1903. "ItemRecipe" "1"
  1904. "ItemResult" "item_phase_boots"
  1905. "ItemRequirements"
  1906. {
  1907. "01" "item_boots;item_blades_of_attack;item_blades_of_attack"
  1908. }
  1909. }
  1910.  
  1911. //=================================================================================================================
  1912. // Phase Boots
  1913. //=================================================================================================================
  1914. "item_phase_boots"
  1915. {
  1916. // General
  1917. //-------------------------------------------------------------------------------------------------------------
  1918. "ID" "50" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1919. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  1920.  
  1921. // Stats
  1922. //-------------------------------------------------------------------------------------------------------------
  1923. "AbilityCooldown" "8.0"
  1924.  
  1925. // Item Info
  1926. //-------------------------------------------------------------------------------------------------------------
  1927. "ItemCost" "1350"
  1928. "ItemShopTags" "damage;move_speed;hard_to_tag"
  1929. "ItemQuality" "common"
  1930. "ItemAliases" "phase boots"
  1931. "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS"
  1932.  
  1933. // Special
  1934. //-------------------------------------------------------------------------------------------------------------
  1935. "AbilitySpecial"
  1936. {
  1937. "01"
  1938. {
  1939. "var_type" "FIELD_FLOAT"
  1940. "phase_duration" "4.0"
  1941. }
  1942. "02"
  1943. {
  1944. "var_type" "FIELD_INTEGER"
  1945. "phase_movement_speed" "16"
  1946. }
  1947. "03"
  1948. {
  1949. "var_type" "FIELD_INTEGER"
  1950. "bonus_movement_speed" "50"
  1951. }
  1952. "04"
  1953. {
  1954. "var_type" "FIELD_INTEGER"
  1955. "bonus_damage" "24"
  1956. }
  1957. }
  1958. }
  1959.  
  1960. //=================================================================================================================
  1961. // Demon Edge
  1962. //=================================================================================================================
  1963. "item_demon_edge"
  1964. {
  1965. // General
  1966. //-------------------------------------------------------------------------------------------------------------
  1967. "ID" "51" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1968. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1969.  
  1970. // Item Info
  1971. //-------------------------------------------------------------------------------------------------------------
  1972. "ItemCost" "2400"
  1973. "ItemShopTags" "damage"
  1974. "ItemQuality" "secret_shop"
  1975. "ItemAliases" "demon edge"
  1976. "SecretShop" "1"
  1977.  
  1978. // Special
  1979. //-------------------------------------------------------------------------------------------------------------
  1980. "AbilitySpecial"
  1981. {
  1982. "01"
  1983. {
  1984. "var_type" "FIELD_INTEGER"
  1985. "bonus_damage" "46"
  1986. }
  1987. }
  1988. }
  1989.  
  1990. //=================================================================================================================
  1991. // Eagle Horn
  1992. //=================================================================================================================
  1993. "item_eagle"
  1994. {
  1995. // General
  1996. //-------------------------------------------------------------------------------------------------------------
  1997. "ID" "52" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  1998. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  1999.  
  2000. // Item Info
  2001. //-------------------------------------------------------------------------------------------------------------
  2002. "ItemCost" "3300"
  2003. "ItemShopTags" "agi"
  2004. "ItemQuality" "secret_shop"
  2005. "ItemAliases" "eaglesong"
  2006. "SecretShop" "1"
  2007.  
  2008. // Special
  2009. //-------------------------------------------------------------------------------------------------------------
  2010. "AbilitySpecial"
  2011. {
  2012. "01"
  2013. {
  2014. "var_type" "FIELD_INTEGER"
  2015. "bonus_agility" "25"
  2016. }
  2017. }
  2018. }
  2019.  
  2020. //=================================================================================================================
  2021. // Reaver
  2022. //=================================================================================================================
  2023. "item_reaver"
  2024. {
  2025. // General
  2026. //-------------------------------------------------------------------------------------------------------------
  2027. "ID" "53" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2028. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2029.  
  2030. // Item Info
  2031. //-------------------------------------------------------------------------------------------------------------
  2032. "ItemCost" "3200"
  2033. "ItemShopTags" "str"
  2034. "ItemQuality" "secret_shop"
  2035. "ItemAliases" "reaver"
  2036. "SecretShop" "1"
  2037.  
  2038. // Special
  2039. //-------------------------------------------------------------------------------------------------------------
  2040. "AbilitySpecial"
  2041. {
  2042. "01"
  2043. {
  2044. "var_type" "FIELD_INTEGER"
  2045. "bonus_strength" "25"
  2046. }
  2047. }
  2048. }
  2049.  
  2050. //=================================================================================================================
  2051. // Sacred Relic
  2052. //=================================================================================================================
  2053. "item_relic"
  2054. {
  2055. // General
  2056. //-------------------------------------------------------------------------------------------------------------
  2057. "ID" "54" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2058. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2059.  
  2060. // Item Info
  2061. //-------------------------------------------------------------------------------------------------------------
  2062. "ItemCost" "3800"
  2063. "ItemShopTags" "damage"
  2064. "ItemQuality" "secret_shop"
  2065. "ItemAliases" "sacred relic"
  2066. "SecretShop" "1"
  2067.  
  2068. // Special
  2069. //-------------------------------------------------------------------------------------------------------------
  2070. "AbilitySpecial"
  2071. {
  2072. "01"
  2073. {
  2074. "var_type" "FIELD_INTEGER"
  2075. "bonus_damage" "60"
  2076. }
  2077. }
  2078. }
  2079.  
  2080. //=================================================================================================================
  2081. // Hyperstone
  2082. //=================================================================================================================
  2083. "item_hyperstone"
  2084. {
  2085. // General
  2086. //-------------------------------------------------------------------------------------------------------------
  2087. "ID" "55" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2088. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2089.  
  2090. // Item Info
  2091. //-------------------------------------------------------------------------------------------------------------
  2092. "ItemCost" "2000"
  2093. "ItemShopTags" "attack_speed"
  2094. "ItemQuality" "secret_shop"
  2095. "ItemAliases" "hyperstone"
  2096. "SecretShop" "1"
  2097.  
  2098. // Special
  2099. //-------------------------------------------------------------------------------------------------------------
  2100. "AbilitySpecial"
  2101. {
  2102. "01"
  2103. {
  2104. "var_type" "FIELD_INTEGER"
  2105. "bonus_attack_speed" "55"
  2106. }
  2107. }
  2108. }
  2109.  
  2110. //=================================================================================================================
  2111. // Ring of Health
  2112. //=================================================================================================================
  2113. "item_ring_of_health"
  2114. {
  2115. // General
  2116. //-------------------------------------------------------------------------------------------------------------
  2117. "ID" "56" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2118. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2119.  
  2120. // Item Info
  2121. //-------------------------------------------------------------------------------------------------------------
  2122. "ItemCost" "875"
  2123. "ItemShopTags" "regen_health"
  2124. "ItemQuality" "secret_shop"
  2125. "ItemAliases" "roh;ring of health"
  2126. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2127. "SecretShop" "1"
  2128. "SideShop" "1"
  2129.  
  2130. // Sound
  2131. //-------------------------------------------------------------------------------------------------------------
  2132. "UIPickupSound" "Item.PickUpRingShop"
  2133. "UIDropSound" "Item.DropRingShop"
  2134. "WorldDropSound" "Item.DropRingWorld"
  2135.  
  2136. // Special
  2137. //-------------------------------------------------------------------------------------------------------------
  2138. "AbilitySpecial"
  2139. {
  2140. "01"
  2141. {
  2142. "var_type" "FIELD_INTEGER"
  2143. "bonus_health_regen" "5"
  2144. }
  2145. }
  2146. }
  2147.  
  2148. //=================================================================================================================
  2149. // Void Stone
  2150. //=================================================================================================================
  2151. "item_void_stone"
  2152. {
  2153. // General
  2154. //-------------------------------------------------------------------------------------------------------------
  2155. "ID" "57" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2156. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2157.  
  2158. // Item Info
  2159. //-------------------------------------------------------------------------------------------------------------
  2160. "ItemCost" "875"
  2161. "ItemShopTags" "regen_mana"
  2162. "ItemQuality" "secret_shop"
  2163. "ItemAliases" "void stone"
  2164. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2165. "SecretShop" "1"
  2166.  
  2167. // Special
  2168. //-------------------------------------------------------------------------------------------------------------
  2169. "AbilitySpecial"
  2170. {
  2171. "01"
  2172. {
  2173. "var_type" "FIELD_INTEGER"
  2174. "bonus_mana_regen" "100"
  2175. }
  2176. }
  2177. }
  2178.  
  2179. //=================================================================================================================
  2180. // Mystic Staff
  2181. //=================================================================================================================
  2182. "item_mystic_staff"
  2183. {
  2184. // General
  2185. //-------------------------------------------------------------------------------------------------------------
  2186. "ID" "58" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2187. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2188.  
  2189. // Item Info
  2190. //-------------------------------------------------------------------------------------------------------------
  2191. "ItemCost" "2700"
  2192. "ItemShopTags" "int"
  2193. "ItemQuality" "secret_shop"
  2194. "ItemAliases" "mystic staff"
  2195. "SecretShop" "1"
  2196.  
  2197. // Special
  2198. //-------------------------------------------------------------------------------------------------------------
  2199. "AbilitySpecial"
  2200. {
  2201. "01"
  2202. {
  2203. "var_type" "FIELD_INTEGER"
  2204. "bonus_intellect" "25"
  2205. }
  2206. }
  2207. }
  2208.  
  2209. //=================================================================================================================
  2210. // Energy Booster
  2211. //=================================================================================================================
  2212. "item_energy_booster"
  2213. {
  2214. // General
  2215. //-------------------------------------------------------------------------------------------------------------
  2216. "ID" "59" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2217. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2218.  
  2219. // Item Info
  2220. //-------------------------------------------------------------------------------------------------------------
  2221. "ItemCost" "1000"
  2222. "ItemShopTags" "mana_pool"
  2223. "ItemQuality" "secret_shop"
  2224. "ItemAliases" "energy booster"
  2225. "SecretShop" "1"
  2226. "SideShop" "1"
  2227.  
  2228. // Special
  2229. //-------------------------------------------------------------------------------------------------------------
  2230. "AbilitySpecial"
  2231. {
  2232. "01"
  2233. {
  2234. "var_type" "FIELD_INTEGER"
  2235. "bonus_mana" "250"
  2236. }
  2237. }
  2238. }
  2239.  
  2240. //=================================================================================================================
  2241. // Point Booster
  2242. //=================================================================================================================
  2243. "item_point_booster"
  2244. {
  2245. // General
  2246. //-------------------------------------------------------------------------------------------------------------
  2247. "ID" "60" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2248. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2249.  
  2250. // Item Info
  2251. //-------------------------------------------------------------------------------------------------------------
  2252. "ItemCost" "1200"
  2253. "ItemShopTags" "mana_pool;health_pool"
  2254. "ItemQuality" "secret_shop"
  2255. "ItemAliases" "point booster"
  2256. "SecretShop" "1"
  2257.  
  2258. // Special
  2259. //-------------------------------------------------------------------------------------------------------------
  2260. "AbilitySpecial"
  2261. {
  2262. "01"
  2263. {
  2264. "var_type" "FIELD_INTEGER"
  2265. "bonus_mana" "150"
  2266. }
  2267.  
  2268. "02"
  2269. {
  2270. "var_type" "FIELD_INTEGER"
  2271. "bonus_health" "200"
  2272. }
  2273. }
  2274. }
  2275.  
  2276. //=================================================================================================================
  2277. // Vitality Booster
  2278. //=================================================================================================================
  2279. "item_vitality_booster"
  2280. {
  2281. // General
  2282. //-------------------------------------------------------------------------------------------------------------
  2283. "ID" "61" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2284. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2285.  
  2286. // Item Info
  2287. //-------------------------------------------------------------------------------------------------------------
  2288. "ItemCost" "1100"
  2289. "ItemShopTags" "health_pool"
  2290. "ItemQuality" "secret_shop"
  2291. "ItemAliases" "vitality booster"
  2292. "SecretShop" "1"
  2293.  
  2294. // Special
  2295. //-------------------------------------------------------------------------------------------------------------
  2296. "AbilitySpecial"
  2297. {
  2298. "01"
  2299. {
  2300. "var_type" "FIELD_INTEGER"
  2301. "bonus_health" "250"
  2302. }
  2303. }
  2304. }
  2305.  
  2306.  
  2307. //=================================================================================================================
  2308. // Recipe: Power Treads
  2309. //=================================================================================================================
  2310. "item_recipe_power_treads"
  2311. {
  2312. // General
  2313. //-------------------------------------------------------------------------------------------------------------
  2314. "ID" "62" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2315. "Model" "models/props_gameplay/recipe.mdl"
  2316.  
  2317. // Item Info
  2318. //-------------------------------------------------------------------------------------------------------------
  2319. "ItemCost" "0"
  2320. "ItemShopTags" ""
  2321.  
  2322. // Recipe
  2323. //-------------------------------------------------------------------------------------------------------------
  2324. "ItemRecipe" "1"
  2325. "ItemResult" "item_power_treads"
  2326. "ItemRequirements"
  2327. {
  2328. "01" "item_gloves;item_boots;item_belt_of_strength"
  2329. "02" "item_gloves;item_boots;item_robe"
  2330. "03" "item_gloves;item_boots;item_boots_of_elves"
  2331. }
  2332. }
  2333.  
  2334. //=================================================================================================================
  2335. // Power Treads
  2336. //=================================================================================================================
  2337. "item_power_treads"
  2338. {
  2339. // General
  2340. //-------------------------------------------------------------------------------------------------------------
  2341. "ID" "63" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2342. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  2343.  
  2344. // Item Info
  2345. //-------------------------------------------------------------------------------------------------------------
  2346. "ItemCost" "1400"
  2347. "ItemShopTags" "attack_speed;move_speed;int;agi;str"
  2348. "ItemQuality" "common"
  2349. "ItemAliases" "power treads"
  2350. "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS"
  2351.  
  2352. // Special
  2353. //-------------------------------------------------------------------------------------------------------------
  2354. "AbilitySpecial"
  2355. {
  2356. "01"
  2357. {
  2358. "var_type" "FIELD_INTEGER"
  2359. "bonus_movement_speed" "50"
  2360. }
  2361. "02"
  2362. {
  2363. "var_type" "FIELD_INTEGER"
  2364. "bonus_stat" "8"
  2365. }
  2366. "03"
  2367. {
  2368. "var_type" "FIELD_INTEGER"
  2369. "bonus_attack_speed" "30"
  2370. }
  2371. }
  2372. }
  2373.  
  2374. //=================================================================================================================
  2375. // Recipe: Hand of Midas
  2376. //=================================================================================================================
  2377. "item_recipe_hand_of_midas"
  2378. {
  2379. // General
  2380. //-------------------------------------------------------------------------------------------------------------
  2381. "ID" "64" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2382. "Model" "models/props_gameplay/recipe.mdl"
  2383.  
  2384. // Item Info
  2385. //-------------------------------------------------------------------------------------------------------------
  2386. "ItemCost" "1550"
  2387. "ItemShopTags" ""
  2388. "ItemAliases" "hom"
  2389.  
  2390. // Recipe
  2391. //-------------------------------------------------------------------------------------------------------------
  2392. "ItemRecipe" "1"
  2393. "ItemResult" "item_hand_of_midas"
  2394. "ItemRequirements"
  2395. {
  2396. "01" "item_gloves"
  2397. }
  2398. }
  2399.  
  2400. //=================================================================================================================
  2401. // Hand of Midas
  2402. //=================================================================================================================
  2403. "item_hand_of_midas"
  2404. {
  2405. // General
  2406. //-------------------------------------------------------------------------------------------------------------
  2407. "ID" "65" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2408. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  2409. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  2410. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP"
  2411. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS | DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES"
  2412.  
  2413. // Stats
  2414. //-------------------------------------------------------------------------------------------------------------
  2415. "AbilityCastRange" "600"
  2416. "AbilityCastPoint" "0.0"
  2417. "AbilityCooldown" "100.0"
  2418.  
  2419. // Item Info
  2420. //-------------------------------------------------------------------------------------------------------------
  2421. "AbilityManaCost" "0"
  2422. "ItemCost" "2050"
  2423. "ItemShopTags" "attack_speed;hard_to_tag"
  2424. "ItemQuality" "common"
  2425. "ItemAliases" "hand of midas"
  2426. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  2427.  
  2428. // Special
  2429. //-------------------------------------------------------------------------------------------------------------
  2430. "AbilitySpecial"
  2431. {
  2432. "01"
  2433. {
  2434. "var_type" "FIELD_INTEGER"
  2435. "bonus_attack_speed" "30"
  2436. }
  2437. "02"
  2438. {
  2439. "var_type" "FIELD_FLOAT"
  2440. "xp_multiplier" "2.5"
  2441. }
  2442. "03"
  2443. {
  2444. "var_type" "FIELD_INTEGER"
  2445. "bonus_gold" "190"
  2446. }
  2447. }
  2448. }
  2449.  
  2450. //=================================================================================================================
  2451. // Recipe: Oblivion Staff
  2452. //=================================================================================================================
  2453. "item_recipe_oblivion_staff"
  2454. {
  2455. // General
  2456. //-------------------------------------------------------------------------------------------------------------
  2457. "ID" "66" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2458. "Model" "models/props_gameplay/recipe.mdl"
  2459.  
  2460. // Item Info
  2461. //-------------------------------------------------------------------------------------------------------------
  2462. "ItemCost" "0"
  2463. "ItemShopTags" ""
  2464.  
  2465. // Recipe
  2466. //-------------------------------------------------------------------------------------------------------------
  2467. "ItemRecipe" "1"
  2468. "ItemResult" "item_oblivion_staff"
  2469. "ItemRequirements"
  2470. {
  2471. "01" "item_quarterstaff;item_sobi_mask;item_robe"
  2472. }
  2473. }
  2474.  
  2475. //=================================================================================================================
  2476. // Oblivion Staff
  2477. //=================================================================================================================
  2478. "item_oblivion_staff"
  2479. {
  2480. // General
  2481. //-------------------------------------------------------------------------------------------------------------
  2482. "ID" "67" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2483. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2484.  
  2485. // Item Info
  2486. //-------------------------------------------------------------------------------------------------------------
  2487. "ItemCost" "1675"
  2488. "ItemShopTags" "damage;int;attack_speed;regen_mana"
  2489. "ItemQuality" "common"
  2490. "ItemAliases" "oblivion staff"
  2491.  
  2492. // Special
  2493. //-------------------------------------------------------------------------------------------------------------
  2494. "AbilitySpecial"
  2495. {
  2496. "01"
  2497. {
  2498. "var_type" "FIELD_INTEGER"
  2499. "bonus_intellect" "6"
  2500. }
  2501. "02"
  2502. {
  2503. "var_type" "FIELD_INTEGER"
  2504. "bonus_attack_speed" "10"
  2505. }
  2506. "03"
  2507. {
  2508. "var_type" "FIELD_INTEGER"
  2509. "bonus_damage" "15"
  2510. }
  2511. "04"
  2512. {
  2513. "var_type" "FIELD_INTEGER"
  2514. "bonus_mana_regen" "75"
  2515. }
  2516. }
  2517. }
  2518.  
  2519. //=================================================================================================================
  2520. // Recipe: Perseverence
  2521. //=================================================================================================================
  2522. "item_recipe_pers"
  2523. {
  2524. // General
  2525. //-------------------------------------------------------------------------------------------------------------
  2526. "ID" "68" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2527. "Model" "models/props_gameplay/recipe.mdl"
  2528.  
  2529. // Item Info
  2530. //-------------------------------------------------------------------------------------------------------------
  2531. "ItemCost" "0"
  2532. "ItemShopTags" ""
  2533.  
  2534. // Recipe
  2535. //-------------------------------------------------------------------------------------------------------------
  2536. "ItemRecipe" "1"
  2537. "ItemResult" "item_pers"
  2538. "ItemRequirements"
  2539. {
  2540. "01" "item_ring_of_health;item_void_stone"
  2541. }
  2542. }
  2543.  
  2544. //=================================================================================================================
  2545. // Perseverence
  2546. //=================================================================================================================
  2547. "item_pers"
  2548. {
  2549. // General
  2550. //-------------------------------------------------------------------------------------------------------------
  2551. "ID" "69" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2552. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2553.  
  2554. // Item Info
  2555. //-------------------------------------------------------------------------------------------------------------
  2556. "ItemCost" "1750"
  2557. "ItemShopTags" "damage;regen_health;regen_mana"
  2558. "ItemQuality" "common"
  2559. "ItemAliases" "perseverance"
  2560. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  2561. "ItemShareability" "ITEM_PARTIALLY_SHAREABLE"
  2562.  
  2563. // Special
  2564. //-------------------------------------------------------------------------------------------------------------
  2565. "AbilitySpecial"
  2566. {
  2567. "01"
  2568. {
  2569. "var_type" "FIELD_INTEGER"
  2570. "bonus_damage" "10"
  2571. }
  2572. "02"
  2573. {
  2574. "var_type" "FIELD_INTEGER"
  2575. "bonus_health_regen" "5"
  2576. }
  2577. "03"
  2578. {
  2579. "var_type" "FIELD_INTEGER"
  2580. "bonus_mana_regen" "125"
  2581. }
  2582. }
  2583. }
  2584.  
  2585. //=================================================================================================================
  2586. // Recipe: Poor Man's Shield
  2587. //=================================================================================================================
  2588. "item_recipe_poor_mans_shield"
  2589. {
  2590. // General
  2591. //-------------------------------------------------------------------------------------------------------------
  2592. "ID" "70" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2593. "Model" "models/props_gameplay/recipe.mdl"
  2594.  
  2595. // Item Info
  2596. //-------------------------------------------------------------------------------------------------------------
  2597. "ItemCost" "0"
  2598. "ItemShopTags" ""
  2599.  
  2600. // Recipe
  2601. //-------------------------------------------------------------------------------------------------------------
  2602. "ItemRecipe" "1"
  2603. "ItemResult" "item_poor_mans_shield"
  2604. "ItemRequirements"
  2605. {
  2606. "01" "item_slippers;item_slippers;item_stout_shield"
  2607. }
  2608. }
  2609.  
  2610. //=================================================================================================================
  2611. // Poor Man's Shield
  2612. //=================================================================================================================
  2613. "item_poor_mans_shield"
  2614. {
  2615. // General
  2616. //-------------------------------------------------------------------------------------------------------------
  2617. "ID" "71" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2618. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2619.  
  2620. // Item Info
  2621. //-------------------------------------------------------------------------------------------------------------
  2622. "ItemCost" "550"
  2623. "ItemShopTags" "agi;block"
  2624. "ItemQuality" "common"
  2625. "ItemAliases" "pms;poor man's shield"
  2626.  
  2627. // Special
  2628. //-------------------------------------------------------------------------------------------------------------
  2629. "AbilitySpecial"
  2630. {
  2631. "01"
  2632. {
  2633. "var_type" "FIELD_INTEGER"
  2634. "damage_block_melee" "20"
  2635. }
  2636. "02"
  2637. {
  2638. "var_type" "FIELD_INTEGER"
  2639. "damage_block_ranged" "10"
  2640. }
  2641. "03"
  2642. {
  2643. "var_type" "FIELD_INTEGER"
  2644. "block_chance" "60"
  2645. }
  2646. "04"
  2647. {
  2648. "var_type" "FIELD_INTEGER"
  2649. "block_chance_hero" "100"
  2650. }
  2651. "05"
  2652. {
  2653. "var_type" "FIELD_INTEGER"
  2654. "bonus_agility" "6"
  2655. }
  2656. }
  2657. }
  2658.  
  2659. //=================================================================================================================
  2660. // Recipe: Bracer
  2661. //=================================================================================================================
  2662. "item_recipe_bracer"
  2663. {
  2664. // General
  2665. //-------------------------------------------------------------------------------------------------------------
  2666. "ID" "72" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2667.  
  2668. // Item Info
  2669. //-------------------------------------------------------------------------------------------------------------
  2670. "ItemCost" "190"
  2671. "ItemShopTags" ""
  2672.  
  2673. // Recipe
  2674. //-------------------------------------------------------------------------------------------------------------
  2675. "ItemRecipe" "1"
  2676. "ItemResult" "item_bracer"
  2677. "ItemRequirements"
  2678. {
  2679. "01" "item_circlet;item_gauntlets"
  2680. }
  2681. }
  2682.  
  2683. //=================================================================================================================
  2684. // Bracer
  2685. //=================================================================================================================
  2686. "item_bracer"
  2687. {
  2688. // General
  2689. //-------------------------------------------------------------------------------------------------------------
  2690. "ID" "73" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2691. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2692.  
  2693. // Item Info
  2694. //-------------------------------------------------------------------------------------------------------------
  2695. "ItemCost" "525"
  2696. "ItemShopTags" "damage;int;agi;str"
  2697. "ItemQuality" "common"
  2698. "ItemAliases" "bracer"
  2699.  
  2700. // Special
  2701. //-------------------------------------------------------------------------------------------------------------
  2702. "AbilitySpecial"
  2703. {
  2704. "01"
  2705. {
  2706. "var_type" "FIELD_INTEGER"
  2707. "bonus_strength" "6"
  2708. }
  2709. "02"
  2710. {
  2711. "var_type" "FIELD_INTEGER"
  2712. "bonus_agility" "3"
  2713. }
  2714. "03"
  2715. {
  2716. "var_type" "FIELD_INTEGER"
  2717. "bonus_intellect" "3"
  2718. }
  2719. "04"
  2720. {
  2721. "var_type" "FIELD_INTEGER"
  2722. "bonus_damage" "3"
  2723. }
  2724. }
  2725. }
  2726.  
  2727. //=================================================================================================================
  2728. // Recipe: Wraith Band
  2729. //=================================================================================================================
  2730. "item_recipe_wraith_band"
  2731. {
  2732. // General
  2733. //-------------------------------------------------------------------------------------------------------------
  2734. "ID" "74" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2735.  
  2736. // Item Info
  2737. //-------------------------------------------------------------------------------------------------------------
  2738. "ItemCost" "150"
  2739. "ItemShopTags" ""
  2740.  
  2741. // Recipe
  2742. //-------------------------------------------------------------------------------------------------------------
  2743. "ItemRecipe" "1"
  2744. "ItemResult" "item_wraith_band"
  2745. "ItemRequirements"
  2746. {
  2747. "01" "item_circlet;item_slippers"
  2748. }
  2749. }
  2750.  
  2751. //=================================================================================================================
  2752. // Wraith Band
  2753. //=================================================================================================================
  2754. "item_wraith_band"
  2755. {
  2756. // General
  2757. //-------------------------------------------------------------------------------------------------------------
  2758. "ID" "75" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2759. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2760.  
  2761. // Item Info
  2762. //-------------------------------------------------------------------------------------------------------------
  2763. "ItemCost" "485"
  2764. "ItemShopTags" "damage;int;agi;str"
  2765. "ItemQuality" "common"
  2766. "ItemAliases" "wraith band"
  2767.  
  2768. // Special
  2769. //-------------------------------------------------------------------------------------------------------------
  2770. "AbilitySpecial"
  2771. {
  2772. "01"
  2773. {
  2774. "var_type" "FIELD_INTEGER"
  2775. "bonus_strength" "3"
  2776. }
  2777. "02"
  2778. {
  2779. "var_type" "FIELD_INTEGER"
  2780. "bonus_agility" "6"
  2781. }
  2782. "03"
  2783. {
  2784. "var_type" "FIELD_INTEGER"
  2785. "bonus_intellect" "3"
  2786. }
  2787. "04"
  2788. {
  2789. "var_type" "FIELD_INTEGER"
  2790. "bonus_damage" "3"
  2791. }
  2792. }
  2793. }
  2794.  
  2795. //=================================================================================================================
  2796. // Recipe: Null Talisman
  2797. //=================================================================================================================
  2798. "item_recipe_null_talisman"
  2799. {
  2800. // General
  2801. //-------------------------------------------------------------------------------------------------------------
  2802. "ID" "76" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2803.  
  2804. // Item Info
  2805. //-------------------------------------------------------------------------------------------------------------
  2806. "ItemCost" "135"
  2807. "ItemShopTags" ""
  2808.  
  2809. // Recipe
  2810. //-------------------------------------------------------------------------------------------------------------
  2811. "ItemRecipe" "1"
  2812. "ItemResult" "item_null_talisman"
  2813. "ItemRequirements"
  2814. {
  2815. "01" "item_circlet;item_mantle"
  2816. }
  2817. }
  2818.  
  2819. //=================================================================================================================
  2820. // Null Talisman
  2821. //=================================================================================================================
  2822. "item_null_talisman"
  2823. {
  2824. // General
  2825. //-------------------------------------------------------------------------------------------------------------
  2826. "ID" "77" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2827. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2828.  
  2829. // Item Info
  2830. //-------------------------------------------------------------------------------------------------------------
  2831. "ItemCost" "470"
  2832. "ItemShopTags" "damage;int;agi;str"
  2833. "ItemQuality" "common"
  2834. "ItemAliases" "null talisman"
  2835.  
  2836. // Special
  2837. //-------------------------------------------------------------------------------------------------------------
  2838. "AbilitySpecial"
  2839. {
  2840. "01"
  2841. {
  2842. "var_type" "FIELD_INTEGER"
  2843. "bonus_strength" "3"
  2844. }
  2845. "02"
  2846. {
  2847. "var_type" "FIELD_INTEGER"
  2848. "bonus_agility" "3"
  2849. }
  2850. "03"
  2851. {
  2852. "var_type" "FIELD_INTEGER"
  2853. "bonus_intellect" "6"
  2854. }
  2855. "04"
  2856. {
  2857. "var_type" "FIELD_INTEGER"
  2858. "bonus_damage" "3"
  2859. }
  2860. }
  2861. }
  2862.  
  2863.  
  2864. //=================================================================================================================
  2865. // Recipe: Mekasmm
  2866. //=================================================================================================================
  2867. "item_recipe_mekansm"
  2868. {
  2869. // General
  2870. //-------------------------------------------------------------------------------------------------------------
  2871. "ID" "78" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2872. "Model" "models/props_gameplay/recipe.mdl"
  2873.  
  2874. // Item Info
  2875. //-------------------------------------------------------------------------------------------------------------
  2876. "ItemCost" "900"
  2877. "ItemShopTags" ""
  2878.  
  2879. // Recipe
  2880. //-------------------------------------------------------------------------------------------------------------
  2881. "ItemRecipe" "1"
  2882. "ItemResult" "item_mekansm"
  2883. "ItemRequirements"
  2884. {
  2885. "01" "item_headdress;item_buckler"
  2886. }
  2887. }
  2888.  
  2889. //=================================================================================================================
  2890. // Mekansm
  2891. //=================================================================================================================
  2892. "item_mekansm"
  2893. {
  2894. // General
  2895. //-------------------------------------------------------------------------------------------------------------
  2896. "ID" "79" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2897. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  2898. "FightRecapLevel" "2"
  2899.  
  2900. // Stats
  2901. //-------------------------------------------------------------------------------------------------------------
  2902. "AbilityCooldown" "45.0"
  2903.  
  2904. // Item Info
  2905. //-------------------------------------------------------------------------------------------------------------
  2906. "AbilityManaCost" "150"
  2907. "ItemCost" "2300"
  2908. "ItemShopTags" "agi;int;str;armor;boost_health"
  2909. "ItemQuality" "rare"
  2910. "ItemAliases" "mechanism;mekansm"
  2911. "ItemAlertable" "1"
  2912. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  2913.  
  2914. // Special
  2915. //-------------------------------------------------------------------------------------------------------------
  2916. "AbilitySpecial"
  2917. {
  2918. "01"
  2919. {
  2920. "var_type" "FIELD_INTEGER"
  2921. "bonus_all_stats" "5"
  2922. }
  2923. "02"
  2924. {
  2925. "var_type" "FIELD_INTEGER"
  2926. "bonus_armor" "5"
  2927. }
  2928. "03"
  2929. {
  2930. "var_type" "FIELD_INTEGER"
  2931. "aura_radius" "750"
  2932. }
  2933. "04"
  2934. {
  2935. "var_type" "FIELD_INTEGER"
  2936. "aura_health_regen" "4"
  2937. }
  2938. "05"
  2939. {
  2940. "var_type" "FIELD_INTEGER"
  2941. "heal_amount" "250"
  2942. }
  2943. "06"
  2944. {
  2945. "var_type" "FIELD_INTEGER"
  2946. "heal_radius" "750"
  2947. }
  2948. "07"
  2949. {
  2950. "var_type" "FIELD_INTEGER"
  2951. "heal_bonus_armor" "2"
  2952. }
  2953. "08"
  2954. {
  2955. "var_type" "FIELD_FLOAT"
  2956. "heal_armor_duration" "25.0"
  2957. }
  2958. }
  2959. }
  2960.  
  2961. //=================================================================================================================
  2962. // Recipe: Vladimir
  2963. //=================================================================================================================
  2964. "item_recipe_vladmir"
  2965. {
  2966. // General
  2967. //-------------------------------------------------------------------------------------------------------------
  2968. "ID" "80" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2969. "Model" "models/props_gameplay/recipe.mdl"
  2970.  
  2971. // Item Info
  2972. //-------------------------------------------------------------------------------------------------------------
  2973. "ItemCost" "300"
  2974. "ItemShopTags" ""
  2975.  
  2976. // Recipe
  2977. //-------------------------------------------------------------------------------------------------------------
  2978. "ItemRecipe" "1"
  2979. "ItemResult" "item_vladmir"
  2980. "ItemRequirements"
  2981. {
  2982. "01" "item_ring_of_regen;item_ring_of_basilius;item_lifesteal"
  2983. }
  2984. }
  2985.  
  2986. //=================================================================================================================
  2987. // Vladimir
  2988. //=================================================================================================================
  2989. "item_vladmir"
  2990. {
  2991. // General
  2992. //-------------------------------------------------------------------------------------------------------------
  2993. "ID" "81" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  2994. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  2995.  
  2996. // Item Info
  2997. //-------------------------------------------------------------------------------------------------------------
  2998. "ItemCost" "2050"
  2999. "ItemShopTags" "lifesteal;damage;armor;regen_mana"
  3000. "ItemQuality" "rare"
  3001. "ItemAliases" "vladmir's offering;vlads"
  3002. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  3003.  
  3004. // Special
  3005. //-------------------------------------------------------------------------------------------------------------
  3006. "AbilitySpecial"
  3007. {
  3008. "01"
  3009. {
  3010. "var_type" "FIELD_INTEGER"
  3011. "aura_radius" "900"
  3012. }
  3013. "02"
  3014. {
  3015. "var_type" "FIELD_INTEGER"
  3016. "vampiric_aura" "16"
  3017. }
  3018. "04"
  3019. {
  3020. "var_type" "FIELD_INTEGER"
  3021. "damage_aura" "15"
  3022. }
  3023. "06"
  3024. {
  3025. "var_type" "FIELD_INTEGER"
  3026. "armor_aura" "5"
  3027. }
  3028. "08"
  3029. {
  3030. "var_type" "FIELD_FLOAT"
  3031. "mana_regen_aura" "0.8"
  3032. }
  3033. "09"
  3034. {
  3035. "var_type" "FIELD_INTEGER"
  3036. "hp_regen" "2"
  3037. }
  3038.  
  3039. }
  3040. }
  3041.  
  3042. //=================================================================================================================
  3043. // Flying Courier
  3044. //=================================================================================================================
  3045. "item_flying_courier"
  3046. {
  3047. // General
  3048. //-------------------------------------------------------------------------------------------------------------
  3049. "ID" "84" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3050. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  3051. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES"
  3052.  
  3053. // Item Info
  3054. //-------------------------------------------------------------------------------------------------------------
  3055. "ItemCost" "220"
  3056. "ItemShopTags" "consumable"
  3057. "ItemQuality" "consumable"
  3058. "ItemAliases" "crow;flying courier"
  3059. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  3060. "ItemStockMax" "1"
  3061. "ItemStockInitial" "0"
  3062. "ItemStockTime" "270.0"
  3063. "ItemSupport" "1"
  3064.  
  3065. }
  3066.  
  3067. //=================================================================================================================
  3068. // Recipe: Buckler
  3069. //=================================================================================================================
  3070. "item_recipe_buckler"
  3071. {
  3072. // General
  3073. //-------------------------------------------------------------------------------------------------------------
  3074. "ID" "85" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3075. "Model" "models/props_gameplay/recipe.mdl"
  3076.  
  3077. // Item Info
  3078. //-------------------------------------------------------------------------------------------------------------
  3079. "ItemCost" "200"
  3080. "ItemShopTags" ""
  3081.  
  3082. // Recipe
  3083. //-------------------------------------------------------------------------------------------------------------
  3084. "ItemRecipe" "1"
  3085. "ItemResult" "item_buckler"
  3086. "ItemRequirements"
  3087. {
  3088. "01" "item_chainmail;item_branches"
  3089. }
  3090. }
  3091.  
  3092. //=================================================================================================================
  3093. // Buckler
  3094. //=================================================================================================================
  3095. "item_buckler"
  3096. {
  3097. // General
  3098. //-------------------------------------------------------------------------------------------------------------
  3099. "ID" "86" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3100. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  3101.  
  3102. // Stats
  3103. //-------------------------------------------------------------------------------------------------------------
  3104. "AbilityCooldown" "25.0"
  3105.  
  3106. // Item Info
  3107. //-------------------------------------------------------------------------------------------------------------
  3108. "AbilityManaCost" "10"
  3109. "ItemCost" "800"
  3110. "ItemShopTags" "armor;boost_armor"
  3111. "ItemQuality" "rare"
  3112. "ItemAliases" "buckler"
  3113.  
  3114. // Special
  3115. //-------------------------------------------------------------------------------------------------------------
  3116. "AbilitySpecial"
  3117. {
  3118. "01"
  3119. {
  3120. "var_type" "FIELD_INTEGER"
  3121. "bonus_armor" "5"
  3122. }
  3123. "02"
  3124. {
  3125. "var_type" "FIELD_INTEGER"
  3126. "bonus_all_stats" "2"
  3127. }
  3128. "03"
  3129. {
  3130. "var_type" "FIELD_INTEGER"
  3131. "bonus_aoe_radius" "750"
  3132. }
  3133. "04"
  3134. {
  3135. "var_type" "FIELD_INTEGER"
  3136. "bonus_aoe_armor" "2"
  3137. }
  3138. "05"
  3139. {
  3140. "var_type" "FIELD_FLOAT"
  3141. "bonus_aoe_duration" "30.0"
  3142. }
  3143. "06"
  3144. {
  3145. "var_type" "FIELD_FLOAT"
  3146. "bonus_aoe_duration_hero" "25.0"
  3147. }
  3148. }
  3149. }
  3150.  
  3151. //=================================================================================================================
  3152. // Recipe: Ring of Basilius
  3153. //=================================================================================================================
  3154. "item_recipe_ring_of_basilius"
  3155. {
  3156. // General
  3157. //-------------------------------------------------------------------------------------------------------------
  3158. "ID" "87" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3159.  
  3160. // Item Info
  3161. //-------------------------------------------------------------------------------------------------------------
  3162. "ItemCost" "0"
  3163. "ItemShopTags" ""
  3164.  
  3165. // Sound
  3166. //-------------------------------------------------------------------------------------------------------------
  3167. "UIPickupSound" "Item.PickUpRingShop"
  3168. "UIDropSound" "Item.DropRingShop"
  3169. "WorldDropSound" "Item.DropRingWorld"
  3170.  
  3171. // Recipe
  3172. //-------------------------------------------------------------------------------------------------------------
  3173. "ItemRecipe" "1"
  3174. "ItemResult" "item_ring_of_basilius"
  3175. "ItemRequirements"
  3176. {
  3177. "01" "item_sobi_mask;item_ring_of_protection"
  3178. }
  3179. }
  3180.  
  3181. //=================================================================================================================
  3182. // Ring of Basilius
  3183. //=================================================================================================================
  3184. "item_ring_of_basilius"
  3185. {
  3186. // General
  3187. //-------------------------------------------------------------------------------------------------------------
  3188. "ID" "88" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3189. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  3190.  
  3191. // Item Info
  3192. //-------------------------------------------------------------------------------------------------------------
  3193. "ItemCost" "500"
  3194. "ItemShopTags" "damage;regen_mana;armor"
  3195. "ItemQuality" "rare"
  3196. "ItemAliases" "rob;ring of basilius"
  3197. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  3198.  
  3199.  
  3200. // Sound
  3201. //-------------------------------------------------------------------------------------------------------------
  3202. "UIPickupSound" "Item.PickUpRingShop"
  3203. "UIDropSound" "Item.DropRingShop"
  3204. "WorldDropSound" "Item.DropRingWorld"
  3205.  
  3206. // Special
  3207. //-------------------------------------------------------------------------------------------------------------
  3208. "AbilitySpecial"
  3209. {
  3210. "01"
  3211. {
  3212. "var_type" "FIELD_INTEGER"
  3213. "bonus_damage" "6"
  3214. }
  3215. "02"
  3216. {
  3217. "var_type" "FIELD_INTEGER"
  3218. "aura_radius" "900"
  3219. }
  3220. "03"
  3221. {
  3222. "var_type" "FIELD_FLOAT"
  3223. "aura_mana_regen" "0.65"
  3224. }
  3225. "04"
  3226. {
  3227. "var_type" "FIELD_INTEGER"
  3228. "aura_bonus_armor" "2"
  3229. }
  3230. "05"
  3231. {
  3232. "var_type" "FIELD_INTEGER"
  3233. "bonus_armor" "1"
  3234. }
  3235. }
  3236. }
  3237.  
  3238. //=================================================================================================================
  3239. // Recipe: Pipe
  3240. //=================================================================================================================
  3241. "item_recipe_pipe"
  3242. {
  3243. // General
  3244. //-------------------------------------------------------------------------------------------------------------
  3245. "ID" "89" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3246. "Model" "models/props_gameplay/recipe.mdl"
  3247.  
  3248. // Item Info
  3249. //-------------------------------------------------------------------------------------------------------------
  3250. "ItemCost" "900"
  3251. "ItemShopTags" ""
  3252.  
  3253. // Recipe
  3254. //-------------------------------------------------------------------------------------------------------------
  3255. "ItemRecipe" "1"
  3256. "ItemResult" "item_pipe"
  3257. "ItemRequirements"
  3258. {
  3259. "01" "item_hood_of_defiance;item_headdress"
  3260. }
  3261. }
  3262.  
  3263. //=================================================================================================================
  3264. // Pipe
  3265. //=================================================================================================================
  3266. "item_pipe"
  3267. {
  3268. // General
  3269. //-------------------------------------------------------------------------------------------------------------
  3270. "ID" "90" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3271. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  3272. "FightRecapLevel" "2"
  3273.  
  3274. // Stats
  3275. //-------------------------------------------------------------------------------------------------------------
  3276. "AbilityCooldown" "60.0"
  3277. "AbilityManaCost" "100"
  3278.  
  3279. // Item Info
  3280. //-------------------------------------------------------------------------------------------------------------
  3281. "ItemCost" "3625"
  3282. "ItemShopTags" "regen_health;boost_magic_resist"
  3283. "ItemQuality" "rare"
  3284. "ItemAliases" "pipe of insight"
  3285. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  3286. "ItemAlertable" "1"
  3287.  
  3288. // Special
  3289. //-------------------------------------------------------------------------------------------------------------
  3290. "AbilitySpecial"
  3291. {
  3292. "01"
  3293. {
  3294. "var_type" "FIELD_INTEGER"
  3295. "health_regen" "8"
  3296. }
  3297. "02"
  3298. {
  3299. "var_type" "FIELD_INTEGER"
  3300. "magic_resistance" "30"
  3301. }
  3302. "03"
  3303. {
  3304. "var_type" "FIELD_INTEGER"
  3305. "barrier_radius" "900"
  3306. }
  3307. "04"
  3308. {
  3309. "var_type" "FIELD_INTEGER"
  3310. "barrier_block" "400"
  3311. }
  3312. "05"
  3313. {
  3314. "var_type" "FIELD_FLOAT"
  3315. "barrier_duration" "10.0"
  3316. }
  3317. "06"
  3318. {
  3319. "var_type" "FIELD_FLOAT"
  3320. "barrier_debuff_duration" "50.0"
  3321. }
  3322. "07"
  3323. {
  3324. "var_type" "FIELD_INTEGER"
  3325. "tooltip_resist" "30"
  3326. }
  3327. "08"
  3328. {
  3329. "var_type" "FIELD_INTEGER"
  3330. "aura_radius" "750"
  3331. }
  3332. "09"
  3333. {
  3334. "var_type" "FIELD_INTEGER"
  3335. "aura_health_regen" "4"
  3336. }
  3337. }
  3338. }
  3339.  
  3340. //=================================================================================================================
  3341. // Recipe: Urn of Shadows
  3342. //=================================================================================================================
  3343. "item_recipe_urn_of_shadows"
  3344. {
  3345. // General
  3346. //-------------------------------------------------------------------------------------------------------------
  3347. "ID" "91" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3348. "Model" "models/props_gameplay/recipe.mdl"
  3349.  
  3350. // Item Info
  3351. //-------------------------------------------------------------------------------------------------------------
  3352. "ItemCost" "250"
  3353. "ItemShopTags" ""
  3354.  
  3355. // Recipe
  3356. //-------------------------------------------------------------------------------------------------------------
  3357. "ItemRecipe" "1"
  3358. "ItemResult" "item_urn_of_shadows"
  3359. "ItemRequirements"
  3360. {
  3361. "01" "item_sobi_mask;item_gauntlets;item_gauntlets"
  3362. }
  3363. }
  3364.  
  3365. //=================================================================================================================
  3366. // Urn of Shadows
  3367. //=================================================================================================================
  3368. "item_urn_of_shadows"
  3369. {
  3370. // General
  3371. //-------------------------------------------------------------------------------------------------------------
  3372. "ID" "92" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3373. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3374. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  3375. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  3376. "FightRecapLevel" "1"
  3377.  
  3378. // Stats
  3379. //-------------------------------------------------------------------------------------------------------------
  3380. "AbilityCastRange" "950"
  3381. "AbilityCastPoint" "0.0"
  3382.  
  3383. // Stats
  3384. //-------------------------------------------------------------------------------------------------------------
  3385. "AbilityCooldown" "7.0"
  3386.  
  3387. // Items
  3388. //-------------------------------------------------------------------------------------------------------------
  3389. "ItemRequiresCharges" "1"
  3390. "ItemDisplayCharges" "1"
  3391. "ItemStackable" "0"
  3392. "ItemPermanent" "1"
  3393.  
  3394. // Item Info
  3395. //-------------------------------------------------------------------------------------------------------------
  3396. "ItemCost" "875"
  3397. "ItemShopTags" "regen_mana;str;boost_health"
  3398. "ItemQuality" "rare"
  3399. "ItemAliases" "urn of shadows"
  3400. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  3401.  
  3402. // Special
  3403. //-------------------------------------------------------------------------------------------------------------
  3404. "AbilitySpecial"
  3405. {
  3406. "01"
  3407. {
  3408. "var_type" "FIELD_INTEGER"
  3409. "mana_regen" "50"
  3410. }
  3411. "02"
  3412. {
  3413. "var_type" "FIELD_INTEGER"
  3414. "bonus_strength" "6"
  3415. }
  3416. "03"
  3417. {
  3418. "var_type" "FIELD_INTEGER"
  3419. "soul_radius" "1400"
  3420. }
  3421. "04"
  3422. {
  3423. "var_type" "FIELD_INTEGER"
  3424. "soul_initial_charge" "2"
  3425. }
  3426. "05"
  3427. {
  3428. "var_type" "FIELD_INTEGER"
  3429. "soul_additional_charges" "1"
  3430. }
  3431. "06"
  3432. {
  3433. "var_type" "FIELD_INTEGER"
  3434. "soul_heal_amount" "400"
  3435. }
  3436. "07"
  3437. {
  3438. "var_type" "FIELD_FLOAT"
  3439. "soul_heal_duration" "8.0"
  3440. }
  3441. "08"
  3442. {
  3443. "var_type" "FIELD_INTEGER"
  3444. "soul_damage_amount" "150"
  3445. }
  3446. "09"
  3447. {
  3448. "var_type" "FIELD_FLOAT"
  3449. "soul_damage_duration" "8.0"
  3450. }
  3451. "10"
  3452. {
  3453. "var_type" "FIELD_FLOAT"
  3454. "soul_heal_interval" "0.25"
  3455. }
  3456. }
  3457. }
  3458.  
  3459. //=================================================================================================================
  3460. // Recipe: Headdress
  3461. //=================================================================================================================
  3462. "item_recipe_headdress"
  3463. {
  3464. // General
  3465. //-------------------------------------------------------------------------------------------------------------
  3466. "ID" "93" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3467. "Model" "models/props_gameplay/recipe.mdl"
  3468.  
  3469. // Item Info
  3470. //-------------------------------------------------------------------------------------------------------------
  3471. "ItemCost" "200"
  3472. "ItemShopTags" ""
  3473.  
  3474. // Recipe
  3475. //-------------------------------------------------------------------------------------------------------------
  3476. "ItemRecipe" "1"
  3477. "ItemResult" "item_headdress"
  3478. "ItemRequirements"
  3479. {
  3480. "01" "item_ring_of_regen;item_branches"
  3481. }
  3482. }
  3483.  
  3484. //=================================================================================================================
  3485. // Headdress
  3486. //=================================================================================================================
  3487. "item_headdress"
  3488. {
  3489. // General
  3490. //-------------------------------------------------------------------------------------------------------------
  3491. "ID" "94" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3492. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  3493.  
  3494. // Item Info
  3495. //-------------------------------------------------------------------------------------------------------------
  3496. "ItemCost" "600"
  3497. "ItemShopTags" "str;int;agi;regen_health"
  3498. "ItemQuality" "rare"
  3499. "ItemAliases" "headdress"
  3500.  
  3501. // Special
  3502. //-------------------------------------------------------------------------------------------------------------
  3503. "AbilitySpecial"
  3504. {
  3505. "01"
  3506. {
  3507. "var_type" "FIELD_INTEGER"
  3508. "bonus_all_stats" "2"
  3509. }
  3510. "02"
  3511. {
  3512. "var_type" "FIELD_INTEGER"
  3513. "aura_radius" "750"
  3514. }
  3515. "03"
  3516. {
  3517. "var_type" "FIELD_INTEGER"
  3518. "aura_health_regen" "3"
  3519. }
  3520. }
  3521. }
  3522.  
  3523. //=================================================================================================================
  3524. // Recipe: Sheepstick
  3525. //=================================================================================================================
  3526. "item_recipe_sheepstick"
  3527. {
  3528. // General
  3529. //-------------------------------------------------------------------------------------------------------------
  3530. "ID" "95" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3531. "Model" "models/props_gameplay/recipe.mdl"
  3532.  
  3533. // Item Info
  3534. //-------------------------------------------------------------------------------------------------------------
  3535. "ItemCost" "0"
  3536. "ItemShopTags" ""
  3537.  
  3538. // Recipe
  3539. //-------------------------------------------------------------------------------------------------------------
  3540. "ItemRecipe" "1"
  3541. "ItemResult" "item_sheepstick"
  3542. "ItemRequirements"
  3543. {
  3544. "01" "item_mystic_staff;item_ultimate_orb;item_void_stone"
  3545. }
  3546. }
  3547.  
  3548. //=================================================================================================================
  3549. // Sheepstick
  3550. //=================================================================================================================
  3551. "item_sheepstick"
  3552. {
  3553. // General
  3554. //-------------------------------------------------------------------------------------------------------------
  3555. "ID" "96" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3556. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3557. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3558. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3559. "FightRecapLevel" "2"
  3560.  
  3561. // Stats
  3562. //-------------------------------------------------------------------------------------------------------------
  3563. "AbilityCastRange" "800"
  3564. "AbilityCastPoint" "0.0"
  3565.  
  3566. // Stats
  3567. //-------------------------------------------------------------------------------------------------------------
  3568. "AbilityCooldown" "35.0"
  3569.  
  3570. // Item Info
  3571. //-------------------------------------------------------------------------------------------------------------
  3572. "AbilityManaCost" "100"
  3573. "ItemCost" "5675"
  3574. "ItemShopTags" "int;regen_mana;agi;hard_to_tag"
  3575. "ItemQuality" "rare"
  3576. "ItemAliases" "hex;sheepstick;scythe of vyse"
  3577. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  3578.  
  3579. // Special
  3580. //-------------------------------------------------------------------------------------------------------------
  3581. "AbilitySpecial"
  3582. {
  3583. "01"
  3584. {
  3585. "var_type" "FIELD_INTEGER"
  3586. "bonus_strength" "10"
  3587. }
  3588. "02"
  3589. {
  3590. "var_type" "FIELD_INTEGER"
  3591. "bonus_agility" "10"
  3592. }
  3593. "03"
  3594. {
  3595. "var_type" "FIELD_INTEGER"
  3596. "bonus_intellect" "35"
  3597. }
  3598. "04"
  3599. {
  3600. "var_type" "FIELD_INTEGER"
  3601. "bonus_mana_regen" "150"
  3602. }
  3603. "05"
  3604. {
  3605. "var_type" "FIELD_FLOAT"
  3606. "sheep_duration" "3.5"
  3607. }
  3608. "06"
  3609. {
  3610. "var_type" "FIELD_FLOAT"
  3611. "sheep_movement_speed" "140"
  3612. }
  3613. }
  3614. }
  3615.  
  3616. //=================================================================================================================
  3617. // Recipe: Orchid
  3618. //=================================================================================================================
  3619. "item_recipe_orchid"
  3620. {
  3621. // General
  3622. //-------------------------------------------------------------------------------------------------------------
  3623. "ID" "97" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3624. "Model" "models/props_gameplay/recipe.mdl"
  3625.  
  3626. // Item Info
  3627. //-------------------------------------------------------------------------------------------------------------
  3628. "ItemCost" "775"
  3629. "ItemShopTags" ""
  3630.  
  3631. // Recipe
  3632. //-------------------------------------------------------------------------------------------------------------
  3633. "ItemRecipe" "1"
  3634. "ItemResult" "item_orchid"
  3635. "ItemRequirements"
  3636. {
  3637. "01" "item_oblivion_staff;item_oblivion_staff"
  3638. }
  3639. }
  3640.  
  3641. //=================================================================================================================
  3642. // Orchid
  3643. //=================================================================================================================
  3644. "item_orchid"
  3645. {
  3646. // General
  3647. //-------------------------------------------------------------------------------------------------------------
  3648. "ID" "98" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3649. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3650. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3651. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3652. "FightRecapLevel" "1"
  3653.  
  3654. // Stats
  3655. //-------------------------------------------------------------------------------------------------------------
  3656. "AbilityCastRange" "900"
  3657. "AbilityCastPoint" "0.0"
  3658. "AbilityCooldown" "18.0"
  3659.  
  3660. // Item Info
  3661. //-------------------------------------------------------------------------------------------------------------
  3662. "AbilityManaCost" "100"
  3663. "ItemCost" "5025"
  3664. "ItemShopTags" "int;attack_speed;damage;regen_mana;damage;hard_to_tag"
  3665. "ItemQuality" "rare"
  3666. "ItemAliases" "orchid malevolence"
  3667. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  3668.  
  3669. // Special
  3670. //-------------------------------------------------------------------------------------------------------------
  3671. "AbilitySpecial"
  3672. {
  3673. "01"
  3674. {
  3675. "var_type" "FIELD_INTEGER"
  3676. "bonus_intellect" "25"
  3677. }
  3678. "02"
  3679. {
  3680. "var_type" "FIELD_INTEGER"
  3681. "bonus_attack_speed" "30"
  3682. }
  3683. "03"
  3684. {
  3685. "var_type" "FIELD_INTEGER"
  3686. "bonus_damage" "30"
  3687. }
  3688. "04"
  3689. {
  3690. "var_type" "FIELD_INTEGER"
  3691. "bonus_mana_regen" "150"
  3692. }
  3693. "05"
  3694. {
  3695. "var_type" "FIELD_FLOAT"
  3696. "silence_duration" "5"
  3697. }
  3698. "06"
  3699. {
  3700. "var_type" "FIELD_FLOAT"
  3701. "silence_damage_percent" "30"
  3702. }
  3703. }
  3704. }
  3705.  
  3706. //=================================================================================================================
  3707. // Recipe: Cyclone
  3708. //=================================================================================================================
  3709. "item_recipe_cyclone"
  3710. {
  3711. // General
  3712. //-------------------------------------------------------------------------------------------------------------
  3713. "ID" "99" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3714. "Model" "models/props_gameplay/recipe.mdl"
  3715.  
  3716. // Item Info
  3717. //-------------------------------------------------------------------------------------------------------------
  3718. "ItemCost" "500"
  3719. "ItemShopTags" ""
  3720.  
  3721. // Recipe
  3722. //-------------------------------------------------------------------------------------------------------------
  3723. "ItemRecipe" "1"
  3724. "ItemResult" "item_cyclone"
  3725. "ItemRequirements"
  3726. {
  3727. "01" "item_staff_of_wizardry;item_sobi_mask;item_void_stone"
  3728. }
  3729. }
  3730.  
  3731. //=================================================================================================================
  3732. // Cyclone
  3733. //=================================================================================================================
  3734. "item_cyclone"
  3735. {
  3736. // General
  3737. //-------------------------------------------------------------------------------------------------------------
  3738. "ID" "100" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3739. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  3740. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  3741. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM"
  3742. "FightRecapLevel" "1"
  3743.  
  3744. // Stats
  3745. //-------------------------------------------------------------------------------------------------------------
  3746. "AbilityCastRange" "700"
  3747. "AbilityCastPoint" "0.0"
  3748.  
  3749. // Stats
  3750. //-------------------------------------------------------------------------------------------------------------
  3751. "AbilityCooldown" "23.0"
  3752.  
  3753. // Item Info
  3754. //-------------------------------------------------------------------------------------------------------------
  3755. "AbilityManaCost" "75"
  3756. "ItemCost" "2700"
  3757. "ItemShopTags" "int;regen_mana;move_speed;hard_to_tag"
  3758. "ItemQuality" "rare"
  3759. "ItemAliases" "cyclone euls;eul's scepter of divinity"
  3760. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  3761.  
  3762. // Special
  3763. //-------------------------------------------------------------------------------------------------------------
  3764. "AbilitySpecial"
  3765. {
  3766. "01"
  3767. {
  3768. "var_type" "FIELD_INTEGER"
  3769. "bonus_intellect" "10"
  3770. }
  3771. "02"
  3772. {
  3773. "var_type" "FIELD_INTEGER"
  3774. "bonus_mana_regen" "150"
  3775. }
  3776. "03"
  3777. {
  3778. "var_type" "FIELD_INTEGER"
  3779. "bonus_movement_speed" "40"
  3780. }
  3781. "04"
  3782. {
  3783. "var_type" "FIELD_FLOAT"
  3784. "cyclone_duration" "2.5"
  3785. }
  3786. }
  3787. }
  3788.  
  3789. //=================================================================================================================
  3790. // Recipe: Force Staff
  3791. //=================================================================================================================
  3792. "item_recipe_force_staff"
  3793. {
  3794. // General
  3795. //-------------------------------------------------------------------------------------------------------------
  3796. "ID" "101" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3797. "Model" "models/props_gameplay/recipe.mdl"
  3798.  
  3799. // Item Info
  3800. //-------------------------------------------------------------------------------------------------------------
  3801. "ItemCost" "900"
  3802. "ItemShopTags" ""
  3803.  
  3804. // Recipe
  3805. //-------------------------------------------------------------------------------------------------------------
  3806. "ItemRecipe" "1"
  3807. "ItemResult" "item_force_staff"
  3808. "ItemRequirements"
  3809. {
  3810. "01" "item_staff_of_wizardry;item_ring_of_regen"
  3811. }
  3812. }
  3813.  
  3814. //=================================================================================================================
  3815. // Force Staff
  3816. //=================================================================================================================
  3817. "item_force_staff"
  3818. {
  3819. // General
  3820. //-------------------------------------------------------------------------------------------------------------
  3821. "ID" "102" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3822. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  3823. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  3824. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_MECHANICAL"
  3825. "FightRecapLevel" "1"
  3826.  
  3827. // Stats
  3828. //-------------------------------------------------------------------------------------------------------------
  3829. "AbilityCastRange" "800"
  3830. "AbilityCastPoint" "0.0"
  3831. "AbilityCooldown" "20.0"
  3832.  
  3833. // Item Info
  3834. //-------------------------------------------------------------------------------------------------------------
  3835. "AbilityManaCost" "25"
  3836. "ItemCost" "2250"
  3837. "ItemShopTags" "int;damage;attack_speed;hard_to_tag"
  3838. "ItemQuality" "rare"
  3839. "ItemAliases" "fs;force staff"
  3840. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  3841.  
  3842. // Special
  3843. //-------------------------------------------------------------------------------------------------------------
  3844. "AbilitySpecial"
  3845. {
  3846. "01"
  3847. {
  3848. "var_type" "FIELD_INTEGER"
  3849. "bonus_intellect" "10"
  3850. }
  3851. "02"
  3852. {
  3853. "var_type" "FIELD_INTEGER"
  3854. "bonus_health_regen" "3"
  3855. }
  3856. "03"
  3857. {
  3858. "var_type" "FIELD_INTEGER"
  3859. "push_length" "600"
  3860. }
  3861. }
  3862. }
  3863.  
  3864. //=================================================================================================================
  3865. // Recipe: Dagon
  3866. //=================================================================================================================
  3867. "item_recipe_dagon"
  3868. {
  3869. // General
  3870. //-------------------------------------------------------------------------------------------------------------
  3871. "ID" "103" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3872. "Model" "models/props_gameplay/recipe.mdl"
  3873.  
  3874. // Item Info
  3875. //-------------------------------------------------------------------------------------------------------------
  3876. "ItemCost" "1250"
  3877. "ItemShopTags" ""
  3878.  
  3879. // Recipe
  3880. //-------------------------------------------------------------------------------------------------------------
  3881. "ItemRecipe" "1"
  3882. "ItemResult" "item_dagon"
  3883. "ItemRequirements"
  3884. {
  3885. "01" "item_staff_of_wizardry;item_null_talisman"
  3886. }
  3887. }
  3888.  
  3889. "item_recipe_dagon_2"
  3890. {
  3891. // General
  3892. //-------------------------------------------------------------------------------------------------------------
  3893. "ID" "197" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3894. "Model" "models/props_gameplay/recipe.mdl"
  3895.  
  3896. // Item Info
  3897. //-------------------------------------------------------------------------------------------------------------
  3898. "ItemCost" "0"
  3899. "ItemShopTags" ""
  3900.  
  3901. // Recipe
  3902. //-------------------------------------------------------------------------------------------------------------
  3903. "ItemRecipe" "1"
  3904. "ItemResult" "item_dagon_2"
  3905. "ItemRequirements"
  3906. {
  3907. "02" "item_dagon;item_recipe_dagon"
  3908. }
  3909. }
  3910.  
  3911. "item_recipe_dagon_3"
  3912. {
  3913. // General
  3914. //-------------------------------------------------------------------------------------------------------------
  3915. "ID" "198" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3916. "Model" "models/props_gameplay/recipe.mdl"
  3917.  
  3918. // Item Info
  3919. //-------------------------------------------------------------------------------------------------------------
  3920. "ItemCost" "0"
  3921. "ItemShopTags" ""
  3922.  
  3923. // Recipe
  3924. //-------------------------------------------------------------------------------------------------------------
  3925. "ItemRecipe" "1"
  3926. "ItemResult" "item_dagon_3"
  3927. "ItemRequirements"
  3928. {
  3929. "02" "item_dagon_2;item_recipe_dagon"
  3930. }
  3931. }
  3932.  
  3933. "item_recipe_dagon_4"
  3934. {
  3935. // General
  3936. //-------------------------------------------------------------------------------------------------------------
  3937. "ID" "199" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3938. "Model" "models/props_gameplay/recipe.mdl"
  3939.  
  3940. // Item Info
  3941. //-------------------------------------------------------------------------------------------------------------
  3942. "ItemCost" "0"
  3943. "ItemShopTags" ""
  3944.  
  3945. // Recipe
  3946. //-------------------------------------------------------------------------------------------------------------
  3947. "ItemRecipe" "1"
  3948. "ItemResult" "item_dagon_4"
  3949. "ItemRequirements"
  3950. {
  3951. "02" "item_dagon_3;item_recipe_dagon"
  3952. }
  3953. }
  3954.  
  3955. "item_recipe_dagon_5"
  3956. {
  3957. // General
  3958. //-------------------------------------------------------------------------------------------------------------
  3959. "ID" "200" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3960. "Model" "models/props_gameplay/recipe.mdl"
  3961.  
  3962. // Item Info
  3963. //-------------------------------------------------------------------------------------------------------------
  3964. "ItemCost" "0"
  3965. "ItemShopTags" ""
  3966.  
  3967. // Recipe
  3968. //-------------------------------------------------------------------------------------------------------------
  3969. "ItemRecipe" "1"
  3970. "ItemResult" "item_dagon_5"
  3971. "ItemRequirements"
  3972. {
  3973. "02" "item_dagon_4;item_recipe_dagon"
  3974. }
  3975. }
  3976.  
  3977. //=================================================================================================================
  3978. // Dagon
  3979. //=================================================================================================================
  3980. "item_dagon"
  3981. {
  3982. // General
  3983. //-------------------------------------------------------------------------------------------------------------
  3984. "ID" "104" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  3985. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  3986. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  3987. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  3988. "FightRecapLevel" "1"
  3989.  
  3990. // Stats
  3991. //-------------------------------------------------------------------------------------------------------------
  3992. "AbilityCastRange" "600 650 700 750 800"
  3993. "AbilityCastPoint" "0.0"
  3994. "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0"
  3995. "AbilitySharedCooldown" "dagon"
  3996. "MaxUpgradeLevel" "5"
  3997. "ItemBaseLevel" "1"
  3998. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  3999.  
  4000. // Item Info
  4001. //-------------------------------------------------------------------------------------------------------------
  4002. "AbilityManaCost" "180 160 140 120 100"
  4003. "ItemCost" "2800"
  4004. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4005. "ItemQuality" "rare"
  4006. "ItemAliases" "dagon 1"
  4007.  
  4008. "UpgradesItems" "item_dagon;item_dagon_2;item_dagon_3;item_dagon_4"
  4009. "UpgradeRecipe" "item_recipe_dagon"
  4010.  
  4011. // Special
  4012. //-------------------------------------------------------------------------------------------------------------
  4013. "AbilitySpecial"
  4014. {
  4015. "01"
  4016. {
  4017. "var_type" "FIELD_INTEGER"
  4018. "bonus_intellect" "13 15 17 19 21"
  4019. }
  4020. "02"
  4021. {
  4022. "var_type" "FIELD_INTEGER"
  4023. "bonus_all_stats" "3"
  4024. }
  4025. "03"
  4026. {
  4027. "var_type" "FIELD_INTEGER"
  4028. "bonus_damage" "9"
  4029. }
  4030. "04"
  4031. {
  4032. "var_type" "FIELD_INTEGER"
  4033. "damage" "400 500 600 700 800"
  4034. }
  4035. "05"
  4036. {
  4037. "var_type" "FIELD_INTEGER"
  4038. "range_tooltip" "600 650 700 750 800"
  4039. }
  4040. }
  4041. }
  4042.  
  4043. "item_dagon_2"
  4044. {
  4045. // General
  4046. //-------------------------------------------------------------------------------------------------------------
  4047. "ID" "201" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4048. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4049. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4050. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4051. "FightRecapLevel" "1"
  4052.  
  4053. // Stats
  4054. //-------------------------------------------------------------------------------------------------------------
  4055. "AbilityCastRange" "600 650 700 750 800"
  4056. "AbilityCastPoint" "0.0"
  4057. "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0"
  4058. "AbilitySharedCooldown" "dagon"
  4059. "MaxUpgradeLevel" "5"
  4060. "ItemBaseLevel" "2"
  4061. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4062.  
  4063. // Item Info
  4064. //-------------------------------------------------------------------------------------------------------------
  4065. "AbilityManaCost" "180 160 140 120 100"
  4066. "ItemCost" "2850"
  4067. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4068. "ItemQuality" "rare"
  4069. "ItemAliases" "dagon 2"
  4070.  
  4071. "UpgradesItems" "item_dagon_2;item_dagon_3;item_dagon_4"
  4072. "UpgradeRecipe" "item_recipe_dagon"
  4073.  
  4074. // Special
  4075. //-------------------------------------------------------------------------------------------------------------
  4076. "AbilitySpecial"
  4077. {
  4078. "01"
  4079. {
  4080. "var_type" "FIELD_INTEGER"
  4081. "bonus_intellect" "13 15 17 19 21"
  4082. }
  4083. "02"
  4084. {
  4085. "var_type" "FIELD_INTEGER"
  4086. "bonus_all_stats" "3"
  4087. }
  4088. "03"
  4089. {
  4090. "var_type" "FIELD_INTEGER"
  4091. "bonus_damage" "9"
  4092. }
  4093. "04"
  4094. {
  4095. "var_type" "FIELD_INTEGER"
  4096. "damage" "400 500 600 700 800"
  4097. }
  4098. "05"
  4099. {
  4100. "var_type" "FIELD_INTEGER"
  4101. "range_tooltip" "600 650 700 750 800"
  4102. }
  4103. }
  4104. }
  4105.  
  4106. "item_dagon_3"
  4107. {
  4108. // General
  4109. //-------------------------------------------------------------------------------------------------------------
  4110. "ID" "202" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4111. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4112. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4113. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4114. "FightRecapLevel" "1"
  4115.  
  4116. // Stats
  4117. //-------------------------------------------------------------------------------------------------------------
  4118. "AbilityCastRange" "600 650 700 750 800"
  4119. "AbilityCastPoint" "0.0"
  4120. "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0"
  4121. "AbilitySharedCooldown" "dagon"
  4122. "MaxUpgradeLevel" "5"
  4123. "ItemBaseLevel" "3"
  4124. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4125.  
  4126. // Item Info
  4127. //-------------------------------------------------------------------------------------------------------------
  4128. "AbilityManaCost" "180 160 140 120 100"
  4129. "ItemCost" "2850"
  4130. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4131. "ItemQuality" "rare"
  4132. "ItemAliases" "dagon 3"
  4133.  
  4134. "UpgradesItems" "item_dagon_3;item_dagon_4"
  4135. "UpgradeRecipe" "item_recipe_dagon"
  4136.  
  4137. // Special
  4138. //-------------------------------------------------------------------------------------------------------------
  4139. "AbilitySpecial"
  4140. {
  4141. "01"
  4142. {
  4143. "var_type" "FIELD_INTEGER"
  4144. "bonus_intellect" "13 15 17 19 21"
  4145. }
  4146. "02"
  4147. {
  4148. "var_type" "FIELD_INTEGER"
  4149. "bonus_all_stats" "3"
  4150. }
  4151. "03"
  4152. {
  4153. "var_type" "FIELD_INTEGER"
  4154. "bonus_damage" "9"
  4155. }
  4156. "04"
  4157. {
  4158. "var_type" "FIELD_INTEGER"
  4159. "damage" "400 500 600 700 800"
  4160. }
  4161. "05"
  4162. {
  4163. "var_type" "FIELD_INTEGER"
  4164. "range_tooltip" "600 650 700 750 800"
  4165. }
  4166. }
  4167. }
  4168.  
  4169. "item_dagon_4"
  4170. {
  4171. // General
  4172. //-------------------------------------------------------------------------------------------------------------
  4173. "ID" "203" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4174. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4175. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4176. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4177. "FightRecapLevel" "1"
  4178.  
  4179. // Stats
  4180. //-------------------------------------------------------------------------------------------------------------
  4181. "AbilityCastRange" "600 650 700 750 800"
  4182. "AbilityCastPoint" "0.0"
  4183. "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0"
  4184. "AbilitySharedCooldown" "dagon"
  4185. "MaxUpgradeLevel" "5"
  4186. "ItemBaseLevel" "4"
  4187. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4188.  
  4189. // Item Info
  4190. //-------------------------------------------------------------------------------------------------------------
  4191. "AbilityManaCost" "180 160 140 120 100"
  4192. "ItemCost" "2850"
  4193. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4194. "ItemQuality" "rare"
  4195. "ItemAliases" "dagon 4"
  4196.  
  4197. "UpgradesItems" "item_dagon_4"
  4198. "UpgradeRecipe" "item_recipe_dagon"
  4199.  
  4200. // Special
  4201. //-------------------------------------------------------------------------------------------------------------
  4202. "AbilitySpecial"
  4203. {
  4204. "01"
  4205. {
  4206. "var_type" "FIELD_INTEGER"
  4207. "bonus_intellect" "13 15 17 19 21"
  4208. }
  4209. "02"
  4210. {
  4211. "var_type" "FIELD_INTEGER"
  4212. "bonus_all_stats" "3"
  4213. }
  4214. "03"
  4215. {
  4216. "var_type" "FIELD_INTEGER"
  4217. "bonus_damage" "9"
  4218. }
  4219. "04"
  4220. {
  4221. "var_type" "FIELD_INTEGER"
  4222. "damage" "400 500 600 700 800"
  4223. }
  4224. "05"
  4225. {
  4226. "var_type" "FIELD_INTEGER"
  4227. "range_tooltip" "600 650 700 750 800"
  4228. }
  4229. }
  4230. }
  4231.  
  4232. "item_dagon_5"
  4233. {
  4234. // General
  4235. //-------------------------------------------------------------------------------------------------------------
  4236. "ID" "204" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4237. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  4238. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  4239. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  4240. "FightRecapLevel" "1"
  4241.  
  4242. // Stats
  4243. //-------------------------------------------------------------------------------------------------------------
  4244. "AbilityCastRange" "600 650 700 750 800"
  4245. "AbilityCastPoint" "0.0"
  4246. "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0"
  4247. "AbilitySharedCooldown" "dagon"
  4248. "MaxUpgradeLevel" "5"
  4249. "ItemBaseLevel" "5"
  4250. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4251.  
  4252. // Item Info
  4253. //-------------------------------------------------------------------------------------------------------------
  4254. "AbilityManaCost" "180 160 140 120 100"
  4255. "ItemCost" "2850"
  4256. "ItemShopTags" "damage;int;str;agi;hard_to_tag"
  4257. "ItemQuality" "rare"
  4258. "ItemAliases" "dagon 5"
  4259.  
  4260. // Special
  4261. //-------------------------------------------------------------------------------------------------------------
  4262. "AbilitySpecial"
  4263. {
  4264. "01"
  4265. {
  4266. "var_type" "FIELD_INTEGER"
  4267. "bonus_intellect" "13 15 17 19 21"
  4268. }
  4269. "02"
  4270. {
  4271. "var_type" "FIELD_INTEGER"
  4272. "bonus_all_stats" "3"
  4273. }
  4274. "03"
  4275. {
  4276. "var_type" "FIELD_INTEGER"
  4277. "bonus_damage" "9"
  4278. }
  4279. "04"
  4280. {
  4281. "var_type" "FIELD_INTEGER"
  4282. "damage" "400 500 600 700 800"
  4283. }
  4284. "05"
  4285. {
  4286. "var_type" "FIELD_INTEGER"
  4287. "range_tooltip" "600 650 700 750 800"
  4288. }
  4289. }
  4290. }
  4291.  
  4292. //=================================================================================================================
  4293. // Recipe: Necronomicon
  4294. //=================================================================================================================
  4295. "item_recipe_necronomicon"
  4296. {
  4297. // General
  4298. //-------------------------------------------------------------------------------------------------------------
  4299. "ID" "105" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4300. "Model" "models/props_gameplay/recipe.mdl"
  4301.  
  4302. // Item Info
  4303. //-------------------------------------------------------------------------------------------------------------
  4304. "ItemCost" "1250"
  4305. "ItemShopTags" ""
  4306.  
  4307. // Recipe
  4308. //-------------------------------------------------------------------------------------------------------------
  4309. "ItemRecipe" "1"
  4310. "ItemResult" "item_necronomicon"
  4311. "ItemRequirements"
  4312. {
  4313. "01" "item_staff_of_wizardry;item_belt_of_strength"
  4314. }
  4315. }
  4316.  
  4317. "item_recipe_necronomicon_2"
  4318. {
  4319. // General
  4320. //-------------------------------------------------------------------------------------------------------------
  4321. "ID" "191" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4322.  
  4323. // Item Info
  4324. //-------------------------------------------------------------------------------------------------------------
  4325. "ItemCost" "0"
  4326. "ItemShopTags" ""
  4327. "ItemBaseLevel" "2"
  4328.  
  4329. // Recipe
  4330. //-------------------------------------------------------------------------------------------------------------
  4331. "ItemRecipe" "1"
  4332. "ItemResult" "item_necronomicon_2"
  4333. "ItemRequirements"
  4334. {
  4335. "01" "item_necronomicon;item_recipe_necronomicon"
  4336. }
  4337. }
  4338.  
  4339. "item_recipe_necronomicon_3"
  4340. {
  4341. // General
  4342. //-------------------------------------------------------------------------------------------------------------
  4343. "ID" "192" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4344.  
  4345. // Item Info
  4346. //-------------------------------------------------------------------------------------------------------------
  4347. "ItemCost" "0"
  4348. "ItemShopTags" ""
  4349. "ItemBaseLevel" "3"
  4350.  
  4351. // Recipe
  4352. //-------------------------------------------------------------------------------------------------------------
  4353. "ItemRecipe" "1"
  4354. "ItemResult" "item_necronomicon_3"
  4355. "ItemRequirements"
  4356. {
  4357. "01" "item_necronomicon_2;item_recipe_necronomicon"
  4358. }
  4359. }
  4360.  
  4361. //=================================================================================================================
  4362. // Necronomicon
  4363. //=================================================================================================================
  4364. "item_necronomicon"
  4365. {
  4366. // General
  4367. //-------------------------------------------------------------------------------------------------------------
  4368. "ID" "106" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4369. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4370.  
  4371. // Stats
  4372. //-------------------------------------------------------------------------------------------------------------
  4373. "AbilityCastPoint" "0.0"
  4374. "AbilityCooldown" "95.0"
  4375. "AbilitySharedCooldown" "necronomicon"
  4376. "FightRecapLevel" "1"
  4377.  
  4378. // Item Info
  4379. //-------------------------------------------------------------------------------------------------------------
  4380. "AbilityManaCost" "50"
  4381. "ItemCost" "2700"
  4382. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4383. "ItemQuality" "rare"
  4384. "ItemAliases" "necronomicon 1"
  4385. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4386. "MaxUpgradeLevel" "3"
  4387. "ItemBaseLevel" "1"
  4388.  
  4389. "UpgradesItems" "item_necronomicon;item_necronomicon_2"
  4390. "UpgradeRecipe" "item_recipe_necronomicon"
  4391.  
  4392. // Special
  4393. //-------------------------------------------------------------------------------------------------------------
  4394. "AbilitySpecial"
  4395. {
  4396. "01"
  4397. {
  4398. "var_type" "FIELD_INTEGER"
  4399. "bonus_intellect" "15 21 24"
  4400. }
  4401. "02"
  4402. {
  4403. "var_type" "FIELD_INTEGER"
  4404. "bonus_strength" "8 12 16"
  4405. }
  4406. "03"
  4407. {
  4408. "var_type" "FIELD_FLOAT"
  4409. "summon_duration" "40.0"
  4410. }
  4411. "04"
  4412. {
  4413. "var_type" "FIELD_INTEGER"
  4414. "warrior_mana_feedback" "20 50 75"
  4415. }
  4416. "05"
  4417. {
  4418. "var_type" "FIELD_INTEGER"
  4419. "warrior_truesight" "1000"
  4420. }
  4421. "06"
  4422. {
  4423. "var_type" "FIELD_INTEGER"
  4424. "archer_mana_burn" "125 175 225"
  4425. }
  4426. "07"
  4427. {
  4428. "var_type" "FIELD_INTEGER"
  4429. "archer_attack_speed" "3 6 9"
  4430. }
  4431. "08"
  4432. {
  4433. "var_type" "FIELD_INTEGER"
  4434. "archer_attack_speed_radius" "400"
  4435. }
  4436. }
  4437. }
  4438.  
  4439. "item_necronomicon_2"
  4440. {
  4441. // General
  4442. //-------------------------------------------------------------------------------------------------------------
  4443. "ID" "193" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4444. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4445.  
  4446. // Stats
  4447. //-------------------------------------------------------------------------------------------------------------
  4448. "AbilityCastPoint" "0.0"
  4449. "AbilityCooldown" "95.0"
  4450. "AbilitySharedCooldown" "necronomicon"
  4451. "FightRecapLevel" "1"
  4452.  
  4453. // Item Info
  4454. //-------------------------------------------------------------------------------------------------------------
  4455. "AbilityManaCost" "50"
  4456. "ItemCost" "2700"
  4457. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4458. "ItemQuality" "rare"
  4459. "ItemAliases" "necronomicon 2"
  4460. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4461. "MaxUpgradeLevel" "3"
  4462. "ItemBaseLevel" "2"
  4463.  
  4464. "UpgradesItems" "item_necronomicon_2"
  4465. "UpgradeRecipe" "item_recipe_necronomicon"
  4466.  
  4467. // Special
  4468. //-------------------------------------------------------------------------------------------------------------
  4469. "AbilitySpecial"
  4470. {
  4471. "01"
  4472. {
  4473. "var_type" "FIELD_INTEGER"
  4474. "bonus_intellect" "15 21 24"
  4475. }
  4476. "02"
  4477. {
  4478. "var_type" "FIELD_INTEGER"
  4479. "bonus_strength" "8 12 16"
  4480. }
  4481. "03"
  4482. {
  4483. "var_type" "FIELD_FLOAT"
  4484. "summon_duration" "40.0"
  4485. }
  4486. "04"
  4487. {
  4488. "var_type" "FIELD_INTEGER"
  4489. "warrior_mana_feedback" "20 50 75"
  4490. }
  4491. "05"
  4492. {
  4493. "var_type" "FIELD_INTEGER"
  4494. "warrior_truesight" "1000"
  4495. }
  4496. "06"
  4497. {
  4498. "var_type" "FIELD_INTEGER"
  4499. "archer_mana_burn" "125 175 225"
  4500. }
  4501. "07"
  4502. {
  4503. "var_type" "FIELD_INTEGER"
  4504. "archer_attack_speed" "3 6 9"
  4505. }
  4506. "08"
  4507. {
  4508. "var_type" "FIELD_INTEGER"
  4509. "archer_attack_speed_radius" "400"
  4510. }
  4511. }
  4512. }
  4513.  
  4514. "item_necronomicon_3"
  4515. {
  4516. // General
  4517. //-------------------------------------------------------------------------------------------------------------
  4518. "ID" "194" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4519. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4520.  
  4521. // Stats
  4522. //-------------------------------------------------------------------------------------------------------------
  4523. "AbilityCastPoint" "0.0"
  4524. "AbilityCooldown" "95.0"
  4525. "AbilitySharedCooldown" "necronomicon"
  4526. "FightRecapLevel" "1"
  4527.  
  4528. // Item Info
  4529. //-------------------------------------------------------------------------------------------------------------
  4530. "AbilityManaCost" "50"
  4531. "ItemCost" "2700"
  4532. "ItemShopTags" "int;str;hard_to_tag;see_invis"
  4533. "ItemQuality" "rare"
  4534. "ItemAliases" "necronomicon 3"
  4535. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4536. "MaxUpgradeLevel" "3"
  4537. "ItemBaseLevel" "3"
  4538.  
  4539. // Special
  4540. //-------------------------------------------------------------------------------------------------------------
  4541. "AbilitySpecial"
  4542. {
  4543. "01"
  4544. {
  4545. "var_type" "FIELD_INTEGER"
  4546. "bonus_intellect" "15 21 24"
  4547. }
  4548. "02"
  4549. {
  4550. "var_type" "FIELD_INTEGER"
  4551. "bonus_strength" "8 12 16"
  4552. }
  4553. "03"
  4554. {
  4555. "var_type" "FIELD_FLOAT"
  4556. "summon_duration" "40.0"
  4557. }
  4558. "04"
  4559. {
  4560. "var_type" "FIELD_INTEGER"
  4561. "warrior_mana_feedback" "20 50 75"
  4562. }
  4563. "05"
  4564. {
  4565. "var_type" "FIELD_INTEGER"
  4566. "warrior_truesight" "1000"
  4567. }
  4568. "06"
  4569. {
  4570. "var_type" "FIELD_INTEGER"
  4571. "archer_mana_burn" "125 175 225"
  4572. }
  4573. "07"
  4574. {
  4575. "var_type" "FIELD_INTEGER"
  4576. "archer_attack_speed" "3 6 9"
  4577. }
  4578. "08"
  4579. {
  4580. "var_type" "FIELD_INTEGER"
  4581. "archer_attack_speed_radius" "400"
  4582. }
  4583. }
  4584. }
  4585.  
  4586. //=================================================================================================================
  4587. // Recipe: Scepter
  4588. //=================================================================================================================
  4589. "item_recipe_ultimate_scepter"
  4590. {
  4591. // General
  4592. //-------------------------------------------------------------------------------------------------------------
  4593. "ID" "107" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4594.  
  4595. // Item Info
  4596. //-------------------------------------------------------------------------------------------------------------
  4597. "ItemCost" "0"
  4598. "ItemShopTags" ""
  4599.  
  4600. // Recipe
  4601. //-------------------------------------------------------------------------------------------------------------
  4602. "ItemRecipe" "1"
  4603. "ItemResult" "item_ultimate_scepter"
  4604. "ItemRequirements"
  4605. {
  4606. "01" "item_point_booster;item_staff_of_wizardry;item_ogre_axe;item_blade_of_alacrity"
  4607. }
  4608. }
  4609.  
  4610. //=================================================================================================================
  4611. // Scepter
  4612. //=================================================================================================================
  4613. "item_ultimate_scepter"
  4614. {
  4615. // General
  4616. //-------------------------------------------------------------------------------------------------------------
  4617. "ID" "108" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4618. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4619.  
  4620. // Item Info
  4621. //-------------------------------------------------------------------------------------------------------------
  4622. "ItemCost" "4200"
  4623. "ItemShopTags" "int;str;agi;mana_pool;health_pool;hard_to_tag"
  4624. "ItemQuality" "rare"
  4625. "ItemAliases" "ultimate;aghanim's scepter"
  4626. //"ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // heroes for whom this is a problem solve it in their code - ogre magi, meepo
  4627. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4628.  
  4629. // Special
  4630. //-------------------------------------------------------------------------------------------------------------
  4631. "AbilitySpecial"
  4632. {
  4633. "01"
  4634. {
  4635. "var_type" "FIELD_INTEGER"
  4636. "bonus_all_stats" "10"
  4637. }
  4638. "02"
  4639. {
  4640. "var_type" "FIELD_INTEGER"
  4641. "bonus_health" "200"
  4642. }
  4643. "03"
  4644. {
  4645. "var_type" "FIELD_INTEGER"
  4646. "bonus_mana" "150"
  4647. }
  4648. }
  4649. }
  4650.  
  4651. //=================================================================================================================
  4652. // Recipe: Refresher
  4653. //=================================================================================================================
  4654. "item_recipe_refresher"
  4655. {
  4656. // General
  4657. //-------------------------------------------------------------------------------------------------------------
  4658. "ID" "109" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4659. "Model" "models/props_gameplay/recipe.mdl"
  4660. "FightRecapLevel" "2"
  4661.  
  4662. // Item Info
  4663. //-------------------------------------------------------------------------------------------------------------
  4664. "ItemCost" "1800"
  4665. "ItemShopTags" ""
  4666.  
  4667. // Recipe
  4668. //-------------------------------------------------------------------------------------------------------------
  4669. "ItemRecipe" "1"
  4670. "ItemResult" "item_refresher"
  4671. "ItemRequirements"
  4672. {
  4673. "01" "item_oblivion_staff;item_pers"
  4674. }
  4675. }
  4676.  
  4677. //=================================================================================================================
  4678. // Refresher
  4679. //=================================================================================================================
  4680. "item_refresher"
  4681. {
  4682. // General
  4683. //-------------------------------------------------------------------------------------------------------------
  4684. "ID" "110" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4685. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4686.  
  4687. // Stats
  4688. //-------------------------------------------------------------------------------------------------------------
  4689. "AbilityCastPoint" "0.0"
  4690. "AbilityCooldown" "160.0"
  4691.  
  4692. // Item Info
  4693. //-------------------------------------------------------------------------------------------------------------
  4694. "AbilityManaCost" "375"
  4695. "ItemCost" "5225"
  4696. "ItemShopTags" "regen_health;regen_mana;damage;hard_to_tag"
  4697. "ItemQuality" "rare"
  4698. "ItemAliases" "refresher orb"
  4699. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4700.  
  4701. // Special
  4702. //-------------------------------------------------------------------------------------------------------------
  4703. "AbilitySpecial"
  4704. {
  4705. "01"
  4706. {
  4707. "var_type" "FIELD_INTEGER"
  4708. "bonus_health_regen" "5"
  4709. }
  4710. "02"
  4711. {
  4712. "var_type" "FIELD_INTEGER"
  4713. "bonus_mana_regen" "200"
  4714. }
  4715. "03"
  4716. {
  4717. "var_type" "FIELD_INTEGER"
  4718. "bonus_damage" "40"
  4719. }
  4720. "04"
  4721. {
  4722. "var_type" "FIELD_INTEGER"
  4723. "bonus_int" "6"
  4724. }
  4725. "05"
  4726. {
  4727. "var_type" "FIELD_INTEGER"
  4728. "bonus_attack_speed" "10"
  4729. }
  4730.  
  4731. }
  4732. }
  4733.  
  4734. //=================================================================================================================
  4735. // Recipe: Assault Cuirass
  4736. //=================================================================================================================
  4737. "item_recipe_assault"
  4738. {
  4739. // General
  4740. //-------------------------------------------------------------------------------------------------------------
  4741. "ID" "111" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4742. "Model" "models/props_gameplay/recipe.mdl"
  4743.  
  4744. // Item Info
  4745. //-------------------------------------------------------------------------------------------------------------
  4746. "ItemCost" "1300"
  4747. "ItemShopTags" ""
  4748.  
  4749. // Recipe
  4750. //-------------------------------------------------------------------------------------------------------------
  4751. "ItemRecipe" "1"
  4752. "ItemResult" "item_assault"
  4753. "ItemRequirements"
  4754. {
  4755. "01" "item_platemail;item_hyperstone;item_chainmail"
  4756. }
  4757. }
  4758.  
  4759. //=================================================================================================================
  4760. // Assault Cuirass
  4761. //=================================================================================================================
  4762. "item_assault"
  4763. {
  4764. // General
  4765. //-------------------------------------------------------------------------------------------------------------
  4766. "ID" "112" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4767. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4768.  
  4769. // Item Info
  4770. //-------------------------------------------------------------------------------------------------------------
  4771. "ItemCost" "5250"
  4772. "ItemShopTags" "attack_speed;armor;hard_to_tag"
  4773. "ItemQuality" "epic"
  4774. "ItemAliases" "ac;assault cuirass"
  4775. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4776.  
  4777. // Special
  4778. //-------------------------------------------------------------------------------------------------------------
  4779. "AbilitySpecial"
  4780. {
  4781. "01"
  4782. {
  4783. "var_type" "FIELD_INTEGER"
  4784. "bonus_attack_speed" "35"
  4785. }
  4786. "02"
  4787. {
  4788. "var_type" "FIELD_INTEGER"
  4789. "bonus_armor" "10"
  4790. }
  4791. "03"
  4792. {
  4793. "var_type" "FIELD_INTEGER"
  4794. "aura_radius" "900 "
  4795. }
  4796. "04"
  4797. {
  4798. "var_type" "FIELD_INTEGER"
  4799. "aura_attack_speed" "20"
  4800. }
  4801. "05"
  4802. {
  4803. "var_type" "FIELD_INTEGER"
  4804. "aura_positive_armor" "5"
  4805. }
  4806. "06"
  4807. {
  4808. "var_type" "FIELD_INTEGER"
  4809. "aura_negative_armor" "-5"
  4810. }
  4811. }
  4812. }
  4813.  
  4814. //=================================================================================================================
  4815. // Recipe: Heart
  4816. //=================================================================================================================
  4817. "item_recipe_heart"
  4818. {
  4819. // General
  4820. //-------------------------------------------------------------------------------------------------------------
  4821. "ID" "113" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4822. "Model" "models/props_gameplay/recipe.mdl"
  4823.  
  4824. // Item Info
  4825. //-------------------------------------------------------------------------------------------------------------
  4826. "ItemCost" "1200"
  4827. "ItemShopTags" ""
  4828.  
  4829. // Recipe
  4830. //-------------------------------------------------------------------------------------------------------------
  4831. "ItemRecipe" "1"
  4832. "ItemResult" "item_heart"
  4833. "ItemRequirements"
  4834. {
  4835. "01" "item_reaver;item_vitality_booster"
  4836. }
  4837. }
  4838.  
  4839. //=================================================================================================================
  4840. // Heart
  4841. //=================================================================================================================
  4842. "item_heart"
  4843. {
  4844. // General
  4845. //-------------------------------------------------------------------------------------------------------------
  4846. "ID" "114" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4847. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4848.  
  4849. // Stats
  4850. //-------------------------------------------------------------------------------------------------------------
  4851. "AbilityCooldown" "6.0"
  4852.  
  4853. // Item Info
  4854. //-------------------------------------------------------------------------------------------------------------
  4855. "ItemCost" "5500"
  4856. "ItemShopTags" "str;regen_health;health_pool"
  4857. "ItemQuality" "epic"
  4858. "ItemAliases" "hot;heart of tarrasque"
  4859. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4860.  
  4861. // Special
  4862. //-------------------------------------------------------------------------------------------------------------
  4863. "AbilitySpecial"
  4864. {
  4865. "01"
  4866. {
  4867. "var_type" "FIELD_INTEGER"
  4868. "bonus_strength" "40"
  4869. }
  4870. "02"
  4871. {
  4872. "var_type" "FIELD_INTEGER"
  4873. "bonus_health" "300"
  4874. }
  4875. "03"
  4876. {
  4877. "var_type" "FIELD_INTEGER"
  4878. "health_regen_rate" "2"
  4879. }
  4880. "04"
  4881. {
  4882. "var_type" "FIELD_FLOAT"
  4883. "cooldown_melee" "4"
  4884. }
  4885. }
  4886. }
  4887.  
  4888. //=================================================================================================================
  4889. // Recipe: Black King Bar
  4890. //=================================================================================================================
  4891. "item_recipe_black_king_bar"
  4892. {
  4893. // General
  4894. //-------------------------------------------------------------------------------------------------------------
  4895. "ID" "115" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4896. "Model" "models/props_gameplay/recipe.mdl"
  4897. "FightRecapLevel" "2"
  4898.  
  4899. // Item Info
  4900. //-------------------------------------------------------------------------------------------------------------
  4901. "ItemCost" "1375"
  4902. "ItemShopTags" ""
  4903.  
  4904. // Recipe
  4905. //-------------------------------------------------------------------------------------------------------------
  4906. "ItemRecipe" "1"
  4907. "ItemResult" "item_black_king_bar"
  4908. "ItemRequirements"
  4909. {
  4910. "01" "item_ogre_axe;item_mithril_hammer"
  4911. }
  4912. }
  4913.  
  4914. //=================================================================================================================
  4915. // Black King Bar
  4916. //=================================================================================================================
  4917. "item_black_king_bar"
  4918. {
  4919. // General
  4920. //-------------------------------------------------------------------------------------------------------------
  4921. "ID" "116" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4922. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  4923.  
  4924. // Stats
  4925. //-------------------------------------------------------------------------------------------------------------
  4926. "AbilityCooldown" "80 75 70 65 60 55 50"
  4927.  
  4928. // Item Info
  4929. //-------------------------------------------------------------------------------------------------------------
  4930. "ItemCost" "3975"
  4931. "ItemShopTags" "str;damage;hard_to_tag"
  4932. "ItemQuality" "epic"
  4933. "ItemAliases" "bkb;black king bar"
  4934. "ItemSellable" "0"
  4935. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  4936.  
  4937. // Special
  4938. //-------------------------------------------------------------------------------------------------------------
  4939. "AbilitySpecial"
  4940. {
  4941. "01"
  4942. {
  4943. "var_type" "FIELD_INTEGER"
  4944. "bonus_strength" "10"
  4945. }
  4946. "02"
  4947. {
  4948. "var_type" "FIELD_INTEGER"
  4949. "bonus_damage" "24"
  4950. }
  4951. "03"
  4952. {
  4953. "var_type" "FIELD_FLOAT"
  4954. "duration" "10.0 9.0 8.0 7.0 6.0 5.0 4.0"
  4955. }
  4956. "04"
  4957. {
  4958. "var_type" "FIELD_INTEGER"
  4959. "max_level" "6"
  4960. }
  4961. "05"
  4962. {
  4963. "var_type" "FIELD_INTEGER"
  4964. "model_scale" "30" // Percentage over model scale
  4965. }
  4966. }
  4967. }
  4968.  
  4969. //=================================================================================================================
  4970. // Aegis of Immortality
  4971. //=================================================================================================================
  4972. "item_aegis"
  4973. {
  4974. // General
  4975. //-------------------------------------------------------------------------------------------------------------
  4976. "ID" "117" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  4977. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  4978. "Model" "models/props_gameplay/aegis.mdl"
  4979. "FightRecapLevel" "2"
  4980.  
  4981. // Item Info
  4982. //-------------------------------------------------------------------------------------------------------------
  4983. "ItemCost" "0"
  4984. "ItemShopTags" ""
  4985. "ItemQuality" "artifact"
  4986.  
  4987. // Items
  4988. //-------------------------------------------------------------------------------------------------------------
  4989. "ItemPurchasable" "0"
  4990. "ItemDroppable" "0"
  4991. "ItemSellable" "0"
  4992. "ItemKillable" "1"
  4993.  
  4994. // Special
  4995. //-------------------------------------------------------------------------------------------------------------
  4996. "AbilitySpecial"
  4997. {
  4998. "01"
  4999. {
  5000. "var_type" "FIELD_FLOAT"
  5001. "reincarnate_time" "5.0"
  5002. }
  5003. "02"
  5004. {
  5005. "var_type" "FIELD_FLOAT"
  5006. "disappear_time" "360.0"
  5007. }
  5008. }
  5009. }
  5010.  
  5011. //=================================================================================================================
  5012. // Recipe: Shiva's Guard
  5013. //=================================================================================================================
  5014. "item_recipe_shivas_guard"
  5015. {
  5016. // General
  5017. //-------------------------------------------------------------------------------------------------------------
  5018. "ID" "118" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5019. "Model" "models/props_gameplay/recipe.mdl"
  5020.  
  5021. // Item Info
  5022. //-------------------------------------------------------------------------------------------------------------
  5023. "ItemCost" "600"
  5024. "ItemShopTags" ""
  5025.  
  5026. // Recipe
  5027. //-------------------------------------------------------------------------------------------------------------
  5028. "ItemRecipe" "1"
  5029. "ItemResult" "item_shivas_guard"
  5030. "ItemRequirements"
  5031. {
  5032. "01" "item_platemail;item_mystic_staff"
  5033. }
  5034. }
  5035.  
  5036. //=================================================================================================================
  5037. // Shiva's
  5038. //=================================================================================================================
  5039. "item_shivas_guard"
  5040. {
  5041. // General
  5042. //-------------------------------------------------------------------------------------------------------------
  5043. "ID" "119" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5044. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  5045. "FightRecapLevel" "1"
  5046.  
  5047. // Stats
  5048. //-------------------------------------------------------------------------------------------------------------
  5049. "AbilityCooldown" "30"
  5050.  
  5051. // Item Info
  5052. //-------------------------------------------------------------------------------------------------------------
  5053. "AbilityManaCost" "100"
  5054. "ItemCost" "4700"
  5055. "ItemShopTags" "int;armor;hard_to_tag"
  5056. "ItemQuality" "epic"
  5057. "ItemAliases" "shiva's guard"
  5058. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  5059. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5060.  
  5061. // Special
  5062. //-------------------------------------------------------------------------------------------------------------
  5063. "AbilitySpecial"
  5064. {
  5065. "01"
  5066. {
  5067. "var_type" "FIELD_INTEGER"
  5068. "bonus_intellect" "30"
  5069. }
  5070. "02"
  5071. {
  5072. "var_type" "FIELD_INTEGER"
  5073. "bonus_armor" "15"
  5074. }
  5075. "03"
  5076. {
  5077. "var_type" "FIELD_INTEGER"
  5078. "aura_radius" "900"
  5079. }
  5080. "04"
  5081. {
  5082. "var_type" "FIELD_INTEGER"
  5083. "aura_attack_speed" "-40"
  5084. }
  5085. "05"
  5086. {
  5087. "var_type" "FIELD_INTEGER"
  5088. "blast_radius" "900"
  5089. }
  5090. "06"
  5091. {
  5092. "var_type" "FIELD_INTEGER"
  5093. "blast_speed" "350"
  5094. }
  5095. "07"
  5096. {
  5097. "var_type" "FIELD_INTEGER"
  5098. "blast_damage" "200"
  5099. }
  5100. "08"
  5101. {
  5102. "var_type" "FIELD_INTEGER"
  5103. "blast_movement_speed" "-40"
  5104. }
  5105. "09"
  5106. {
  5107. "var_type" "FIELD_FLOAT"
  5108. "blast_debuff_duration" "4.0"
  5109. }
  5110. }
  5111. }
  5112.  
  5113. //=================================================================================================================
  5114. // Recipe: Bloodstone
  5115. //=================================================================================================================
  5116. "item_recipe_bloodstone"
  5117. {
  5118. // General
  5119. //-------------------------------------------------------------------------------------------------------------
  5120. "ID" "120" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5121. "Model" "models/props_gameplay/recipe.mdl"
  5122.  
  5123. // Item Info
  5124. //-------------------------------------------------------------------------------------------------------------
  5125. "ItemCost" "0"
  5126. "ItemShopTags" ""
  5127.  
  5128. // Recipe
  5129. //-------------------------------------------------------------------------------------------------------------
  5130. "ItemRecipe" "1"
  5131. "ItemResult" "item_bloodstone"
  5132. "ItemRequirements"
  5133. {
  5134. "01" "item_pers;item_soul_booster"
  5135. }
  5136. }
  5137.  
  5138. //=================================================================================================================
  5139. // Bloodstone
  5140. //=================================================================================================================
  5141. "item_bloodstone"
  5142. {
  5143. // General
  5144. //-------------------------------------------------------------------------------------------------------------
  5145. "ID" "121" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5146. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT"
  5147. "FightRecapLevel" "2"
  5148.  
  5149. // Stats
  5150. //-------------------------------------------------------------------------------------------------------------
  5151. "AbilityCastRange" "150"
  5152. "AbilityCastPoint" "0.0"
  5153. "AbilityCooldown" "300.0"
  5154.  
  5155. // Item Info
  5156. //-------------------------------------------------------------------------------------------------------------
  5157. "ItemCost" "5050"
  5158. "ItemShopTags" "regen_health;regen_mana;mana_pool;health_pool"
  5159. "ItemQuality" "epic"
  5160. "ItemAliases" "bs;bloodstone"
  5161. "ItemInitialCharges" "8"
  5162. "ItemDisplayCharges" "1"
  5163. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5164.  
  5165. // Special
  5166. //-------------------------------------------------------------------------------------------------------------
  5167. "AbilitySpecial"
  5168. {
  5169. "01"
  5170. {
  5171. "var_type" "FIELD_INTEGER"
  5172. "bonus_health" "500"
  5173. }
  5174. "02"
  5175. {
  5176. "var_type" "FIELD_INTEGER"
  5177. "bonus_mana" "400"
  5178. }
  5179. "03"
  5180. {
  5181. "var_type" "FIELD_INTEGER"
  5182. "bonus_health_regen" "9"
  5183. }
  5184. "04"
  5185. {
  5186. "var_type" "FIELD_INTEGER"
  5187. "bonus_mana_regen" "200"
  5188. }
  5189. "05"
  5190. {
  5191. "var_type" "FIELD_INTEGER"
  5192. "charge_range" "1600"
  5193. }
  5194. "06"
  5195. {
  5196. "var_type" "FIELD_INTEGER"
  5197. "heal_on_death_range" "1675"
  5198. }
  5199. "07"
  5200. {
  5201. "var_type" "FIELD_INTEGER"
  5202. "heal_on_death_base" "500"
  5203. }
  5204. "08"
  5205. {
  5206. "var_type" "FIELD_INTEGER"
  5207. "heal_on_death_per_charge" "30"
  5208. }
  5209. "09"
  5210. {
  5211. "var_type" "FIELD_INTEGER"
  5212. "vision_on_death_radius" "1800"
  5213. }
  5214. "10"
  5215. {
  5216. "var_type" "FIELD_FLOAT"
  5217. "respawn_time_reduction" "4.0"
  5218. }
  5219. "11"
  5220. {
  5221. "var_type" "FIELD_INTEGER"
  5222. "death_gold_reduction" "25"
  5223. }
  5224. "12"
  5225. {
  5226. "var_type" "FIELD_FLOAT"
  5227. "on_death_removal" "0.67" //33% gone
  5228. }
  5229. "13"
  5230. {
  5231. "var_type" "FIELD_INTEGER"
  5232. "bonus_damage" "10"
  5233. }
  5234. }
  5235. }
  5236.  
  5237. //=================================================================================================================
  5238. // Recipe: Sphere
  5239. //=================================================================================================================
  5240. "item_recipe_sphere"
  5241. {
  5242. // General
  5243. //-------------------------------------------------------------------------------------------------------------
  5244. "ID" "122" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5245. "Model" "models/props_gameplay/recipe.mdl"
  5246.  
  5247. // Item Info
  5248. //-------------------------------------------------------------------------------------------------------------
  5249. "ItemCost" "1325"
  5250. "ItemShopTags" ""
  5251.  
  5252. // Recipe
  5253. //-------------------------------------------------------------------------------------------------------------
  5254. "ItemRecipe" "1"
  5255. "ItemResult" "item_sphere"
  5256. "ItemRequirements"
  5257. {
  5258. "01" "item_ultimate_orb;item_pers"
  5259. }
  5260. }
  5261.  
  5262. //=================================================================================================================
  5263. // Sphere
  5264. //=================================================================================================================
  5265. "item_sphere"
  5266. {
  5267. // General
  5268. //-------------------------------------------------------------------------------------------------------------
  5269. "ID" "123" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5270. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  5271. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  5272. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  5273. "FightRecapLevel" "1"
  5274.  
  5275.  
  5276. "AbilityCastRange" "700"
  5277. "AbilityCooldown" "17.0"
  5278.  
  5279. // Item Info
  5280. //-------------------------------------------------------------------------------------------------------------
  5281. "ItemCost" "5175"
  5282. "ItemShopTags" "regen_health;regen_mana;str;agi;int;hard_to_tag"
  5283. "ItemQuality" "epic"
  5284. "ItemAliases" "ls;linken's sphere"
  5285. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5286.  
  5287. // Special
  5288. //-------------------------------------------------------------------------------------------------------------
  5289. "AbilitySpecial"
  5290. {
  5291. "01"
  5292. {
  5293. "var_type" "FIELD_INTEGER"
  5294. "bonus_all_stats" "15"
  5295. }
  5296. "02"
  5297. {
  5298. "var_type" "FIELD_INTEGER"
  5299. "bonus_health_regen" "6"
  5300. }
  5301. "03"
  5302. {
  5303. "var_type" "FIELD_INTEGER"
  5304. "bonus_mana_regen" "150"
  5305. }
  5306. "04"
  5307. {
  5308. "var_type" "FIELD_FLOAT"
  5309. "block_cooldown" "17.0"
  5310. }
  5311. "05"
  5312. {
  5313. "var_type" "FIELD_INTEGER"
  5314. "bonus_damage" "10"
  5315. }
  5316. }
  5317. }
  5318.  
  5319. //=================================================================================================================
  5320. // Recipe: Vanguard
  5321. //=================================================================================================================
  5322. "item_recipe_vanguard"
  5323. {
  5324. // General
  5325. //-------------------------------------------------------------------------------------------------------------
  5326. "ID" "124" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5327. "Model" "models/props_gameplay/recipe.mdl"
  5328.  
  5329. // Item Info
  5330. //-------------------------------------------------------------------------------------------------------------
  5331. "ItemCost" "0"
  5332. "ItemShopTags" ""
  5333.  
  5334. // Recipe
  5335. //-------------------------------------------------------------------------------------------------------------
  5336. "ItemRecipe" "1"
  5337. "ItemResult" "item_vanguard"
  5338. "ItemRequirements"
  5339. {
  5340. "01" "item_ring_of_health;item_vitality_booster;item_stout_shield"
  5341. }
  5342. }
  5343.  
  5344. //=================================================================================================================
  5345. // Vanguard
  5346. //=================================================================================================================
  5347. "item_vanguard"
  5348. {
  5349. // General
  5350. //-------------------------------------------------------------------------------------------------------------
  5351. "ID" "125" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5352. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5353.  
  5354. // Item Info
  5355. //-------------------------------------------------------------------------------------------------------------
  5356. "ItemCost" "2225"
  5357. "ItemShopTags" "regen_health;block;health_pool"
  5358. "ItemQuality" "epic"
  5359. "ItemAliases" "vanguard"
  5360. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5361.  
  5362. // Special
  5363. //-------------------------------------------------------------------------------------------------------------
  5364. "AbilitySpecial"
  5365. {
  5366. "01"
  5367. {
  5368. "var_type" "FIELD_INTEGER"
  5369. "bonus_health" "250"
  5370. }
  5371. "02"
  5372. {
  5373. "var_type" "FIELD_INTEGER"
  5374. "bonus_health_regen" "6"
  5375. }
  5376. "03"
  5377. {
  5378. "var_type" "FIELD_INTEGER"
  5379. "block_chance" "80"
  5380. }
  5381. "04"
  5382. {
  5383. "var_type" "FIELD_INTEGER"
  5384. "block_damage_ranged" "20"
  5385. }
  5386. "05"
  5387. {
  5388. "var_type" "FIELD_INTEGER"
  5389. "block_damage_melee" "40"
  5390. }
  5391. }
  5392. }
  5393.  
  5394. //=================================================================================================================
  5395. // Recipe: Blade Mail
  5396. //=================================================================================================================
  5397. "item_recipe_blade_mail"
  5398. {
  5399. // General
  5400. //-------------------------------------------------------------------------------------------------------------
  5401. "ID" "126" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5402. "Model" "models/props_gameplay/recipe.mdl"
  5403. "FightRecapLevel" "1"
  5404.  
  5405. // Item Info
  5406. //-------------------------------------------------------------------------------------------------------------
  5407. "ItemCost" "0"
  5408. "ItemShopTags" ""
  5409.  
  5410. // Recipe
  5411. //-------------------------------------------------------------------------------------------------------------
  5412. "ItemRecipe" "1"
  5413. "ItemResult" "item_blade_mail"
  5414. "ItemRequirements"
  5415. {
  5416. "01" "item_broadsword;item_chainmail;item_robe"
  5417. }
  5418. }
  5419.  
  5420. //=================================================================================================================
  5421. // Blade Mail
  5422. //=================================================================================================================
  5423. "item_blade_mail"
  5424. {
  5425. // General
  5426. //-------------------------------------------------------------------------------------------------------------
  5427. "ID" "127" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5428. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  5429.  
  5430. // Stats
  5431. //-------------------------------------------------------------------------------------------------------------
  5432. "AbilityCooldown" "17.0"
  5433.  
  5434. // Item Info
  5435. //-------------------------------------------------------------------------------------------------------------
  5436. "AbilityManaCost" "25"
  5437. "ItemCost" "2200"
  5438. "ItemShopTags" "damage;armor;int;hard_to_tag"
  5439. "ItemQuality" "epic"
  5440. "ItemAliases" "blade mail"
  5441. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  5442.  
  5443. // Special
  5444. //-------------------------------------------------------------------------------------------------------------
  5445. "AbilitySpecial"
  5446. {
  5447. "01"
  5448. {
  5449. "var_type" "FIELD_INTEGER"
  5450. "bonus_damage" "22"
  5451. }
  5452. "02"
  5453. {
  5454. "var_type" "FIELD_INTEGER"
  5455. "bonus_armor" "6"
  5456. }
  5457. "03"
  5458. {
  5459. "var_type" "FIELD_INTEGER"
  5460. "bonus_intellect" "10"
  5461. }
  5462. "04"
  5463. {
  5464. "var_type" "FIELD_FLOAT"
  5465. "duration" "4.5"
  5466. }
  5467. }
  5468. }
  5469.  
  5470. //=================================================================================================================
  5471. // Recipe: Soul Booster
  5472. //=================================================================================================================
  5473. "item_recipe_soul_booster"
  5474. {
  5475. // General
  5476. //-------------------------------------------------------------------------------------------------------------
  5477. "ID" "128" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5478.  
  5479. // Item Info
  5480. //-------------------------------------------------------------------------------------------------------------
  5481. "ItemCost" "0"
  5482. "ItemShopTags" ""
  5483.  
  5484. // Recipe
  5485. //-------------------------------------------------------------------------------------------------------------
  5486. "ItemRecipe" "1"
  5487. "ItemResult" "item_soul_booster"
  5488. "ItemRequirements"
  5489. {
  5490. "01" "item_vitality_booster;item_energy_booster;item_point_booster"
  5491. }
  5492. }
  5493.  
  5494. //=================================================================================================================
  5495. // Soul Booster
  5496. //=================================================================================================================
  5497. "item_soul_booster"
  5498. {
  5499. // General
  5500. //-------------------------------------------------------------------------------------------------------------
  5501. "ID" "129" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5502. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5503.  
  5504. // Item Info
  5505. //-------------------------------------------------------------------------------------------------------------
  5506. "ItemCost" "3300"
  5507. "ItemShopTags" "regen_health;regen_mana;health_pool;mana_pool"
  5508. "ItemQuality" "epic"
  5509. "ItemAliases" "soul booster"
  5510.  
  5511. // Special
  5512. //-------------------------------------------------------------------------------------------------------------
  5513. "AbilitySpecial"
  5514. {
  5515. "01"
  5516. {
  5517. "var_type" "FIELD_INTEGER"
  5518. "bonus_health" "450"
  5519. }
  5520. "02"
  5521. {
  5522. "var_type" "FIELD_INTEGER"
  5523. "bonus_mana" "400"
  5524. }
  5525. "03"
  5526. {
  5527. "var_type" "FIELD_INTEGER"
  5528. "bonus_health_regen" "4"
  5529. }
  5530. "04"
  5531. {
  5532. "var_type" "FIELD_INTEGER"
  5533. "bonus_mana_regen" "100"
  5534. }
  5535. }
  5536. }
  5537.  
  5538. //=================================================================================================================
  5539. // Recipe: Hood of Defiance
  5540. //=================================================================================================================
  5541. "item_recipe_hood_of_defiance"
  5542. {
  5543. // General
  5544. //-------------------------------------------------------------------------------------------------------------
  5545. "ID" "130" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5546.  
  5547. // Item Info
  5548. //-------------------------------------------------------------------------------------------------------------
  5549. "ItemCost" "0"
  5550. "ItemShopTags" ""
  5551.  
  5552. // Recipe
  5553. //-------------------------------------------------------------------------------------------------------------
  5554. "ItemRecipe" "1"
  5555. "ItemResult" "item_hood_of_defiance"
  5556. "ItemRequirements"
  5557. {
  5558. "01" "item_ring_of_health;item_cloak;item_ring_of_regen;item_ring_of_regen"
  5559. }
  5560. }
  5561.  
  5562. //=================================================================================================================
  5563. // Hood of Defiance
  5564. //=================================================================================================================
  5565. "item_hood_of_defiance"
  5566. {
  5567. // General
  5568. //-------------------------------------------------------------------------------------------------------------
  5569. "ID" "131" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5570. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5571.  
  5572. // Item Info
  5573. //-------------------------------------------------------------------------------------------------------------
  5574. "ItemCost" "2125"
  5575. "ItemShopTags" "regen_health;magic_resist"
  5576. "ItemQuality" "epic"
  5577. "ItemAliases" "hood of defiance"
  5578. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  5579.  
  5580. // Special
  5581. //-------------------------------------------------------------------------------------------------------------
  5582. "AbilitySpecial"
  5583. {
  5584. "01"
  5585. {
  5586. "var_type" "FIELD_INTEGER"
  5587. "bonus_spell_resist" "30"
  5588. }
  5589. "02"
  5590. {
  5591. "var_type" "FIELD_INTEGER"
  5592. "bonus_health_regen" "8"
  5593. }
  5594.  
  5595. "03"
  5596. {
  5597. "var_type" "FIELD_INTEGER"
  5598. "tooltip_resist" "30"
  5599. }
  5600. }
  5601. }
  5602.  
  5603. //=================================================================================================================
  5604. // Recipe: Rapier
  5605. //=================================================================================================================
  5606. "item_recipe_rapier"
  5607. {
  5608. // General
  5609. //-------------------------------------------------------------------------------------------------------------
  5610. "ID" "132" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5611.  
  5612.  
  5613. // Item Info
  5614. //-------------------------------------------------------------------------------------------------------------
  5615. "ItemCost" "0"
  5616. "ItemShopTags" ""
  5617.  
  5618. // Recipe
  5619. //-------------------------------------------------------------------------------------------------------------
  5620. "ItemRecipe" "1"
  5621. "ItemResult" "item_rapier"
  5622. "ItemRequirements"
  5623. {
  5624. "01" "item_relic;item_demon_edge"
  5625. }
  5626. }
  5627.  
  5628. //=================================================================================================================
  5629. // Rapier
  5630. //=================================================================================================================
  5631. "item_rapier"
  5632. {
  5633. // General
  5634. //-------------------------------------------------------------------------------------------------------------
  5635. "ID" "133" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5636. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5637. "Model" "models/props_gameplay/divine_rapier.mdl"
  5638.  
  5639. // Item Info
  5640. //-------------------------------------------------------------------------------------------------------------
  5641. "ItemCost" "6200"
  5642. "ItemShopTags" "damage"
  5643. "ItemQuality" "epic"
  5644. "ItemAliases" "divine rapier"
  5645. "ItemShareability" "ITEM_NOT_SHAREABLE"
  5646. "ItemSellable" "0"
  5647. "ItemKillable" "0"
  5648. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS | DECLARE_PURCHASES_IN_SPEECH"
  5649.  
  5650. // Special
  5651. //-------------------------------------------------------------------------------------------------------------
  5652. "AbilitySpecial"
  5653. {
  5654. "01"
  5655. {
  5656. "var_type" "FIELD_INTEGER"
  5657. "bonus_damage" "300"
  5658. }
  5659. }
  5660. }
  5661.  
  5662. //=================================================================================================================
  5663. // Recipe: Monkey King Bar
  5664. //=================================================================================================================
  5665. "item_recipe_monkey_king_bar"
  5666. {
  5667. // General
  5668. //-------------------------------------------------------------------------------------------------------------
  5669. "ID" "134" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5670.  
  5671. // Item Info
  5672. //-------------------------------------------------------------------------------------------------------------
  5673. "ItemCost" "0"
  5674. "ItemShopTags" ""
  5675.  
  5676. // Recipe
  5677. //-------------------------------------------------------------------------------------------------------------
  5678. "ItemRecipe" "1"
  5679. "ItemResult" "item_monkey_king_bar"
  5680. "ItemRequirements"
  5681. {
  5682. "01" "item_demon_edge;item_javelin;item_javelin"
  5683. }
  5684. }
  5685.  
  5686. //=================================================================================================================
  5687. // Monkey King Bar
  5688. //=================================================================================================================
  5689. "item_monkey_king_bar"
  5690. {
  5691. // General
  5692. //-------------------------------------------------------------------------------------------------------------
  5693. "ID" "135" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5694. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5695.  
  5696. // Item Info
  5697. //-------------------------------------------------------------------------------------------------------------
  5698. "ItemCost" "5400"
  5699. "ItemShopTags" "damage;attack_speed;hard_to_tag"
  5700. "ItemQuality" "epic"
  5701. "ItemAliases" "mkb;monkey king bar"
  5702. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5703.  
  5704. // Special
  5705. //-------------------------------------------------------------------------------------------------------------
  5706. "AbilitySpecial"
  5707. {
  5708. "01"
  5709. {
  5710. "var_type" "FIELD_INTEGER"
  5711. "bonus_damage" "88"
  5712. }
  5713. "02"
  5714. {
  5715. "var_type" "FIELD_INTEGER"
  5716. "bonus_attack_speed" "15"
  5717. }
  5718. "03"
  5719. {
  5720. "var_type" "FIELD_INTEGER"
  5721. "bash_chance" "35"
  5722. }
  5723. "04"
  5724. {
  5725. "var_type" "FIELD_INTEGER"
  5726. "bash_damage" "100"
  5727. }
  5728. "05"
  5729. {
  5730. "var_type" "FIELD_FLOAT"
  5731. "bash_stun" "0.01"
  5732. }
  5733. }
  5734. }
  5735.  
  5736. //=================================================================================================================
  5737. // Recipe: Radiance
  5738. //=================================================================================================================
  5739. "item_recipe_radiance"
  5740. {
  5741. // General
  5742. //-------------------------------------------------------------------------------------------------------------
  5743. "ID" "136" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5744. "Model" "models/props_gameplay/recipe.mdl"
  5745.  
  5746. // Item Info
  5747. //-------------------------------------------------------------------------------------------------------------
  5748. "ItemCost" "1350"
  5749. "ItemShopTags" ""
  5750.  
  5751. // Recipe
  5752. //-------------------------------------------------------------------------------------------------------------
  5753. "ItemRecipe" "1"
  5754. "ItemResult" "item_radiance"
  5755. "ItemRequirements"
  5756. {
  5757. "01" "item_relic"
  5758. }
  5759. }
  5760.  
  5761. //=================================================================================================================
  5762. // Radiance
  5763. //=================================================================================================================
  5764. "item_radiance"
  5765. {
  5766. // General
  5767. //-------------------------------------------------------------------------------------------------------------
  5768. "ID" "137" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5769. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  5770.  
  5771. // Item Info
  5772. //-------------------------------------------------------------------------------------------------------------
  5773. "ItemCost" "5150"
  5774. "ItemShopTags" "damage"
  5775. "ItemQuality" "epic"
  5776. "ItemAliases" "radiance"
  5777. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5778.  
  5779. // Special
  5780. //-------------------------------------------------------------------------------------------------------------
  5781. "AbilitySpecial"
  5782. {
  5783. "01"
  5784. {
  5785. "var_type" "FIELD_INTEGER"
  5786. "bonus_damage" "65"
  5787. }
  5788. "02"
  5789. {
  5790. "var_type" "FIELD_INTEGER"
  5791. "aura_radius" "700"
  5792. }
  5793. "03"
  5794. {
  5795. "var_type" "FIELD_INTEGER"
  5796. "aura_damage" "50"
  5797. }
  5798. }
  5799. }
  5800.  
  5801. //=================================================================================================================
  5802. // Recipe: Butterfly
  5803. //=================================================================================================================
  5804. "item_recipe_butterfly"
  5805. {
  5806. // General
  5807. //-------------------------------------------------------------------------------------------------------------
  5808. "ID" "138" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5809.  
  5810. // Item Info
  5811. //-------------------------------------------------------------------------------------------------------------
  5812. "ItemCost" "0"
  5813. "ItemShopTags" ""
  5814.  
  5815. // Recipe
  5816. //-------------------------------------------------------------------------------------------------------------
  5817. "ItemRecipe" "1"
  5818. "ItemResult" "item_butterfly"
  5819. "ItemRequirements"
  5820. {
  5821. "01" "item_talisman_of_evasion;item_quarterstaff;item_eagle"
  5822. }
  5823. }
  5824.  
  5825. //=================================================================================================================
  5826. // Butterfly
  5827. //=================================================================================================================
  5828. "item_butterfly"
  5829. {
  5830. // General
  5831. //-------------------------------------------------------------------------------------------------------------
  5832. "ID" "139" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5833. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5834.  
  5835. // Item Info
  5836. //-------------------------------------------------------------------------------------------------------------
  5837. "ItemCost" "6000"
  5838. "ItemShopTags" "agi;damage;evasion;attack_speed"
  5839. "ItemQuality" "epic"
  5840. "ItemAliases" "bfly;butterfly"
  5841. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5842.  
  5843. // Special
  5844. //-------------------------------------------------------------------------------------------------------------
  5845. "AbilitySpecial"
  5846. {
  5847. "01"
  5848. {
  5849. "var_type" "FIELD_INTEGER"
  5850. "bonus_agility" "30"
  5851. }
  5852. "02"
  5853. {
  5854. "var_type" "FIELD_INTEGER"
  5855. "bonus_damage" "30"
  5856. }
  5857. "03"
  5858. {
  5859. "var_type" "FIELD_INTEGER"
  5860. "bonus_evasion" "35"
  5861. }
  5862. "04"
  5863. {
  5864. "var_type" "FIELD_INTEGER"
  5865. "bonus_attack_speed" "30"
  5866. }
  5867. }
  5868. }
  5869.  
  5870. //=================================================================================================================
  5871. // Recipe: Greater Crit
  5872. //=================================================================================================================
  5873. "item_recipe_greater_crit"
  5874. {
  5875. // General
  5876. //-------------------------------------------------------------------------------------------------------------
  5877. "ID" "140" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5878. "Model" "models/props_gameplay/recipe.mdl"
  5879.  
  5880. // Item Info
  5881. //-------------------------------------------------------------------------------------------------------------
  5882. "ItemCost" "1000"
  5883. "ItemShopTags" ""
  5884.  
  5885. // Recipe
  5886. //-------------------------------------------------------------------------------------------------------------
  5887. "ItemRecipe" "1"
  5888. "ItemResult" "item_greater_crit"
  5889. "ItemRequirements"
  5890. {
  5891. "01" "item_lesser_crit;item_demon_edge"
  5892. }
  5893. }
  5894.  
  5895. //=================================================================================================================
  5896. // Greater Crit
  5897. //=================================================================================================================
  5898. "item_greater_crit"
  5899. {
  5900. // General
  5901. //-------------------------------------------------------------------------------------------------------------
  5902. "ID" "141" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5903. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5904.  
  5905. // Item Info
  5906. //-------------------------------------------------------------------------------------------------------------
  5907. "ItemCost" "5550"
  5908. "ItemShopTags" "damage;crit"
  5909. "ItemQuality" "epic"
  5910. "ItemAliases" "daedalus"
  5911. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5912.  
  5913. // Special
  5914. //-------------------------------------------------------------------------------------------------------------
  5915. "AbilitySpecial"
  5916. {
  5917. "01"
  5918. {
  5919. "var_type" "FIELD_INTEGER"
  5920. "bonus_damage" "81"
  5921. }
  5922. "02"
  5923. {
  5924. "var_type" "FIELD_INTEGER"
  5925. "crit_chance" "25"
  5926. }
  5927. "03"
  5928. {
  5929. "var_type" "FIELD_INTEGER"
  5930. "crit_multiplier" "240"
  5931. }
  5932. }
  5933. }
  5934.  
  5935. //=================================================================================================================
  5936. // Recipe: Basher
  5937. //=================================================================================================================
  5938. "item_recipe_basher"
  5939. {
  5940. // General
  5941. //-------------------------------------------------------------------------------------------------------------
  5942. "ID" "142" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5943. "InvalidHeroes" "npc_dota_hero_spirit_breaker;npc_dota_hero_faceless_void;npc_dota_hero_slardar;npc_dota_hero_troll_warlord"
  5944. "Model" "models/props_gameplay/recipe.mdl"
  5945.  
  5946. // Item Info
  5947. //-------------------------------------------------------------------------------------------------------------
  5948. "ItemCost" "1000"
  5949. "ItemShopTags" ""
  5950.  
  5951. // Recipe
  5952. //-------------------------------------------------------------------------------------------------------------
  5953. "ItemRecipe" "1"
  5954. "ItemResult" "item_basher"
  5955. "ItemRequirements"
  5956. {
  5957. "01" "item_belt_of_strength;item_javelin"
  5958. }
  5959. }
  5960.  
  5961. //=================================================================================================================
  5962. // Basher
  5963. //=================================================================================================================
  5964. "item_basher"
  5965. {
  5966. // General
  5967. //-------------------------------------------------------------------------------------------------------------
  5968. "ID" "143" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  5969. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  5970.  
  5971. // Stats
  5972. //-------------------------------------------------------------------------------------------------------------
  5973. "AbilityCooldown" "2.0"
  5974.  
  5975. // Item Info
  5976. //-------------------------------------------------------------------------------------------------------------
  5977. "ItemCost" "2950"
  5978. "ItemShopTags" "damage;str;hard_to_tag"
  5979. "ItemQuality" "epic"
  5980. "ItemAliases" "skull basher"
  5981. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  5982.  
  5983. // Special
  5984. //-------------------------------------------------------------------------------------------------------------
  5985. "AbilitySpecial"
  5986. {
  5987. "01"
  5988. {
  5989. "var_type" "FIELD_INTEGER"
  5990. "bonus_damage" "40"
  5991. }
  5992. "02"
  5993. {
  5994. "var_type" "FIELD_INTEGER"
  5995. "bonus_strength" "6"
  5996. }
  5997. "03"
  5998. {
  5999. "var_type" "FIELD_INTEGER"
  6000. "bash_chance_melee" "25"
  6001. }
  6002. "04"
  6003. {
  6004. "var_type" "FIELD_INTEGER"
  6005. "bash_chance_ranged" "10"
  6006. }
  6007. "05"
  6008. {
  6009. "var_type" "FIELD_FLOAT"
  6010. "bash_duration" "1.4"
  6011. }
  6012. "06"
  6013. {
  6014. "var_type" "FIELD_FLOAT"
  6015. "bash_cooldown" "2.0"
  6016. }
  6017. }
  6018. }
  6019.  
  6020. //=================================================================================================================
  6021. // Recipe: Battlefury
  6022. //=================================================================================================================
  6023. "item_recipe_bfury"
  6024. {
  6025. // General
  6026. //-------------------------------------------------------------------------------------------------------------
  6027. "ID" "144" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6028.  
  6029. // Item Info
  6030. //-------------------------------------------------------------------------------------------------------------
  6031. "ItemCost" "0"
  6032. "ItemShopTags" ""
  6033.  
  6034. // Recipe
  6035. //-------------------------------------------------------------------------------------------------------------
  6036. "ItemRecipe" "1"
  6037. "ItemResult" "item_bfury"
  6038. "ItemRequirements"
  6039. {
  6040. "01" "item_broadsword;item_claymore;item_pers"
  6041. }
  6042. }
  6043.  
  6044. //=================================================================================================================
  6045. // Battlefury
  6046. //=================================================================================================================
  6047. "item_bfury"
  6048. {
  6049. // General
  6050. //-------------------------------------------------------------------------------------------------------------
  6051. "ID" "145" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6052. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6053.  
  6054. // Item Info
  6055. //-------------------------------------------------------------------------------------------------------------
  6056. "ItemCost" "4350"
  6057. "ItemShopTags" "damage;health_regen;mana_regen;hard_to_tag"
  6058. "ItemQuality" "epic"
  6059. "ItemAliases" "bf;battle fury"
  6060. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6061.  
  6062. // Special
  6063. //-------------------------------------------------------------------------------------------------------------
  6064. "AbilitySpecial"
  6065. {
  6066. "01"
  6067. {
  6068. "var_type" "FIELD_INTEGER"
  6069. "bonus_damage" "65"
  6070. }
  6071. "02"
  6072. {
  6073. "var_type" "FIELD_INTEGER"
  6074. "bonus_health_regen" "6"
  6075. }
  6076. "03"
  6077. {
  6078. "var_type" "FIELD_INTEGER"
  6079. "bonus_mana_regen" "150"
  6080. }
  6081. "04"
  6082. {
  6083. "var_type" "FIELD_INTEGER"
  6084. "cleave_damage_percent" "35"
  6085. }
  6086. "05"
  6087. {
  6088. "var_type" "FIELD_INTEGER"
  6089. "cleave_radius" "250"
  6090. }
  6091. }
  6092. }
  6093.  
  6094. //=================================================================================================================
  6095. // Recipe: Manta
  6096. //=================================================================================================================
  6097. "item_recipe_manta"
  6098. {
  6099. // General
  6100. //-------------------------------------------------------------------------------------------------------------
  6101. "ID" "146" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6102. "Model" "models/props_gameplay/recipe.mdl"
  6103. "FightRecapLevel" "1"
  6104.  
  6105. // Item Info
  6106. //-------------------------------------------------------------------------------------------------------------
  6107. "ItemCost" "900"
  6108. "ItemShopTags" ""
  6109.  
  6110. // Recipe
  6111. //-------------------------------------------------------------------------------------------------------------
  6112. "ItemRecipe" "1"
  6113. "ItemResult" "item_manta"
  6114. "ItemRequirements"
  6115. {
  6116. "01" "item_yasha;item_ultimate_orb"
  6117. }
  6118. }
  6119.  
  6120. //=================================================================================================================
  6121. // Manta
  6122. //=================================================================================================================
  6123. "item_manta"
  6124. {
  6125. // General
  6126. //-------------------------------------------------------------------------------------------------------------
  6127. "ID" "147" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6128. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  6129.  
  6130. // Stats
  6131. //-------------------------------------------------------------------------------------------------------------
  6132. "AbilityCooldown" "50.0"
  6133. "AbilityCastPoint" "0.0"
  6134.  
  6135. // Item Info
  6136. //-------------------------------------------------------------------------------------------------------------
  6137. "AbilityManaCost" "165"
  6138. "ItemCost" "5050"
  6139. "ItemShopTags" "agi;str;int;attack_speed;move_speed;hard_to_tag"
  6140. "ItemQuality" "epic"
  6141. "ItemAliases" "manta style"
  6142. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  6143. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6144.  
  6145. // Special
  6146. //-------------------------------------------------------------------------------------------------------------
  6147. "AbilitySpecial"
  6148. {
  6149. "01"
  6150. {
  6151. "var_type" "FIELD_INTEGER"
  6152. "bonus_strength" "10"
  6153. }
  6154. "02"
  6155. {
  6156. "var_type" "FIELD_INTEGER"
  6157. "bonus_agility" "26"
  6158. }
  6159. "03"
  6160. {
  6161. "var_type" "FIELD_INTEGER"
  6162. "bonus_intellect" "10"
  6163. }
  6164. "04"
  6165. {
  6166. "var_type" "FIELD_INTEGER"
  6167. "bonus_attack_speed" "15"
  6168. }
  6169. "05"
  6170. {
  6171. "var_type" "FIELD_INTEGER"
  6172. "bonus_movement_speed" "10"
  6173. }
  6174. "06"
  6175. {
  6176. "var_type" "FIELD_INTEGER"
  6177. "images_count" "2"
  6178. }
  6179. "07"
  6180. {
  6181. "var_type" "FIELD_INTEGER"
  6182. "images_do_damage_percent_melee" "-67"
  6183. }
  6184. "08"
  6185. {
  6186. "var_type" "FIELD_INTEGER"
  6187. "images_take_damage_percent_melee" "250"
  6188. }
  6189. "09"
  6190. {
  6191. "var_type" "FIELD_INTEGER"
  6192. "images_do_damage_percent_ranged" "-72"
  6193. }
  6194. "10"
  6195. {
  6196. "var_type" "FIELD_INTEGER"
  6197. "images_take_damage_percent_ranged" "300"
  6198. }
  6199. "11"
  6200. {
  6201. "var_type" "FIELD_FLOAT"
  6202. "cooldown_melee" "35.0"
  6203. }
  6204. "12"
  6205. {
  6206. "var_type" "FIELD_FLOAT"
  6207. "cooldown_melee" "50.0"
  6208. }
  6209. "13"
  6210. {
  6211. "var_type" "FIELD_FLOAT"
  6212. "invuln_duration" "0.1"
  6213. }
  6214. "14"
  6215. {
  6216. "var_type" "FIELD_INTEGER"
  6217. "vision_radius" "1000"
  6218. }
  6219. "15"
  6220. {
  6221. "var_type" "FIELD_INTEGER"
  6222. "tooltip_outgoing_melee" "33"
  6223. }
  6224. "16"
  6225. {
  6226. "var_type" "FIELD_INTEGER"
  6227. "tooltip_outgoing_range" "28"
  6228. }
  6229. }
  6230. }
  6231.  
  6232. //=================================================================================================================
  6233. // Recipe: Lesser Crit
  6234. //=================================================================================================================
  6235. "item_recipe_lesser_crit"
  6236. {
  6237. // General
  6238. //-------------------------------------------------------------------------------------------------------------
  6239. "ID" "148" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6240. "Model" "models/props_gameplay/recipe.mdl"
  6241.  
  6242. // Item Info
  6243. //-------------------------------------------------------------------------------------------------------------
  6244. "ItemCost" "500"
  6245. "ItemShopTags" ""
  6246.  
  6247. // Recipe
  6248. //-------------------------------------------------------------------------------------------------------------
  6249. "ItemRecipe" "1"
  6250. "ItemResult" "item_lesser_crit"
  6251. "ItemRequirements"
  6252. {
  6253. "01" "item_broadsword;item_blades_of_attack"
  6254. }
  6255. }
  6256.  
  6257. //=================================================================================================================
  6258. // Lesser Crit
  6259. //=================================================================================================================
  6260. "item_lesser_crit"
  6261. {
  6262. // General
  6263. //-------------------------------------------------------------------------------------------------------------
  6264. "ID" "149" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6265. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6266.  
  6267. // Item Info
  6268. //-------------------------------------------------------------------------------------------------------------
  6269. "ItemCost" "2150"
  6270. "ItemShopTags" "damage;crit"
  6271. "ItemQuality" "epic"
  6272. "ItemAliases" "crystalys"
  6273.  
  6274. // Special
  6275. //-------------------------------------------------------------------------------------------------------------
  6276. "AbilitySpecial"
  6277. {
  6278. "01"
  6279. {
  6280. "var_type" "FIELD_INTEGER"
  6281. "bonus_damage" "30"
  6282. }
  6283. "02"
  6284. {
  6285. "var_type" "FIELD_INTEGER"
  6286. "crit_chance" "20"
  6287. }
  6288. "03"
  6289. {
  6290. "var_type" "FIELD_INTEGER"
  6291. "crit_multiplier" "175"
  6292. }
  6293. }
  6294. }
  6295.  
  6296. //=================================================================================================================
  6297. // Recipe: Armlet
  6298. //=================================================================================================================
  6299. "item_recipe_armlet"
  6300. {
  6301. // General
  6302. //-------------------------------------------------------------------------------------------------------------
  6303. "ID" "150" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6304. "Model" "models/props_gameplay/recipe.mdl"
  6305.  
  6306. // Item Info
  6307. //-------------------------------------------------------------------------------------------------------------
  6308. "ItemCost" "700"
  6309. "ItemShopTags" ""
  6310.  
  6311. // Recipe
  6312. //-------------------------------------------------------------------------------------------------------------
  6313. "ItemRecipe" "1"
  6314. "ItemResult" "item_armlet"
  6315. "ItemRequirements"
  6316. {
  6317. "01" "item_helm_of_iron_will;item_gloves;item_blades_of_attack"
  6318. }
  6319. }
  6320.  
  6321. //=================================================================================================================
  6322. // Armlet
  6323. //=================================================================================================================
  6324. "item_armlet"
  6325. {
  6326. // General
  6327. //-------------------------------------------------------------------------------------------------------------
  6328. "ID" "151" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6329. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  6330.  
  6331. // Stats
  6332. //-------------------------------------------------------------------------------------------------------------
  6333. "AbilityCooldown" "0.0"
  6334.  
  6335. // Item Info
  6336. //-------------------------------------------------------------------------------------------------------------
  6337. "ItemCost" "2600"
  6338. "ItemShopTags" "damage;attack_speed;armor;regen_health;hard_to_tag"
  6339. "ItemQuality" "epic"
  6340. "ItemAliases" "armlet of mordiggian"
  6341. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6342.  
  6343. // Special
  6344. //-------------------------------------------------------------------------------------------------------------
  6345. "AbilitySpecial"
  6346. {
  6347. "01"
  6348. {
  6349. "var_type" "FIELD_INTEGER"
  6350. "bonus_damage" "9"
  6351. }
  6352. "02"
  6353. {
  6354. "var_type" "FIELD_INTEGER"
  6355. "bonus_attack_speed" "15"
  6356. }
  6357. "03"
  6358. {
  6359. "var_type" "FIELD_INTEGER"
  6360. "bonus_armor" "5"
  6361. }
  6362. "04"
  6363. {
  6364. "var_type" "FIELD_INTEGER"
  6365. "bonus_health_regen" "7"
  6366. }
  6367. "05"
  6368. {
  6369. "var_type" "FIELD_INTEGER"
  6370. "unholy_bonus_damage" "31"
  6371. }
  6372. "06"
  6373. {
  6374. "var_type" "FIELD_INTEGER"
  6375. "unholy_bonus_attack_speed" "10"
  6376. }
  6377. "07"
  6378. {
  6379. "var_type" "FIELD_INTEGER"
  6380. "unholy_bonus_strength" "25"
  6381. }
  6382. "08"
  6383. {
  6384. "var_type" "FIELD_INTEGER"
  6385. "unholy_health_drain" "40"
  6386. }
  6387. "09"
  6388. {
  6389. "var_type" "FIELD_FLOAT"
  6390. "toggle_cooldown" "0.036f"
  6391. }
  6392. }
  6393. }
  6394.  
  6395. //=================================================================================================================
  6396. // Recipe: Invisibility Sword
  6397. //=================================================================================================================
  6398. "item_recipe_invis_sword"
  6399. {
  6400. // General
  6401. //-------------------------------------------------------------------------------------------------------------
  6402. "ID" "183" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6403.  
  6404. // Item Info
  6405. //-------------------------------------------------------------------------------------------------------------
  6406. "ItemCost" "0"
  6407. "ItemShopTags" ""
  6408.  
  6409. // Recipe
  6410. //-------------------------------------------------------------------------------------------------------------
  6411. "ItemRecipe" "1"
  6412. "ItemResult" "item_invis_sword"
  6413. "ItemRequirements"
  6414. {
  6415. "01" "item_shadow_amulet;item_claymore"
  6416. }
  6417. }
  6418.  
  6419. //=================================================================================================================
  6420. // Invisibility Sword
  6421. //=================================================================================================================
  6422. "item_invis_sword"
  6423. {
  6424. // General
  6425. //-------------------------------------------------------------------------------------------------------------
  6426. "ID" "152" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6427. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  6428. "FightRecapLevel" "1"
  6429.  
  6430. // Stats
  6431. //-------------------------------------------------------------------------------------------------------------
  6432. "AbilityCooldown" "28.0"
  6433.  
  6434. // Item Info
  6435. //-------------------------------------------------------------------------------------------------------------
  6436. "AbilityManaCost" "75"
  6437. "ItemCost" "3000"
  6438. "ItemShopTags" "damage;attack_speed;movespeed;hard_to_tag"
  6439. "ItemQuality" "epic"
  6440. "ItemAliases" "sb;invis;shadow blade"
  6441. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6442.  
  6443. // Special
  6444. //-------------------------------------------------------------------------------------------------------------
  6445. "AbilitySpecial"
  6446. {
  6447. "01"
  6448. {
  6449. "var_type" "FIELD_INTEGER"
  6450. "bonus_damage" "22"
  6451. }
  6452. "02"
  6453. {
  6454. "var_type" "FIELD_INTEGER"
  6455. "bonus_attack_speed" "30"
  6456. }
  6457. "03"
  6458. {
  6459. "var_type" "FIELD_FLOAT"
  6460. "windwalk_duration" "14.0"
  6461. }
  6462. "04"
  6463. {
  6464. "var_type" "FIELD_INTEGER"
  6465. "windwalk_movement_speed" "20"
  6466. }
  6467. "05"
  6468. {
  6469. "var_type" "FIELD_FLOAT"
  6470. "windwalk_fade_time" "0.3"
  6471. }
  6472. "06"
  6473. {
  6474. "var_type" "FIELD_INTEGER"
  6475. "windwalk_bonus_damage" "150"
  6476. }
  6477. }
  6478. }
  6479.  
  6480. //=================================================================================================================
  6481. // Recipe: Sange and Yasha
  6482. //=================================================================================================================
  6483. "item_recipe_sange_and_yasha"
  6484. {
  6485. // General
  6486. //-------------------------------------------------------------------------------------------------------------
  6487. "ID" "153" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6488.  
  6489. // Item Info
  6490. //-------------------------------------------------------------------------------------------------------------
  6491. "ItemCost" "0"
  6492. "ItemShopTags" ""
  6493.  
  6494. // Recipe
  6495. //-------------------------------------------------------------------------------------------------------------
  6496. "ItemRecipe" "1"
  6497. "ItemResult" "item_sange_and_yasha"
  6498. "ItemRequirements"
  6499. {
  6500. "01" "item_yasha;item_sange"
  6501. }
  6502. }
  6503.  
  6504. //=================================================================================================================
  6505. // Sange and Yasha
  6506. //=================================================================================================================
  6507. "item_sange_and_yasha"
  6508. {
  6509. // General
  6510. //-------------------------------------------------------------------------------------------------------------
  6511. "ID" "154" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6512. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6513.  
  6514. // Item Info
  6515. //-------------------------------------------------------------------------------------------------------------
  6516. "ItemCost" "4100"
  6517. "ItemShopTags" "damage;str;agi;attack_speed;unique"
  6518. "ItemQuality" "artifact"
  6519. "ItemAliases" "sny;s&y;sy;sange and yasha"
  6520. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  6521. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6522.  
  6523. // Special
  6524. //-------------------------------------------------------------------------------------------------------------
  6525. "AbilitySpecial"
  6526. {
  6527. "01"
  6528. {
  6529. "var_type" "FIELD_INTEGER"
  6530. "maim_chance" "16"
  6531. }
  6532. "02"
  6533. {
  6534. "var_type" "FIELD_INTEGER"
  6535. "maim_slow_movement" "-32"
  6536. }
  6537. "03"
  6538. {
  6539. "var_type" "FIELD_INTEGER"
  6540. "maim_slow_attack" "-32"
  6541. }
  6542. "04"
  6543. {
  6544. "var_type" "FIELD_INTEGER"
  6545. "bonus_damage" "16"
  6546. }
  6547. "05"
  6548. {
  6549. "var_type" "FIELD_INTEGER"
  6550. "bonus_strength" "16"
  6551. }
  6552. "06"
  6553. {
  6554. "var_type" "FIELD_INTEGER"
  6555. "bonus_agility" "16"
  6556. }
  6557. "07"
  6558. {
  6559. "var_type" "FIELD_INTEGER"
  6560. "bonus_attack_speed" "16"
  6561. }
  6562. "08"
  6563. {
  6564. "var_type" "FIELD_INTEGER"
  6565. "movement_speed_percent_bonus" "16"
  6566. }
  6567. "09"
  6568. {
  6569. "var_type" "FIELD_FLOAT"
  6570. "maim_duration" "5.0"
  6571. }
  6572. }
  6573. }
  6574.  
  6575. //=================================================================================================================
  6576. // Recipe: Satanic
  6577. //=================================================================================================================
  6578. "item_recipe_satanic"
  6579. {
  6580. // General
  6581. //-------------------------------------------------------------------------------------------------------------
  6582. "ID" "155" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6583. "Model" "models/props_gameplay/recipe.mdl"
  6584.  
  6585. // Item Info
  6586. //-------------------------------------------------------------------------------------------------------------
  6587. "ItemCost" "1100"
  6588. "ItemShopTags" ""
  6589.  
  6590. // Recipe
  6591. //-------------------------------------------------------------------------------------------------------------
  6592. "ItemRecipe" "1"
  6593. "ItemResult" "item_satanic"
  6594. "ItemRequirements"
  6595. {
  6596. "01" "item_reaver;item_helm_of_the_dominator"
  6597. }
  6598. }
  6599.  
  6600. //=================================================================================================================
  6601. // Satanic
  6602. //=================================================================================================================
  6603. "item_satanic"
  6604. {
  6605. // General
  6606. //-------------------------------------------------------------------------------------------------------------
  6607. "ID" "156" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6608. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  6609. "FightRecapLevel" "2"
  6610.  
  6611. // Stats
  6612. //-------------------------------------------------------------------------------------------------------------
  6613. "AbilityCooldown" "35.0"
  6614.  
  6615. // Item Info
  6616. //-------------------------------------------------------------------------------------------------------------
  6617. "ItemCost" "6150"
  6618. "ItemShopTags" "damage;str;armor;unique;hard_to_tag"
  6619. "ItemQuality" "artifact"
  6620. "ItemAliases" "satanic"
  6621. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6622.  
  6623. // Special
  6624. //-------------------------------------------------------------------------------------------------------------
  6625. "AbilitySpecial"
  6626. {
  6627. "01"
  6628. {
  6629. "var_type" "FIELD_INTEGER"
  6630. "bonus_damage" "20"
  6631. }
  6632. "02"
  6633. {
  6634. "var_type" "FIELD_INTEGER"
  6635. "bonus_strength" "25"
  6636. }
  6637. "03"
  6638. {
  6639. "var_type" "FIELD_INTEGER"
  6640. "bonus_armor" "5"
  6641. }
  6642. "04"
  6643. {
  6644. "var_type" "FIELD_INTEGER"
  6645. "lifesteal_percent" "25"
  6646. }
  6647. "05"
  6648. {
  6649. "var_type" "FIELD_INTEGER"
  6650. "unholy_lifesteal_percent" "175"
  6651. }
  6652. "06"
  6653. {
  6654. "var_type" "FIELD_FLOAT"
  6655. "unholy_duration" "3.5"
  6656. }
  6657. }
  6658. }
  6659.  
  6660. //=================================================================================================================
  6661. // Recipe: Mjollnir
  6662. //=================================================================================================================
  6663. "item_recipe_mjollnir"
  6664. {
  6665. // General
  6666. //-------------------------------------------------------------------------------------------------------------
  6667. "ID" "157" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6668. "Model" "models/props_gameplay/recipe.mdl"
  6669.  
  6670. // Item Info
  6671. //-------------------------------------------------------------------------------------------------------------
  6672. "ItemCost" "900"
  6673. "ItemShopTags" ""
  6674.  
  6675. // Recipe
  6676. //-------------------------------------------------------------------------------------------------------------
  6677. "ItemRecipe" "1"
  6678. "ItemResult" "item_mjollnir"
  6679. "ItemRequirements"
  6680. {
  6681. "01" "item_hyperstone;item_maelstrom"
  6682. }
  6683. }
  6684.  
  6685. //=================================================================================================================
  6686. // Mjollnir
  6687. //=================================================================================================================
  6688. "item_mjollnir"
  6689. {
  6690. // General
  6691. //-------------------------------------------------------------------------------------------------------------
  6692. "ID" "158" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6693. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  6694. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  6695. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  6696.  
  6697. // Stats
  6698. //-------------------------------------------------------------------------------------------------------------
  6699. "AbilityCastRange" "600"
  6700. "AbilityCastPoint" "0.0"
  6701. "AbilityCooldown" "35.0"
  6702.  
  6703. // Item Info
  6704. //-------------------------------------------------------------------------------------------------------------
  6705. "AbilityManaCost" "50"
  6706. "ItemCost" "5600"
  6707. "ItemShopTags" "damage;attack_speed;unique"
  6708. "ItemQuality" "artifact"
  6709. "ItemAliases" "mjollnir"
  6710. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  6711. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6712.  
  6713. // Special
  6714. //-------------------------------------------------------------------------------------------------------------
  6715. "AbilitySpecial"
  6716. {
  6717. "01"
  6718. {
  6719. "var_type" "FIELD_INTEGER"
  6720. "bonus_damage" "24"
  6721. }
  6722. "02"
  6723. {
  6724. "var_type" "FIELD_INTEGER"
  6725. "bonus_attack_speed" "80"
  6726. }
  6727. "03"
  6728. {
  6729. "var_type" "FIELD_FLOAT"
  6730. "static_duration" "15.0"
  6731. }
  6732. "04"
  6733. {
  6734. "var_type" "FIELD_INTEGER"
  6735. "static_chance" "20"
  6736. }
  6737. "05"
  6738. {
  6739. "var_type" "FIELD_INTEGER"
  6740. "static_strikes" "4"
  6741. }
  6742. "06"
  6743. {
  6744. "var_type" "FIELD_INTEGER"
  6745. "static_damage" "200"
  6746. }
  6747. "07"
  6748. {
  6749. "var_type" "FIELD_INTEGER"
  6750. "static_primary_radius" "600"
  6751. }
  6752. "08"
  6753. {
  6754. "var_type" "FIELD_INTEGER"
  6755. "static_seconary_radius" "900"
  6756. }
  6757. "09"
  6758. {
  6759. "var_type" "FIELD_INTEGER"
  6760. "static_radius" "900"
  6761. }
  6762. "10"
  6763. {
  6764. "var_type" "FIELD_FLOAT"
  6765. "static_cooldown" "1.0"
  6766. }
  6767. "11"
  6768. {
  6769. "var_type" "FIELD_INTEGER"
  6770. "chain_chance" "25"
  6771. }
  6772. "12"
  6773. {
  6774. "var_type" "FIELD_INTEGER"
  6775. "chain_damage" "150"
  6776. }
  6777. "13"
  6778. {
  6779. "var_type" "FIELD_INTEGER"
  6780. "chain_strikes" "8"
  6781. }
  6782. "14"
  6783. {
  6784. "var_type" "FIELD_INTEGER"
  6785. "chain_radius" "900"
  6786. }
  6787. "15"
  6788. {
  6789. "var_type" "FIELD_FLOAT"
  6790. "chain_delay" "0.25"
  6791. }
  6792. }
  6793. }
  6794.  
  6795. //=================================================================================================================
  6796. // Recipe: Skadi
  6797. //=================================================================================================================
  6798. "item_recipe_skadi"
  6799. {
  6800. // General
  6801. //-------------------------------------------------------------------------------------------------------------
  6802. "ID" "159" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6803.  
  6804. // Item Info
  6805. //-------------------------------------------------------------------------------------------------------------
  6806. "ItemCost" "0"
  6807. "ItemShopTags" ""
  6808.  
  6809. // Recipe
  6810. //-------------------------------------------------------------------------------------------------------------
  6811. "ItemRecipe" "1"
  6812. "ItemResult" "item_skadi"
  6813. "ItemRequirements"
  6814. {
  6815. "01" "item_ultimate_orb;item_ultimate_orb;item_point_booster;item_orb_of_venom"
  6816. }
  6817. }
  6818.  
  6819. //=================================================================================================================
  6820. // Skadi
  6821. //=================================================================================================================
  6822. "item_skadi"
  6823. {
  6824. // General
  6825. //-------------------------------------------------------------------------------------------------------------
  6826. "ID" "160" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6827. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6828.  
  6829. // Item Info
  6830. //-------------------------------------------------------------------------------------------------------------
  6831. "ItemCost" "5675"
  6832. "ItemShopTags" "agi;str;int;hard_to_tag;mana_pool;health_pool;unique"
  6833. "ItemQuality" "artifact"
  6834. "ItemAliases" "eos;eye of skadi"
  6835. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  6836.  
  6837. // Special
  6838. //-------------------------------------------------------------------------------------------------------------
  6839. "AbilitySpecial"
  6840. {
  6841. "01"
  6842. {
  6843. "var_type" "FIELD_INTEGER"
  6844. "bonus_all_stats" "25"
  6845. }
  6846. "02"
  6847. {
  6848. "var_type" "FIELD_INTEGER"
  6849. "bonus_health" "250"
  6850. }
  6851. "03"
  6852. {
  6853. "var_type" "FIELD_INTEGER"
  6854. "bonus_mana" "250"
  6855. }
  6856. "04"
  6857. {
  6858. "var_type" "FIELD_INTEGER"
  6859. "cold_movement_speed" "-35"
  6860. }
  6861. "05"
  6862. {
  6863. "var_type" "FIELD_INTEGER"
  6864. "cold_attack_speed" "-35"
  6865. }
  6866. "06"
  6867. {
  6868. "var_type" "FIELD_FLOAT"
  6869. "cold_duration_melee" "5.0"
  6870. }
  6871. "07"
  6872. {
  6873. "var_type" "FIELD_FLOAT"
  6874. "cold_duration_ranged" "3.0"
  6875. }
  6876. }
  6877. }
  6878.  
  6879. //=================================================================================================================
  6880. // Recipe: Sange
  6881. //=================================================================================================================
  6882. "item_recipe_sange"
  6883. {
  6884. // General
  6885. //-------------------------------------------------------------------------------------------------------------
  6886. "ID" "161" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6887. "Model" "models/props_gameplay/recipe.mdl"
  6888.  
  6889. // Item Info
  6890. //-------------------------------------------------------------------------------------------------------------
  6891. "ItemCost" "600"
  6892. "ItemShopTags" ""
  6893.  
  6894. // Recipe
  6895. //-------------------------------------------------------------------------------------------------------------
  6896. "ItemRecipe" "1"
  6897. "ItemResult" "item_sange"
  6898. "ItemRequirements"
  6899. {
  6900. "01" "item_ogre_axe;item_belt_of_strength"
  6901. }
  6902. }
  6903.  
  6904. //=================================================================================================================
  6905. // Sange
  6906. //=================================================================================================================
  6907. "item_sange"
  6908. {
  6909. // General
  6910. //-------------------------------------------------------------------------------------------------------------
  6911. "ID" "162" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6912. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  6913.  
  6914. // Item Info
  6915. //-------------------------------------------------------------------------------------------------------------
  6916. "ItemCost" "2050"
  6917. "ItemShopTags" "damage;str;unique"
  6918. "ItemQuality" "artifact"
  6919. "ItemAliases" "sange"
  6920.  
  6921. // Special
  6922. //-------------------------------------------------------------------------------------------------------------
  6923. "AbilitySpecial"
  6924. {
  6925. "01"
  6926. {
  6927. "var_type" "FIELD_INTEGER"
  6928. "maim_chance" "15"
  6929. }
  6930. "02"
  6931. {
  6932. "var_type" "FIELD_INTEGER"
  6933. "maim_movement_speed" "-20"
  6934. }
  6935. "03"
  6936. {
  6937. "var_type" "FIELD_INTEGER"
  6938. "maim_attack_speed" "-20"
  6939. }
  6940. "04"
  6941. {
  6942. "var_type" "FIELD_FLOAT"
  6943. "maim_duration" "4.0"
  6944. }
  6945. "05"
  6946. {
  6947. "var_type" "FIELD_INTEGER"
  6948. "bonus_damage" "10"
  6949. }
  6950. "06"
  6951. {
  6952. "var_type" "FIELD_INTEGER"
  6953. "bonus_strength" "16"
  6954. }
  6955. }
  6956. }
  6957.  
  6958. //=================================================================================================================
  6959. // Recipe: Helm of the Dominator
  6960. //=================================================================================================================
  6961. "item_recipe_helm_of_the_dominator"
  6962. {
  6963. // General
  6964. //-------------------------------------------------------------------------------------------------------------
  6965. "ID" "163" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6966.  
  6967. // Item Info
  6968. //-------------------------------------------------------------------------------------------------------------
  6969. "ItemCost" "0"
  6970. "ItemShopTags" ""
  6971.  
  6972. // Recipe
  6973. //-------------------------------------------------------------------------------------------------------------
  6974. "ItemRecipe" "1"
  6975. "ItemResult" "item_helm_of_the_dominator"
  6976. "ItemRequirements"
  6977. {
  6978. "01" "item_lifesteal;item_helm_of_iron_will"
  6979. }
  6980. }
  6981.  
  6982. //=================================================================================================================
  6983. // Helm of the Dominator
  6984. //=================================================================================================================
  6985. "item_helm_of_the_dominator"
  6986. {
  6987. // General
  6988. //-------------------------------------------------------------------------------------------------------------
  6989. "ID" "164" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  6990. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  6991. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  6992. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP"
  6993. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS"
  6994.  
  6995. // Stats
  6996. //-------------------------------------------------------------------------------------------------------------
  6997. "AbilityCastRange" "700"
  6998. "AbilityCastPoint" "0.0"
  6999. "AbilityCooldown" "60.0"
  7000.  
  7001. // Item Info
  7002. //-------------------------------------------------------------------------------------------------------------
  7003. "AbilityManaCost" "75"
  7004. "ItemCost" "1850"
  7005. "ItemShopTags" "damage;armor;unique;hard_to_tag"
  7006. "ItemQuality" "artifact"
  7007. "ItemAliases" "hotd;helm of the dominator"
  7008. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  7009.  
  7010. // Special
  7011. //-------------------------------------------------------------------------------------------------------------
  7012. "AbilitySpecial"
  7013. {
  7014. "01"
  7015. {
  7016. "var_type" "FIELD_INTEGER"
  7017. "bonus_damage" "20"
  7018. }
  7019. "02"
  7020. {
  7021. "var_type" "FIELD_INTEGER"
  7022. "bonus_armor" "5"
  7023. }
  7024. "03"
  7025. {
  7026. "var_type" "FIELD_INTEGER"
  7027. "lifesteal_percent" "15"
  7028. }
  7029. "04"
  7030. {
  7031. "var_type" "FIELD_FLOAT"
  7032. "dominate_duration" "1200.0"
  7033. }
  7034. }
  7035. }
  7036.  
  7037. //=================================================================================================================
  7038. // Recipe: Maelstrom
  7039. //=================================================================================================================
  7040. "item_recipe_maelstrom"
  7041. {
  7042. // General
  7043. //-------------------------------------------------------------------------------------------------------------
  7044. "ID" "165" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7045. "Model" "models/props_gameplay/recipe.mdl"
  7046.  
  7047. // Item Info
  7048. //-------------------------------------------------------------------------------------------------------------
  7049. "ItemCost" "600"
  7050. "ItemShopTags" ""
  7051.  
  7052. // Recipe
  7053. //-------------------------------------------------------------------------------------------------------------
  7054. "ItemRecipe" "1"
  7055. "ItemResult" "item_maelstrom"
  7056. "ItemRequirements"
  7057. {
  7058. "01" "item_gloves;item_mithril_hammer"
  7059. }
  7060. }
  7061.  
  7062. //=================================================================================================================
  7063. // Maelstrom
  7064. //=================================================================================================================
  7065. "item_maelstrom"
  7066. {
  7067. // General
  7068. //-------------------------------------------------------------------------------------------------------------
  7069. "ID" "166" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7070. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7071.  
  7072. // Item Info
  7073. //-------------------------------------------------------------------------------------------------------------
  7074. "ItemCost" "2700"
  7075. "ItemShopTags" "damage;attack_speed;unique"
  7076. "ItemQuality" "artifact"
  7077. "ItemAliases" "maelstrom"
  7078. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  7079.  
  7080. // Special
  7081. //-------------------------------------------------------------------------------------------------------------
  7082. "AbilitySpecial"
  7083. {
  7084. "01"
  7085. {
  7086. "var_type" "FIELD_INTEGER"
  7087. "bonus_damage" "24"
  7088. }
  7089. "02"
  7090. {
  7091. "var_type" "FIELD_INTEGER"
  7092. "bonus_attack_speed" "25"
  7093. }
  7094. "03"
  7095. {
  7096. "var_type" "FIELD_INTEGER"
  7097. "chain_chance" "25"
  7098. }
  7099. "04"
  7100. {
  7101. "var_type" "FIELD_INTEGER"
  7102. "chain_strikes" "4"
  7103. }
  7104. "05"
  7105. {
  7106. "var_type" "FIELD_INTEGER"
  7107. "chain_damage" "120"
  7108. }
  7109. "06"
  7110. {
  7111. "var_type" "FIELD_INTEGER"
  7112. "chain_radius" "900"
  7113. }
  7114. "07"
  7115. {
  7116. "var_type" "FIELD_FLOAT"
  7117. "chain_delay" "0.25"
  7118. }
  7119. }
  7120. }
  7121.  
  7122. //=================================================================================================================
  7123. // Recipe: Desolator
  7124. //=================================================================================================================
  7125. "item_recipe_desolator"
  7126. {
  7127. // General
  7128. //-------------------------------------------------------------------------------------------------------------
  7129. "ID" "167" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7130. "Model" "models/props_gameplay/recipe.mdl"
  7131.  
  7132. // Item Info
  7133. //-------------------------------------------------------------------------------------------------------------
  7134. "ItemCost" "900"
  7135. "ItemShopTags" ""
  7136.  
  7137. // Recipe
  7138. //-------------------------------------------------------------------------------------------------------------
  7139. "ItemRecipe" "1"
  7140. "ItemResult" "item_desolator"
  7141. "ItemRequirements"
  7142. {
  7143. "01" "item_mithril_hammer;item_mithril_hammer"
  7144. }
  7145. }
  7146.  
  7147. //=================================================================================================================
  7148. // Desolator
  7149. //=================================================================================================================
  7150. "item_desolator"
  7151. {
  7152. // General
  7153. //-------------------------------------------------------------------------------------------------------------
  7154. "ID" "168" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7155. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7156.  
  7157. // Item Info
  7158. //-------------------------------------------------------------------------------------------------------------
  7159. "ItemCost" "4100"
  7160. "ItemShopTags" "damage;unique"
  7161. "ItemQuality" "artifact"
  7162. "ItemAliases" "desolator"
  7163. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  7164.  
  7165. // Special
  7166. //-------------------------------------------------------------------------------------------------------------
  7167. "AbilitySpecial"
  7168. {
  7169. "01"
  7170. {
  7171. "var_type" "FIELD_INTEGER"
  7172. "bonus_damage" "60"
  7173. }
  7174. "02"
  7175. {
  7176. "var_type" "FIELD_INTEGER"
  7177. "corruption_armor" "-7"
  7178. }
  7179. "03"
  7180. {
  7181. "var_type" "FIELD_FLOAT"
  7182. "corruption_duration" "15.0"
  7183. }
  7184. }
  7185. }
  7186.  
  7187. //=================================================================================================================
  7188. // Recipe: Yasha
  7189. //=================================================================================================================
  7190. "item_recipe_yasha"
  7191. {
  7192. // General
  7193. //-------------------------------------------------------------------------------------------------------------
  7194. "ID" "169" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7195.  
  7196. // Item Info
  7197. //-------------------------------------------------------------------------------------------------------------
  7198. "ItemCost" "600"
  7199. "ItemShopTags" ""
  7200.  
  7201. // Recipe
  7202. //-------------------------------------------------------------------------------------------------------------
  7203. "ItemRecipe" "1"
  7204. "ItemResult" "item_yasha"
  7205. "ItemRequirements"
  7206. {
  7207. "01" "item_blade_of_alacrity;item_boots_of_elves"
  7208. }
  7209. }
  7210.  
  7211. //=================================================================================================================
  7212. // Yasha
  7213. //=================================================================================================================
  7214. "item_yasha"
  7215. {
  7216. // General
  7217. //-------------------------------------------------------------------------------------------------------------
  7218. "ID" "170" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7219. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7220.  
  7221. // Item Info
  7222. //-------------------------------------------------------------------------------------------------------------
  7223. "ItemCost" "2050"
  7224. "ItemShopTags" "agi;attack_speed;move_speed"
  7225. "ItemQuality" "artifact"
  7226. "ItemAliases" "yasha"
  7227.  
  7228. // Special
  7229. //-------------------------------------------------------------------------------------------------------------
  7230. "AbilitySpecial"
  7231. {
  7232. "01"
  7233. {
  7234. "var_type" "FIELD_INTEGER"
  7235. "bonus_agility" "16"
  7236. }
  7237. "02"
  7238. {
  7239. "var_type" "FIELD_INTEGER"
  7240. "bonus_attack_speed" "15"
  7241. }
  7242. "03"
  7243. {
  7244. "var_type" "FIELD_INTEGER"
  7245. "movement_speed_percent_bonus" "10"
  7246. }
  7247. }
  7248. }
  7249.  
  7250. //=================================================================================================================
  7251. // Recipe: Mask of Madness
  7252. //=================================================================================================================
  7253. "item_recipe_mask_of_madness"
  7254. {
  7255. // General
  7256. //-------------------------------------------------------------------------------------------------------------
  7257. "ID" "171" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7258. "Model" "models/props_gameplay/recipe.mdl"
  7259.  
  7260. // Item Info
  7261. //-------------------------------------------------------------------------------------------------------------
  7262. "ItemCost" "1000"
  7263. "ItemShopTags" ""
  7264.  
  7265. // Recipe
  7266. //-------------------------------------------------------------------------------------------------------------
  7267. "ItemRecipe" "1"
  7268. "ItemResult" "item_mask_of_madness"
  7269. "ItemRequirements"
  7270. {
  7271. "01" "item_lifesteal"
  7272. }
  7273. }
  7274.  
  7275. //=================================================================================================================
  7276. // Mask of Madness
  7277. //=================================================================================================================
  7278. "item_mask_of_madness"
  7279. {
  7280. // General
  7281. //-------------------------------------------------------------------------------------------------------------
  7282. "ID" "172" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7283. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL"
  7284. "FightRecapLevel" "1"
  7285.  
  7286. // Stats
  7287. //-------------------------------------------------------------------------------------------------------------
  7288. "AbilityCooldown" "25.0"
  7289.  
  7290. // Item Info
  7291. //-------------------------------------------------------------------------------------------------------------
  7292. "AbilityManaCost" "25"
  7293. "ItemCost" "1900"
  7294. "ItemShopTags" "unique;hard_to_tag"
  7295. "ItemQuality" "artifact"
  7296. "ItemAliases" "mom;mask of madness"
  7297. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  7298.  
  7299. // Special
  7300. //-------------------------------------------------------------------------------------------------------------
  7301. "AbilitySpecial"
  7302. {
  7303. "01"
  7304. {
  7305. "var_type" "FIELD_INTEGER"
  7306. "lifesteal_percent" "20"
  7307. }
  7308. "02"
  7309. {
  7310. "var_type" "FIELD_INTEGER"
  7311. "berserk_bonus_attack_speed" "100"
  7312. }
  7313. "03"
  7314. {
  7315. "var_type" "FIELD_INTEGER"
  7316. "berserk_bonus_movement_speed" "30"
  7317. }
  7318. "04"
  7319. {
  7320. "var_type" "FIELD_INTEGER"
  7321. "berserk_extra_damage" "30"
  7322. }
  7323. "05"
  7324. {
  7325. "var_type" "FIELD_FLOAT"
  7326. "berserk_duration" "12.0"
  7327. }
  7328. }
  7329. }
  7330.  
  7331. //=================================================================================================================
  7332. // Recipe: Diffusal Blade
  7333. //=================================================================================================================
  7334. "item_recipe_diffusal_blade"
  7335. {
  7336. // General
  7337. //-------------------------------------------------------------------------------------------------------------
  7338. "ID" "173" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7339. "Model" "models/props_gameplay/recipe.mdl"
  7340.  
  7341. // Item Info
  7342. //-------------------------------------------------------------------------------------------------------------
  7343. "ItemCost" "850"
  7344. "ItemShopTags" ""
  7345.  
  7346. // Recipe
  7347. //-------------------------------------------------------------------------------------------------------------
  7348. "ItemRecipe" "1"
  7349. "ItemResult" "item_diffusal_blade"
  7350. "ItemRequirements"
  7351. {
  7352. "01" "item_blade_of_alacrity;item_blade_of_alacrity;item_robe"
  7353. }
  7354. }
  7355.  
  7356. "item_recipe_diffusal_blade_2"
  7357. {
  7358. // General
  7359. //-------------------------------------------------------------------------------------------------------------
  7360. "ID" "195" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7361.  
  7362. // Item Info
  7363. //-------------------------------------------------------------------------------------------------------------
  7364. "ItemCost" "0"
  7365. "ItemShopTags" ""
  7366.  
  7367. // Recipe
  7368. //-------------------------------------------------------------------------------------------------------------
  7369. "ItemRecipe" "1"
  7370. "ItemResult" "item_diffusal_blade_2"
  7371. "ItemRequirements"
  7372. {
  7373. "01" "item_diffusal_blade;item_recipe_diffusal_blade"
  7374. }
  7375. }
  7376.  
  7377. //=================================================================================================================
  7378. // Diffusal Blade
  7379. //=================================================================================================================
  7380. "item_diffusal_blade"
  7381. {
  7382. // General
  7383. //-------------------------------------------------------------------------------------------------------------
  7384. "ID" "174" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7385. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7386. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  7387. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  7388. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  7389. "FightRecapLevel" "1"
  7390.  
  7391. // Stats
  7392. //-------------------------------------------------------------------------------------------------------------
  7393. "AbilityCastRange" "600"
  7394. "AbilityCastPoint" "0.0"
  7395. "AbilityCooldown" "8.0"
  7396. "AbilitySharedCooldown" "diffusal"
  7397. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  7398.  
  7399. // Item Info
  7400. //-------------------------------------------------------------------------------------------------------------
  7401. "AbilityManaCost" "0"
  7402. "ItemCost" "3300"
  7403. "ItemShopTags" "agi;int;unique;hard_to_tag"
  7404. "ItemQuality" "artifact"
  7405. "ItemAliases" "diffusal blade 1"
  7406. "ItemBaseLevel" "1"
  7407.  
  7408. "ItemPermanent" "1"
  7409. "ItemInitialCharges" "8"
  7410. "ItemRequiresCharges" "1"
  7411. "ItemDisplayCharges" "1"
  7412. "MaxUpgradeLevel" "2"
  7413. "ItemBaseLevel" "1"
  7414.  
  7415. "UpgradesItems" "item_diffusal_blade"
  7416. "UpgradeRecipe" "item_recipe_diffusal_blade"
  7417.  
  7418. // Special
  7419. //-------------------------------------------------------------------------------------------------------------
  7420. "AbilitySpecial"
  7421. {
  7422. "01"
  7423. {
  7424. "var_type" "FIELD_INTEGER"
  7425. "bonus_agility" "25 30"
  7426. }
  7427. "02"
  7428. {
  7429. "var_type" "FIELD_INTEGER"
  7430. "bonus_intellect" "6 10"
  7431. }
  7432. "03"
  7433. {
  7434. "var_type" "FIELD_INTEGER"
  7435. "initial_charges" "8"
  7436. }
  7437. "04"
  7438. {
  7439. "var_type" "FIELD_INTEGER"
  7440. "feedback_mana_burn" "20 36"
  7441. }
  7442. "05"
  7443. {
  7444. "var_type" "FIELD_INTEGER"
  7445. "purge_summoned_damage" "99999"
  7446. }
  7447. "06"
  7448. {
  7449. "var_type" "FIELD_INTEGER"
  7450. "purge_rate" "5"
  7451. }
  7452. "07"
  7453. {
  7454. "var_type" "FIELD_FLOAT"
  7455. "purge_root_duration" "3.0"
  7456. }
  7457. "08"
  7458. {
  7459. "var_type" "FIELD_FLOAT"
  7460. "purge_slow_duration" "4.0"
  7461. }
  7462. }
  7463. }
  7464.  
  7465. "item_diffusal_blade_2"
  7466. {
  7467. // General
  7468. //-------------------------------------------------------------------------------------------------------------
  7469. "ID" "196" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7470. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7471. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH"
  7472. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  7473. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  7474. "FightRecapLevel" "1"
  7475.  
  7476. // Stats
  7477. //-------------------------------------------------------------------------------------------------------------
  7478. "AbilityCastRange" "600"
  7479. "AbilityCastPoint" "0.0"
  7480. "AbilityCooldown" "8.0"
  7481. "AbilitySharedCooldown" "diffusal"
  7482. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER"
  7483.  
  7484. // Item Info
  7485. //-------------------------------------------------------------------------------------------------------------
  7486. "AbilityManaCost" "0"
  7487. "ItemCost" "3300"
  7488. "ItemShopTags" "agi;int;unique;hard_to_tag"
  7489. "ItemQuality" "artifact"
  7490. "ItemAliases" "diffusal blade 2"
  7491.  
  7492. "ItemPermanent" "1"
  7493. "ItemInitialCharges" "8"
  7494. "ItemRequiresCharges" "1"
  7495. "ItemDisplayCharges" "1"
  7496. "MaxUpgradeLevel" "2"
  7497. "ItemBaseLevel" "2"
  7498.  
  7499. // Special
  7500. //-------------------------------------------------------------------------------------------------------------
  7501. "AbilitySpecial"
  7502. {
  7503. "01"
  7504. {
  7505. "var_type" "FIELD_INTEGER"
  7506. "bonus_agility" "25 30"
  7507. }
  7508. "02"
  7509. {
  7510. "var_type" "FIELD_INTEGER"
  7511. "bonus_intellect" "6 10"
  7512. }
  7513. "03"
  7514. {
  7515. "var_type" "FIELD_INTEGER"
  7516. "initial_charges" "8"
  7517. }
  7518. "04"
  7519. {
  7520. "var_type" "FIELD_INTEGER"
  7521. "feedback_mana_burn" "20 36"
  7522. }
  7523. "05"
  7524. {
  7525. "var_type" "FIELD_INTEGER"
  7526. "purge_summoned_damage" "99999"
  7527. }
  7528. "06"
  7529. {
  7530. "var_type" "FIELD_INTEGER"
  7531. "purge_rate" "5"
  7532. }
  7533. "07"
  7534. {
  7535. "var_type" "FIELD_FLOAT"
  7536. "purge_root_duration" "3.0"
  7537. }
  7538. "08"
  7539. {
  7540. "var_type" "FIELD_FLOAT"
  7541. "purge_slow_duration" "4.0"
  7542. }
  7543. }
  7544. }
  7545.  
  7546. //=================================================================================================================
  7547. // Recipe: Ethereal Blade
  7548. //=================================================================================================================
  7549. "item_recipe_ethereal_blade"
  7550. {
  7551. // General
  7552. //-------------------------------------------------------------------------------------------------------------
  7553. "ID" "175" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7554.  
  7555. // Item Info
  7556. //-------------------------------------------------------------------------------------------------------------
  7557. "ItemCost" "0"
  7558. "ItemShopTags" ""
  7559.  
  7560. // Recipe
  7561. //-------------------------------------------------------------------------------------------------------------
  7562. "ItemRecipe" "1"
  7563. "ItemResult" "item_ethereal_blade"
  7564. "ItemRequirements"
  7565. {
  7566. "01" "item_eagle;item_ghost"
  7567. }
  7568. }
  7569.  
  7570. //=================================================================================================================
  7571. // Ethereal Blade
  7572. //=================================================================================================================
  7573. "item_ethereal_blade"
  7574. {
  7575. // General
  7576. //-------------------------------------------------------------------------------------------------------------
  7577. "ID" "176" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7578. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  7579. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY | DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  7580. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP"
  7581. "FightRecapLevel" "1"
  7582.  
  7583. // Stats
  7584. //-------------------------------------------------------------------------------------------------------------
  7585. "AbilityCastRange" "800"
  7586. "AbilityCastPoint" "0.0"
  7587. "AbilityCooldown" "30.0"
  7588. "AbilitySharedCooldown" "ethereal"
  7589.  
  7590. // Item Info
  7591. //-------------------------------------------------------------------------------------------------------------
  7592. "AbilityManaCost" "150"
  7593. "ItemCost" "4900"
  7594. "ItemShopTags" "agi;str;int;hard_to_tag"
  7595. "ItemQuality" "epic"
  7596. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  7597. "ItemAliases" "eb;ethereal blade"
  7598. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  7599.  
  7600. // Special
  7601. //-------------------------------------------------------------------------------------------------------------
  7602. "AbilitySpecial"
  7603. {
  7604. "01"
  7605. {
  7606. "var_type" "FIELD_INTEGER"
  7607. "bonus_agility" "40"
  7608. }
  7609. "02"
  7610. {
  7611. "var_type" "FIELD_INTEGER"
  7612. "bonus_strength" "10"
  7613. }
  7614. "03"
  7615. {
  7616. "var_type" "FIELD_INTEGER"
  7617. "bonus_intellect" "10"
  7618. }
  7619. "04"
  7620. {
  7621. "var_type" "FIELD_INTEGER"
  7622. "blast_movement_slow" "-80"
  7623. }
  7624. "05"
  7625. {
  7626. "var_type" "FIELD_FLOAT"
  7627. "duration" "3.0"
  7628. }
  7629. "06"
  7630. {
  7631. "var_type" "FIELD_FLOAT"
  7632. "blast_agility_multiplier" "2.0"
  7633. }
  7634. "07"
  7635. {
  7636. "var_type" "FIELD_INTEGER"
  7637. "blast_damage_base" "75"
  7638. }
  7639. "08"
  7640. {
  7641. "var_type" "FIELD_FLOAT"
  7642. "duration_ally" "4.0"
  7643. }
  7644. "09"
  7645. {
  7646. "var_type" "FIELD_INTEGER"
  7647. "ethereal_damage_bonus" "-40"
  7648. }
  7649. }
  7650. }
  7651.  
  7652. //=================================================================================================================
  7653. // Recipe: Soul Ring
  7654. //=================================================================================================================
  7655. "item_recipe_soul_ring"
  7656. {
  7657. // General
  7658. //-------------------------------------------------------------------------------------------------------------
  7659. "ID" "177" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7660. "Model" "models/props_gameplay/recipe.mdl"
  7661.  
  7662. // Item Info
  7663. //-------------------------------------------------------------------------------------------------------------
  7664. "ItemCost" "125"
  7665. "ItemShopTags" ""
  7666.  
  7667. // Recipe
  7668. //-------------------------------------------------------------------------------------------------------------
  7669. "ItemRecipe" "1"
  7670. "ItemResult" "item_soul_ring"
  7671. "ItemRequirements"
  7672. {
  7673. "01" "item_ring_of_regen;item_sobi_mask"
  7674. }
  7675. }
  7676.  
  7677. //=================================================================================================================
  7678. // Soul Ring
  7679. //=================================================================================================================
  7680. "item_soul_ring"
  7681. {
  7682. // General
  7683. //-------------------------------------------------------------------------------------------------------------
  7684. "ID" "178" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7685. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE"
  7686.  
  7687. // Stats
  7688. //-------------------------------------------------------------------------------------------------------------
  7689. "AbilityCooldown" "30.0"
  7690.  
  7691. // Item Info
  7692. //-------------------------------------------------------------------------------------------------------------
  7693. "AbilityManaCost" "0"
  7694. "ItemCost" "800"
  7695. "ItemShopTags" "regen_health;boost_mana"
  7696. "ItemQuality" "common"
  7697. "ItemAliases" "soul ring"
  7698. "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS"
  7699.  
  7700. // Sound
  7701. //-------------------------------------------------------------------------------------------------------------
  7702. "UIPickupSound" "Item.PickUpRingShop"
  7703. "UIDropSound" "Item.DropRingShop"
  7704. "WorldDropSound" "Item.DropRingWorld"
  7705.  
  7706. // Special
  7707. //-------------------------------------------------------------------------------------------------------------
  7708. "AbilitySpecial"
  7709. {
  7710. "01"
  7711. {
  7712. "var_type" "FIELD_INTEGER"
  7713. "health_regen" "3"
  7714. }
  7715. "02"
  7716. {
  7717. "var_type" "FIELD_INTEGER"
  7718. "mana_regen" "50"
  7719. }
  7720. "03"
  7721. {
  7722. "var_type" "FIELD_INTEGER"
  7723. "health_sacrifice" "150"
  7724. }
  7725. "04"
  7726. {
  7727. "var_type" "FIELD_INTEGER"
  7728. "mana_gain" "150"
  7729. }
  7730. "05"
  7731. {
  7732. "var_type" "FIELD_FLOAT"
  7733. "duration" "10.0"
  7734. }
  7735. }
  7736. }
  7737.  
  7738.  
  7739. //=================================================================================================================
  7740. // Recipe: Arcane Boots
  7741. //=================================================================================================================
  7742. "item_recipe_arcane_boots"
  7743. {
  7744. // General
  7745. //-------------------------------------------------------------------------------------------------------------
  7746. "ID" "179" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7747.  
  7748. // Item Info
  7749. //-------------------------------------------------------------------------------------------------------------
  7750. "ItemCost" "0"
  7751. "ItemShopTags" ""
  7752.  
  7753. // Recipe
  7754. //-------------------------------------------------------------------------------------------------------------
  7755. "ItemRecipe" "1"
  7756. "ItemResult" "item_arcane_boots"
  7757. "ItemRequirements"
  7758. {
  7759. "01" "item_energy_booster;item_boots"
  7760. }
  7761. }
  7762.  
  7763. //=================================================================================================================
  7764. // Arcane Boots
  7765. //=================================================================================================================
  7766. "item_arcane_boots"
  7767. {
  7768. // General
  7769. //-------------------------------------------------------------------------------------------------------------
  7770. "ID" "180" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7771. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7772.  
  7773. // Stats
  7774. //-------------------------------------------------------------------------------------------------------------
  7775. "AbilityCooldown" "55.0"
  7776.  
  7777. // Item Info
  7778. //-------------------------------------------------------------------------------------------------------------
  7779. "AbilityManaCost" "35"
  7780. "ItemCost" "1450"
  7781. "ItemShopTags" "move_speed;boost_mana;mana_pool"
  7782. "ItemQuality" "rare"
  7783. "ItemAliases" "mana;mb;arcane boots"
  7784. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  7785. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  7786. "ItemAlertable" "1"
  7787.  
  7788. // Special
  7789. //-------------------------------------------------------------------------------------------------------------
  7790. "AbilitySpecial"
  7791. {
  7792. "01"
  7793. {
  7794. "var_type" "FIELD_INTEGER"
  7795. "bonus_movement" "55"
  7796. }
  7797. "02"
  7798. {
  7799. "var_type" "FIELD_INTEGER"
  7800. "bonus_mana" "250"
  7801. }
  7802. "03"
  7803. {
  7804. "var_type" "FIELD_INTEGER"
  7805. "replenish_radius" "600"
  7806. }
  7807. "04"
  7808. {
  7809. "var_type" "FIELD_INTEGER"
  7810. "replenish_amount" "135"
  7811. }
  7812. }
  7813. }
  7814.  
  7815. //=================================================================================================================
  7816. // Orb of Venom
  7817. //=================================================================================================================
  7818. "item_orb_of_venom"
  7819. {
  7820. // General
  7821. //-------------------------------------------------------------------------------------------------------------
  7822. "ID" "181" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7823. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  7824.  
  7825. // Item Info
  7826. //-------------------------------------------------------------------------------------------------------------
  7827. "ItemCost" "275"
  7828. "ItemShopTags" "hard_to_tag"
  7829. "ItemQuality" "secret_shop"
  7830. "ItemAliases" "orb of venom"
  7831. "SecretShop" "1"
  7832. "SideShop" "1"
  7833.  
  7834. // Special
  7835. //-------------------------------------------------------------------------------------------------------------
  7836. "AbilitySpecial"
  7837. {
  7838. "01"
  7839. {
  7840. "var_type" "FIELD_INTEGER"
  7841. "poison_movement_speed_melee" "-12"
  7842. }
  7843. "02"
  7844. {
  7845. "var_type" "FIELD_INTEGER"
  7846. "poison_movement_speed_range" "-4"
  7847. }
  7848. "03"
  7849. {
  7850. "var_type" "FIELD_FLOAT"
  7851. "poison_duration" "4.0"
  7852. }
  7853. "04"
  7854. {
  7855. "var_type" "FIELD_FLOAT"
  7856. "poison_damage" "3.0"
  7857. }
  7858. }
  7859. }
  7860.  
  7861. //=================================================================================================================
  7862. // Recipe: Ancient Janggo of Endurance
  7863. //=================================================================================================================
  7864. "item_recipe_ancient_janggo"
  7865. {
  7866. // General
  7867. //-------------------------------------------------------------------------------------------------------------
  7868. "ID" "184" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7869. "Model" "models/props_gameplay/recipe.mdl"
  7870.  
  7871. // Item Info
  7872. //-------------------------------------------------------------------------------------------------------------
  7873. "ItemCost" "875"
  7874. "ItemShopTags" ""
  7875.  
  7876. // Recipe
  7877. //-------------------------------------------------------------------------------------------------------------
  7878. "ItemRecipe" "1"
  7879. "ItemResult" "item_ancient_janggo"
  7880. "ItemRequirements"
  7881. {
  7882. "01" "item_bracer;item_robe"
  7883. "02" "item_ancient_janggo"
  7884. }
  7885. }
  7886.  
  7887. //=================================================================================================================
  7888. // Ancient Janggo of Endurance
  7889. //=================================================================================================================
  7890. "item_ancient_janggo"
  7891. {
  7892. // General
  7893. //-------------------------------------------------------------------------------------------------------------
  7894. "ID" "185" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7895. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  7896. "ItemPermanent" "1"
  7897. "FightRecapLevel" "1"
  7898.  
  7899. // Stats
  7900. //-------------------------------------------------------------------------------------------------------------
  7901. "AbilityCooldown" "30.0"
  7902.  
  7903. // Item Info
  7904. //-------------------------------------------------------------------------------------------------------------
  7905. "ItemCost" "1875"
  7906. "ItemShopTags" "str;agi;int;damage;move_speed;attack_speed;hard_to_tag"
  7907. "ItemQuality" "rare"
  7908. "ItemAliases" "drum of endurance"
  7909. "ItemInitialCharges" "5"
  7910. "ItemDisplayCharges" "1"
  7911. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  7912.  
  7913. // Special
  7914. //-------------------------------------------------------------------------------------------------------------
  7915. "AbilitySpecial"
  7916. {
  7917. "01"
  7918. {
  7919. "var_type" "FIELD_INTEGER"
  7920. "bonus_stats" "9"
  7921. }
  7922. "02"
  7923. {
  7924. "var_type" "FIELD_INTEGER"
  7925. "bonus_damage" "3"
  7926. }
  7927. "03"
  7928. {
  7929. "var_type" "FIELD_INTEGER"
  7930. "bonus_aura_attack_speed_pct" "5"
  7931. }
  7932. "04"
  7933. {
  7934. "var_type" "FIELD_INTEGER"
  7935. "bonus_aura_movement_speed_pct" "5"
  7936. }
  7937. "05"
  7938. {
  7939. "var_type" "FIELD_INTEGER"
  7940. "bonus_attack_speed_pct" "10"
  7941. }
  7942. "06"
  7943. {
  7944. "var_type" "FIELD_INTEGER"
  7945. "bonus_movement_speed_pct" "10"
  7946. }
  7947. "07"
  7948. {
  7949. "var_type" "FIELD_FLOAT"
  7950. "duration" "6.0"
  7951. }
  7952. "08"
  7953. {
  7954. "var_type" "FIELD_INTEGER"
  7955. "radius" "900"
  7956. }
  7957. }
  7958. }
  7959.  
  7960. //=================================================================================================================
  7961. // Recipe: Medallion of Courage
  7962. //=================================================================================================================
  7963. "item_recipe_medallion_of_courage"
  7964. {
  7965. // General
  7966. //-------------------------------------------------------------------------------------------------------------
  7967. "ID" "186" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7968. "Model" "models/props_gameplay/recipe.mdl"
  7969.  
  7970. // Item Info
  7971. //-------------------------------------------------------------------------------------------------------------
  7972. "ItemCost" "200"
  7973. "ItemShopTags" ""
  7974.  
  7975. // Recipe
  7976. //-------------------------------------------------------------------------------------------------------------
  7977. "ItemRecipe" "1"
  7978. "ItemResult" "item_medallion_of_courage"
  7979. "ItemRequirements"
  7980. {
  7981. "01" "item_chainmail;item_sobi_mask"
  7982. }
  7983. }
  7984.  
  7985. //=================================================================================================================
  7986. // Medallion of Courage
  7987. //=================================================================================================================
  7988. "item_medallion_of_courage"
  7989. {
  7990. // General
  7991. //-------------------------------------------------------------------------------------------------------------
  7992. "ID" "187" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  7993. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  7994. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  7995. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_MECHANICAL"
  7996. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES"
  7997. "FightRecapLevel" "1"
  7998.  
  7999. // Stats
  8000. //-------------------------------------------------------------------------------------------------------------
  8001. "AbilityCastRange" "1000"
  8002. "AbilityCooldown" "7.0"
  8003.  
  8004. // Item Info
  8005. //-------------------------------------------------------------------------------------------------------------
  8006. "ItemCost" "1075"
  8007. "ItemShopTags" "armor;regen_mana;hard_to_tag"
  8008. "ItemQuality" "rare"
  8009. "ItemAliases" "medallion of courage"
  8010. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  8011.  
  8012. // Special
  8013. //-------------------------------------------------------------------------------------------------------------
  8014. "AbilitySpecial"
  8015. {
  8016. "01"
  8017. {
  8018. "var_type" "FIELD_INTEGER"
  8019. "bonus_armor" "6"
  8020. }
  8021. "02"
  8022. {
  8023. "var_type" "FIELD_INTEGER"
  8024. "bonus_mana_regen_pct" "50"
  8025. }
  8026. "03"
  8027. {
  8028. "var_type" "FIELD_INTEGER"
  8029. "armor_reduction" "-6"
  8030. }
  8031. "04"
  8032. {
  8033. "var_type" "FIELD_FLOAT"
  8034. "duration" "7.0"
  8035. }
  8036. }
  8037. }
  8038.  
  8039. //=================================================================================================================
  8040. // Smoke of Deceit
  8041. //=================================================================================================================
  8042. "item_smoke_of_deceit"
  8043. {
  8044. // General
  8045. //-------------------------------------------------------------------------------------------------------------
  8046. "ID" "188" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8047. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  8048. "Model" "models/props_gameplay/smoke.mdl"
  8049. "Effect" "dropped_smoke"
  8050. "FightRecapLevel" "1"
  8051.  
  8052. // Stats
  8053. //-------------------------------------------------------------------------------------------------------------
  8054. "AbilityCooldown" "90.0"
  8055.  
  8056. // Item Info
  8057. //-------------------------------------------------------------------------------------------------------------
  8058. "ItemCost" "100"
  8059. "ItemShopTags" "consumable"
  8060. "ItemQuality" "consumable"
  8061. "ItemAliases" "smoke of deceit"
  8062. "ItemStackable" "1"
  8063. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  8064. "ItemPermanent" "0"
  8065. "ItemInitialCharges" "1"
  8066. "ItemDisplayCharges" "1"
  8067. "ItemStockMax" "3"
  8068. "ItemStockTime" "720.0"
  8069. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS"
  8070. "ItemSupport" "1"
  8071. "ItemAlertable" "1"
  8072.  
  8073.  
  8074. // Special
  8075. //-------------------------------------------------------------------------------------------------------------
  8076. "AbilitySpecial"
  8077. {
  8078. "01"
  8079. {
  8080. "var_type" "FIELD_INTEGER"
  8081. "application_radius" "1200"
  8082. }
  8083. "02"
  8084. {
  8085. "var_type" "FIELD_INTEGER"
  8086. "visibility_radius" "1025"
  8087. }
  8088. "03"
  8089. {
  8090. "var_type" "FIELD_INTEGER"
  8091. "bonus_movement_speed" "15"
  8092. }
  8093. "04"
  8094. {
  8095. "var_type" "FIELD_FLOAT"
  8096. "duration" "35.0"
  8097. }
  8098. }
  8099. }
  8100.  
  8101. //=================================================================================================================
  8102. // Recipe: Veil of Discord
  8103. //=================================================================================================================
  8104. "item_recipe_veil_of_discord"
  8105. {
  8106. // General
  8107. //-------------------------------------------------------------------------------------------------------------
  8108. "ID" "189" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8109. "Model" "models/props_gameplay/recipe.mdl"
  8110.  
  8111. // Item Info
  8112. //-------------------------------------------------------------------------------------------------------------
  8113. "ItemCost" "1250"
  8114. "ItemShopTags" ""
  8115.  
  8116. // Recipe
  8117. //-------------------------------------------------------------------------------------------------------------
  8118. "ItemRecipe" "1"
  8119. "ItemResult" "item_veil_of_discord"
  8120. "ItemRequirements"
  8121. {
  8122. "01" "item_helm_of_iron_will;item_null_talisman"
  8123. }
  8124. }
  8125.  
  8126. //=================================================================================================================
  8127. // Veil of discord
  8128. //=================================================================================================================
  8129. "item_veil_of_discord"
  8130. {
  8131. // General
  8132. //-------------------------------------------------------------------------------------------------------------
  8133. "ID" "190" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8134. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_POINT"
  8135.  
  8136. // Stats
  8137. //-------------------------------------------------------------------------------------------------------------
  8138. "AbilityCooldown" "30"
  8139. "AbilityCastRange" "1000"
  8140. "AbilityCastPoint" "0.0"
  8141.  
  8142.  
  8143. // Item Info
  8144. //-------------------------------------------------------------------------------------------------------------
  8145. "AbilityManaCost" "75"
  8146. "ItemCost" "2675"
  8147. "ItemShopTags" "int;armor;regen_health;hard_to_tag"
  8148. "ItemQuality" "rare"
  8149. "ItemAliases" "vod;veil of discord"
  8150. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  8151.  
  8152. // Special
  8153. //-------------------------------------------------------------------------------------------------------------
  8154. "AbilitySpecial"
  8155. {
  8156. "01"
  8157. {
  8158. "var_type" "FIELD_INTEGER"
  8159. "bonus_health_regen" "6"
  8160. }
  8161. "02"
  8162. {
  8163. "var_type" "FIELD_INTEGER"
  8164. "bonus_intellect" "6"
  8165. }
  8166. "03"
  8167. {
  8168. "var_type" "FIELD_INTEGER"
  8169. "bonus_strength" "6"
  8170. }
  8171. "04"
  8172. {
  8173. "var_type" "FIELD_INTEGER"
  8174. "bonus_agility" "6"
  8175. }
  8176. "05"
  8177. {
  8178. "var_type" "FIELD_INTEGER"
  8179. "bonus_damage" "6"
  8180. }
  8181. "06"
  8182. {
  8183. "var_type" "FIELD_INTEGER"
  8184. "bonus_armor" "6"
  8185. }
  8186. "07"
  8187. {
  8188. "var_type" "FIELD_INTEGER"
  8189. "debuff_radius" "600"
  8190. }
  8191. "08"
  8192. {
  8193. "var_type" "FIELD_FLOAT"
  8194. "resist_debuff_duration" "25.0"
  8195. }
  8196. "09"
  8197. {
  8198. "var_type" "FIELD_INTEGER"
  8199. "resist_debuff" "-25"
  8200. }
  8201. }
  8202. }
  8203.  
  8204. //=================================================================================================================
  8205. // Recipe: Rod of Atos
  8206. //=================================================================================================================
  8207. "item_recipe_rod_of_atos"
  8208. {
  8209. // General
  8210. //-------------------------------------------------------------------------------------------------------------
  8211. "ID" "205" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8212.  
  8213. // Item Info
  8214. //-------------------------------------------------------------------------------------------------------------
  8215. "ItemCost" "0"
  8216. "ItemShopTags" ""
  8217.  
  8218. // Recipe
  8219. //-------------------------------------------------------------------------------------------------------------
  8220. "ItemRecipe" "1"
  8221. "ItemResult" "item_rod_of_atos"
  8222. "ItemRequirements"
  8223. {
  8224. "01" "item_staff_of_wizardry;item_staff_of_wizardry;item_vitality_booster"
  8225. }
  8226. }
  8227.  
  8228.  
  8229. //=================================================================================================================
  8230. // Rod of Atos
  8231. //=================================================================================================================
  8232. "item_rod_of_atos"
  8233. {
  8234. // General
  8235. //-------------------------------------------------------------------------------------------------------------
  8236. "ID" "206" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8237. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8238. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8239. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8240. "FightRecapLevel" "1"
  8241.  
  8242. // Stats
  8243. //-------------------------------------------------------------------------------------------------------------
  8244. "AbilityCooldown" "10"
  8245. "AbilityCastRange" "1200"
  8246. "AbilityCastPoint" "0.0"
  8247.  
  8248.  
  8249. // Item Info
  8250. //-------------------------------------------------------------------------------------------------------------
  8251. "AbilityManaCost" "50"
  8252. "ItemCost" "3100"
  8253. "ItemShopTags" "int;armor;regen_health"
  8254. "ItemQuality" "rare"
  8255. "ItemAliases" "rod of atos"
  8256. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  8257.  
  8258. // Special
  8259. //-------------------------------------------------------------------------------------------------------------
  8260. "AbilitySpecial"
  8261. {
  8262. "01"
  8263. {
  8264. "var_type" "FIELD_INTEGER"
  8265. "bonus_intellect" "25"
  8266. }
  8267. "02"
  8268. {
  8269. "var_type" "FIELD_INTEGER"
  8270. "bonus_health" "350"
  8271. }
  8272. "03"
  8273. {
  8274. "var_type" "FIELD_INTEGER"
  8275. "slow" "60"
  8276. }
  8277. "04"
  8278. {
  8279. "var_type" "FIELD_FLOAT"
  8280. "duration" "4"
  8281. }
  8282. }
  8283. }
  8284.  
  8285.  
  8286. //=================================================================================================================
  8287. // Recipe: Abyssal Blade
  8288. //=================================================================================================================
  8289. "item_recipe_abyssal_blade"
  8290. {
  8291. // General
  8292. //-------------------------------------------------------------------------------------------------------------
  8293. "ID" "207" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8294.  
  8295. // Item Info
  8296. //-------------------------------------------------------------------------------------------------------------
  8297. "ItemCost" "0"
  8298. "ItemShopTags" ""
  8299.  
  8300.  
  8301. // Recipe
  8302. //-------------------------------------------------------------------------------------------------------------
  8303. "ItemRecipe" "1"
  8304. "ItemResult" "item_abyssal_blade"
  8305. "ItemRequirements"
  8306. {
  8307. "01" "item_basher;item_relic"
  8308. }
  8309. }
  8310.  
  8311.  
  8312. //=================================================================================================================
  8313. // Abyssal Blade
  8314. //=================================================================================================================
  8315. "item_abyssal_blade"
  8316. {
  8317. // General
  8318. //-------------------------------------------------------------------------------------------------------------
  8319. "ID" "208" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8320. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8321. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8322. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8323. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES"
  8324. "FightRecapLevel" "1"
  8325.  
  8326. // Stats
  8327. //-------------------------------------------------------------------------------------------------------------
  8328. "AbilityCooldown" "60"
  8329. "AbilityCastRange" "140"
  8330. "AbilityCastPoint" "0.0"
  8331.  
  8332.  
  8333. // Item Info
  8334. //-------------------------------------------------------------------------------------------------------------
  8335. "AbilityManaCost" "150"
  8336. "ItemCost" "6750"
  8337. "ItemShopTags" "damage;str;hard_to_tag"
  8338. "ItemQuality" "epic"
  8339. "ItemAliases" "abyssal blade"
  8340. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  8341. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  8342.  
  8343. // Special
  8344. //-------------------------------------------------------------------------------------------------------------
  8345. "AbilitySpecial"
  8346. {
  8347. "01"
  8348. {
  8349. "var_type" "FIELD_INTEGER"
  8350. "bonus_damage" "100"
  8351. }
  8352. "02"
  8353. {
  8354. "var_type" "FIELD_INTEGER"
  8355. "bonus_strength" "10"
  8356. }
  8357. "03"
  8358. {
  8359. "var_type" "FIELD_INTEGER"
  8360. "bash_chance_melee" "25"
  8361. }
  8362. "04"
  8363. {
  8364. "var_type" "FIELD_INTEGER"
  8365. "bash_chance_ranged" "10"
  8366. }
  8367. "05"
  8368. {
  8369. "var_type" "FIELD_FLOAT"
  8370. "bash_duration" "1.4"
  8371. }
  8372. "06"
  8373. {
  8374. "var_type" "FIELD_FLOAT"
  8375. "bash_cooldown" "2.0"
  8376. }
  8377. "07"
  8378. {
  8379. "var_type" "FIELD_FLOAT"
  8380. "stun_duration" "2"
  8381. }
  8382.  
  8383. }
  8384. }
  8385.  
  8386.  
  8387. //=================================================================================================================
  8388. // Recipe: Heaven's Halberd
  8389. //=================================================================================================================
  8390. "item_recipe_heavens_halberd"
  8391. {
  8392. // General
  8393. //-------------------------------------------------------------------------------------------------------------
  8394. "ID" "209" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8395.  
  8396. // Item Info
  8397. //-------------------------------------------------------------------------------------------------------------
  8398. "ItemCost" "0"
  8399. "ItemShopTags" ""
  8400.  
  8401. // Recipe
  8402. //-------------------------------------------------------------------------------------------------------------
  8403. "ItemRecipe" "1"
  8404. "ItemResult" "item_heavens_halberd"
  8405. "ItemRequirements"
  8406. {
  8407. "01" "item_sange;item_talisman_of_evasion"
  8408. }
  8409. }
  8410.  
  8411.  
  8412. //=================================================================================================================
  8413. // Heaven's Halberd
  8414. //=================================================================================================================
  8415. "item_heavens_halberd"
  8416. {
  8417. // General
  8418. //-------------------------------------------------------------------------------------------------------------
  8419. "ID" "210" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8420. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8421. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8422. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8423. "FightRecapLevel" "1"
  8424.  
  8425. // Stats
  8426. //-------------------------------------------------------------------------------------------------------------
  8427. "AbilityCooldown" "30"
  8428. "AbilityCastRange" "600"
  8429. "AbilityCastPoint" "0.0"
  8430.  
  8431.  
  8432. // Item Info
  8433. //-------------------------------------------------------------------------------------------------------------
  8434. "AbilityManaCost" "100"
  8435. "ItemCost" "3850"
  8436. "ItemShopTags" "str;damage;evasion"
  8437. "ItemQuality" "artifact"
  8438. "ItemAliases" "heaven's halberd"
  8439. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  8440.  
  8441. // Special
  8442. //-------------------------------------------------------------------------------------------------------------
  8443. "AbilitySpecial"
  8444. {
  8445.  
  8446. "01"
  8447. {
  8448. "var_type" "FIELD_INTEGER"
  8449. "bonus_evasion" "25"
  8450. }
  8451. "02"
  8452. {
  8453. "var_type" "FIELD_INTEGER"
  8454. "maim_chance" "15"
  8455. }
  8456. "03"
  8457. {
  8458. "var_type" "FIELD_INTEGER"
  8459. "maim_movement_speed" "-20"
  8460. }
  8461. "04"
  8462. {
  8463. "var_type" "FIELD_INTEGER"
  8464. "maim_attack_speed" "-20"
  8465. }
  8466. "05"
  8467. {
  8468. "var_type" "FIELD_INTEGER"
  8469. "bonus_damage" "25"
  8470. }
  8471. "06"
  8472. {
  8473. "var_type" "FIELD_INTEGER"
  8474. "bonus_strength" "20"
  8475. }
  8476. "07"
  8477. {
  8478. "var_type" "FIELD_FLOAT"
  8479. "maim_duration" "4.0"
  8480. }
  8481. "08"
  8482. {
  8483. "var_type" "FIELD_FLOAT"
  8484. "disarm_range" "4.5"
  8485. }
  8486. "09"
  8487. {
  8488. "var_type" "FIELD_FLOAT"
  8489. "disarm_melee" "3.0"
  8490. }
  8491. }
  8492. }
  8493.  
  8494. //=================================================================================================================
  8495. // Recipe: Ring of Aquila
  8496. //=================================================================================================================
  8497. "item_recipe_ring_of_aquila"
  8498. {
  8499. // General
  8500. //-------------------------------------------------------------------------------------------------------------
  8501. "ID" "211" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8502.  
  8503. // Item Info
  8504. //-------------------------------------------------------------------------------------------------------------
  8505. "ItemCost" "0"
  8506. "ItemShopTags" ""
  8507.  
  8508. // Recipe
  8509. //-------------------------------------------------------------------------------------------------------------
  8510. "ItemRecipe" "1"
  8511. "ItemResult" "item_ring_of_aquila"
  8512. "ItemRequirements"
  8513. {
  8514. "01" "item_wraith_band;item_ring_of_basilius"
  8515. }
  8516. }
  8517.  
  8518. //=================================================================================================================
  8519. // Ring of Aquila
  8520. //=================================================================================================================
  8521. "item_ring_of_aquila"
  8522. {
  8523. // General
  8524. //-------------------------------------------------------------------------------------------------------------
  8525. "ID" "212" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8526. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE"
  8527.  
  8528. // Item Info
  8529. //-------------------------------------------------------------------------------------------------------------
  8530. "ItemCost" "985"
  8531. "ItemShopTags" ""
  8532. "ItemQuality" "rare"
  8533. "ItemAliases" "roa;ring of aquila"
  8534. "ItemShareability" ""
  8535. "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS"
  8536.  
  8537. // Sound
  8538. //-------------------------------------------------------------------------------------------------------------
  8539. "UIPickupSound" "Item.PickUpRingShop"
  8540. "UIDropSound" "Item.DropRingShop"
  8541. "WorldDropSound" "Item.DropRingWorld"
  8542.  
  8543. // Special
  8544. //-------------------------------------------------------------------------------------------------------------
  8545. "AbilitySpecial"
  8546. {
  8547. "01"
  8548. {
  8549. "var_type" "FIELD_INTEGER"
  8550. "bonus_damage" "9"
  8551. }
  8552. "02"
  8553. {
  8554. "var_type" "FIELD_INTEGER"
  8555. "bonus_all_stats" "3"
  8556. }
  8557. "03"
  8558. {
  8559. "var_type" "FIELD_INTEGER"
  8560. "bonus_agility" "6"
  8561. }
  8562. "04"
  8563. {
  8564. "var_type" "FIELD_INTEGER"
  8565. "bonus_armor" "1"
  8566. }
  8567. "05"
  8568. {
  8569. "var_type" "FIELD_INTEGER"
  8570. "aura_radius" "900"
  8571. }
  8572. "06"
  8573. {
  8574. "var_type" "FIELD_FLOAT"
  8575. "aura_mana_regen" "0.65"
  8576. }
  8577. "07"
  8578. {
  8579. "var_type" "FIELD_INTEGER"
  8580. "aura_bonus_armor" "2"
  8581. }
  8582. }
  8583. }
  8584.  
  8585. //=================================================================================================================
  8586. // Recipe: Tranquil Boots
  8587. //=================================================================================================================
  8588. "item_recipe_tranquil_boots"
  8589. {
  8590. // General
  8591. //-------------------------------------------------------------------------------------------------------------
  8592. "ID" "213" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8593.  
  8594. // Item Info
  8595. //-------------------------------------------------------------------------------------------------------------
  8596. "ItemCost" "0"
  8597. "ItemShopTags" ""
  8598.  
  8599. // Recipe
  8600. //-------------------------------------------------------------------------------------------------------------
  8601. "ItemRecipe" "1"
  8602. "ItemResult" "item_tranquil_boots"
  8603. "ItemRequirements"
  8604. {
  8605. "01" "item_boots;item_ring_of_protection;item_ring_of_regen"
  8606. }
  8607. }
  8608.  
  8609. //=================================================================================================================
  8610. // Tranquil Boots
  8611. //=================================================================================================================
  8612. "item_tranquil_boots"
  8613. {
  8614. // General
  8615. //-------------------------------------------------------------------------------------------------------------
  8616. "ID" "214" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8617. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  8618.  
  8619. // Stats
  8620. //-------------------------------------------------------------------------------------------------------------
  8621. "AbilityCooldown" "13.0"
  8622. "AbilityManaCost" "0"
  8623.  
  8624. // Item Info
  8625. //-------------------------------------------------------------------------------------------------------------
  8626. "ItemCost" "975"
  8627. "ItemShopTags" "move_speed;regen_health;armor"
  8628. "ItemQuality" "rare"
  8629. "ItemAliases" "tranquil boots"
  8630. "ItemHideCharges" "1"
  8631. "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS"
  8632.  
  8633. // Special
  8634. //-------------------------------------------------------------------------------------------------------------
  8635. "AbilitySpecial"
  8636. {
  8637. "01"
  8638. {
  8639. "var_type" "FIELD_INTEGER"
  8640. "bonus_movement_speed" "90"
  8641. }
  8642. "02"
  8643. {
  8644. "var_type" "FIELD_INTEGER"
  8645. "bonus_armor" "4"
  8646. }
  8647. "03"
  8648. {
  8649. "var_type" "FIELD_INTEGER"
  8650. "bonus_health_regen" "12"
  8651. }
  8652. "04"
  8653. {
  8654. "var_type" "FIELD_FLOAT"
  8655. "heal_duration" "20.0"
  8656. }
  8657. "05"
  8658. {
  8659. "var_type" "FIELD_INTEGER"
  8660. "heal_amount" "250"
  8661. }
  8662. "06"
  8663. {
  8664. "var_type" "FIELD_FLOAT"
  8665. "heal_interval" "0.334"
  8666. }
  8667. "07"
  8668. {
  8669. "var_type" "FIELD_INTEGER"
  8670. "break_time" "13"
  8671. }
  8672. "08"
  8673. {
  8674. "var_type" "FIELD_INTEGER"
  8675. "break_count" "1"
  8676. }
  8677. "09"
  8678. {
  8679. "var_type" "FIELD_INTEGER"
  8680. "break_threshold" "20"
  8681. }
  8682. "10"
  8683. {
  8684. "var_type" "FIELD_INTEGER"
  8685. "broken_movement_speed" "60"
  8686. }
  8687. }
  8688. }
  8689.  
  8690. //=================================================================================================================
  8691. // Shadow Amulet
  8692. //=================================================================================================================
  8693. "item_shadow_amulet"
  8694. {
  8695. // General
  8696. //-------------------------------------------------------------------------------------------------------------
  8697. "ID" "215" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8698. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_MOVEMENT"
  8699. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  8700. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  8701. "FightRecapLevel" "1"
  8702.  
  8703. // Stats
  8704. //-------------------------------------------------------------------------------------------------------------
  8705. "AbilityCastRange" "600"
  8706. "AbilityCooldown" "10.0"
  8707. "AbilityManaCost" "0"
  8708.  
  8709. // Item Info
  8710. //-------------------------------------------------------------------------------------------------------------
  8711. "ItemCost" "1600"
  8712. "ItemShopTags" ""
  8713. "ItemAliases" "shadow amulet"
  8714.  
  8715. // Special
  8716. //-------------------------------------------------------------------------------------------------------------
  8717. "AbilitySpecial"
  8718. {
  8719. "01"
  8720. {
  8721. "var_type" "FIELD_FLOAT"
  8722. "fade_time" "1.5"
  8723. }
  8724. "02"
  8725. {
  8726. "var_type" "FIELD_INTEGER"
  8727. "bonus_attack_speed" "30"
  8728. }
  8729. }
  8730. }
  8731.  
  8732. //================================================================================================================
  8733. // Halloween Candy Corn
  8734. //=================================================================================================================
  8735. "item_halloween_candy_corn"
  8736. {
  8737. // General
  8738. //-------------------------------------------------------------------------------------------------------------
  8739. "ID" "216" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  8740. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  8741. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY | DOTA_UNIT_TARGET_TEAM_ENEMY"
  8742. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_BUILDING"
  8743. "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE"
  8744. "Model" "models/props_gameplay/halloween_candy.mdl"
  8745.  
  8746. // Sound
  8747. //-------------------------------------------------------------------------------------------------------------
  8748. "UIPickupSound" "Item.PickUpGemShop"
  8749. "UIDropSound" "Item.DropGemShop"
  8750. "WorldDropSound" "Item.DropGemWorld"
  8751.  
  8752. // Stats
  8753. //-------------------------------------------------------------------------------------------------------------
  8754. "AbilityCastRange" "350"
  8755. "AbilityCastPoint" "0.0"
  8756.  
  8757. // Time
  8758. //-------------------------------------------------------------------------------------------------------------
  8759. "AbilityCooldown" "0.0"
  8760.  
  8761.  
  8762. // Item Info
  8763. //-------------------------------------------------------------------------------------------------------------
  8764. "ItemCost" "0"
  8765. "ItemShopTags" "consumable"
  8766. "ItemQuality" "consumable"
  8767. "ItemStackable" "1"
  8768. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  8769. "ItemPermanent" "0"
  8770. "ItemInitialCharges" "1"
  8771. "ItemPurchasable" "0"
  8772. "ItemKillable" "0"
  8773. "ItemDroppable" "0"
  8774. "ItemSellable" "0"
  8775.  
  8776. // Special
  8777. //-------------------------------------------------------------------------------------------------------------
  8778. "AbilitySpecial"
  8779. {
  8780. }
  8781. }
  8782.  
  8783. //=================================================================================================================
  8784. // Mystery Rune Meat Hook
  8785. //=================================================================================================================
  8786. "item_mystery_hook"
  8787. {
  8788. // General
  8789. //-------------------------------------------------------------------------------------------------------------
  8790. "ID" "217" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  8791. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT"
  8792. "AbilityUnitDamageType" "DAMAGE_TYPE_PURE"
  8793.  
  8794. // Casting
  8795. //-------------------------------------------------------------------------------------------------------------
  8796. "AbilityCastRange" "1300"
  8797. "AbilityCastPoint" "0.3"
  8798.  
  8799. // Time
  8800. //-------------------------------------------------------------------------------------------------------------
  8801. "AbilityCooldown" "11.0"
  8802.  
  8803. // Damage.
  8804. //-------------------------------------------------------------------------------------------------------------
  8805. "AbilityDamage" "360"
  8806.  
  8807. // Cost
  8808. //-------------------------------------------------------------------------------------------------------------
  8809. "AbilityManaCost" "140"
  8810.  
  8811. // Item Info
  8812. //-------------------------------------------------------------------------------------------------------------
  8813. "ItemCost" "0"
  8814. "ItemShopTags" "consumable"
  8815. "ItemQuality" "consumable"
  8816. "ItemStackable" "1"
  8817. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  8818. "ItemPermanent" "0"
  8819. "ItemInitialCharges" "2"
  8820. "ItemPurchasable" "0"
  8821. "ItemSellable" "0"
  8822.  
  8823. // Special
  8824. //-------------------------------------------------------------------------------------------------------------
  8825. "AbilitySpecial"
  8826. {
  8827. "01"
  8828. {
  8829. "var_type" "FIELD_FLOAT"
  8830. "hook_speed" "1600.0"
  8831. }
  8832. "02"
  8833. {
  8834. "var_type" "FIELD_INTEGER"
  8835. "hook_width" "100"
  8836. }
  8837. "03"
  8838. {
  8839. "var_type" "FIELD_INTEGER"
  8840. "hook_distance" "1300"
  8841. }
  8842. "04"
  8843. {
  8844. "var_type" "FIELD_INTEGER"
  8845. "vision_radius" "500"
  8846. }
  8847. "05"
  8848. {
  8849. "var_type" "FIELD_FLOAT"
  8850. "vision_duration" "4.0"
  8851. }
  8852. }
  8853. }
  8854.  
  8855.  
  8856. //=================================================================================================================
  8857. // Mystery Rune Mirana Arrow
  8858. //=================================================================================================================
  8859. "item_mystery_arrow"
  8860. {
  8861. // General
  8862. //-------------------------------------------------------------------------------------------------------------
  8863. "ID" "218" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  8864. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_POINT"
  8865. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  8866.  
  8867. // Casting
  8868. //-------------------------------------------------------------------------------------------------------------
  8869. "AbilityCastRange" "3000"
  8870. "AbilityCastPoint" "0.5"
  8871.  
  8872. // Time
  8873. //-------------------------------------------------------------------------------------------------------------
  8874. "AbilityCooldown" "2.0"
  8875. "AbilityDuration" "3.11"
  8876.  
  8877. // Damage.
  8878. //-------------------------------------------------------------------------------------------------------------
  8879. "AbilityDamage" "360"
  8880.  
  8881. // Cost
  8882. //-------------------------------------------------------------------------------------------------------------
  8883. "AbilityManaCost" "0"
  8884.  
  8885. // Item Info
  8886. //-------------------------------------------------------------------------------------------------------------
  8887. "ItemCost" "0"
  8888. "ItemShopTags" "consumable"
  8889. "ItemQuality" "consumable"
  8890. "ItemStackable" "1"
  8891. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  8892. "ItemPermanent" "0"
  8893. "ItemInitialCharges" "2"
  8894. "ItemPurchasable" "0"
  8895. "ItemSellable" "0"
  8896.  
  8897. // Special
  8898. //-------------------------------------------------------------------------------------------------------------
  8899. "AbilitySpecial"
  8900. {
  8901. "01"
  8902. {
  8903. "var_type" "FIELD_FLOAT"
  8904. "arrow_speed" "857.0"
  8905. }
  8906. "02"
  8907. {
  8908. "var_type" "FIELD_INTEGER"
  8909. "arrow_width" "115"
  8910. }
  8911. "03"
  8912. {
  8913. "var_type" "FIELD_INTEGER"
  8914. "arrow_range" "3000"
  8915. }
  8916. "04"
  8917. {
  8918. "var_type" "FIELD_INTEGER"
  8919. "arrow_max_stunrange" "1500"
  8920. }
  8921. "05"
  8922. {
  8923. "var_type" "FIELD_FLOAT"
  8924. "arrow_min_stun" "0.5"
  8925. }
  8926. "06"
  8927. {
  8928. "var_type" "FIELD_FLOAT"
  8929. "arrow_max_stun" "5.0"
  8930. }
  8931. }
  8932. }
  8933.  
  8934. //=================================================================================================================
  8935. // Mystery Missile
  8936. //=================================================================================================================
  8937. "item_mystery_missile"
  8938. {
  8939. // General
  8940. //-------------------------------------------------------------------------------------------------------------
  8941. "ID" "219" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  8942. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET"
  8943. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY"
  8944. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC"
  8945. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  8946.  
  8947. // Casting
  8948. //-------------------------------------------------------------------------------------------------------------
  8949. "AbilityCastRange" "1050"
  8950. "AbilityCastPoint" "0.3"
  8951.  
  8952. // Time
  8953. //-------------------------------------------------------------------------------------------------------------
  8954. "AbilityCooldown" "20.0"
  8955.  
  8956. // Cost
  8957. //-------------------------------------------------------------------------------------------------------------
  8958. "AbilityManaCost" "0"
  8959.  
  8960. // Damage.
  8961. //-------------------------------------------------------------------------------------------------------------
  8962. "AbilityDamage" "440"
  8963.  
  8964. // Item Info
  8965. //-------------------------------------------------------------------------------------------------------------
  8966. "ItemCost" "0"
  8967. "ItemShopTags" "consumable"
  8968. "ItemQuality" "consumable"
  8969. "ItemStackable" "1"
  8970. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  8971. "ItemPermanent" "0"
  8972. "ItemInitialCharges" "2"
  8973. "ItemPurchasable" "0"
  8974. "ItemSellable" "0"
  8975.  
  8976.  
  8977. // Special
  8978. //-------------------------------------------------------------------------------------------------------------
  8979. "AbilitySpecial"
  8980. {
  8981. "01"
  8982. {
  8983. "var_type" "FIELD_FLOAT"
  8984. "stun_duration" "2.5"
  8985. }
  8986. "02"
  8987. {
  8988. "var_type" "FIELD_INTEGER"
  8989. "attack_speed_bonus_pct" "400"
  8990. }
  8991. "03"
  8992. {
  8993. "var_type" "FIELD_INTEGER"
  8994. "min_damage" "50"
  8995. }
  8996. "04"
  8997. {
  8998. "var_type" "FIELD_INTEGER"
  8999. "max_distance" "2000"
  9000. }
  9001. "05"
  9002. {
  9003. "var_type" "FIELD_INTEGER"
  9004. "pre_flight_time" "3"
  9005. }
  9006. "06"
  9007. {
  9008. "var_type" "FIELD_INTEGER"
  9009. "hero_damage" "34"
  9010. }
  9011. "07"
  9012. {
  9013. "var_type" "FIELD_FLOAT"
  9014. "speed" "340"
  9015. }
  9016. "08"
  9017. {
  9018. "var_type" "FIELD_INTEGER"
  9019. "acceleration" "20"
  9020. }
  9021. "09"
  9022. {
  9023. "var_type" "FIELD_INTEGER"
  9024. "enemy_vision_time" "4"
  9025. }
  9026. }
  9027. }
  9028.  
  9029. //=================================================================================================================
  9030. // Mystery Toss
  9031. //=================================================================================================================
  9032. "item_mystery_toss"
  9033. {
  9034. // General
  9035. //-------------------------------------------------------------------------------------------------------------
  9036. "ID" "220" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  9037. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_AOE"
  9038. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM"
  9039. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM"
  9040. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  9041.  
  9042. // Casting
  9043. //-------------------------------------------------------------------------------------------------------------
  9044. "AbilityCastRange" "1300"
  9045. "AbilityCastPoint" "0.0"
  9046.  
  9047. // Time
  9048. //-------------------------------------------------------------------------------------------------------------
  9049. "AbilityCooldown" "2.0"
  9050.  
  9051. // Damage.
  9052. //-------------------------------------------------------------------------------------------------------------
  9053. "AbilityDamage" "300"
  9054.  
  9055. // Cost
  9056. //-------------------------------------------------------------------------------------------------------------
  9057. "AbilityManaCost" "0"
  9058.  
  9059. // Stats
  9060. //-------------------------------------------------------------------------------------------------------------
  9061. "AbilityModifierSupportValue" "0.25" // generally used for damage only
  9062.  
  9063. // Item Info
  9064. //-------------------------------------------------------------------------------------------------------------
  9065. "ItemCost" "0"
  9066. "ItemShopTags" "consumable"
  9067. "ItemQuality" "consumable"
  9068. "ItemStackable" "1"
  9069. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9070. "ItemPermanent" "0"
  9071. "ItemInitialCharges" "2"
  9072. "ItemPurchasable" "0"
  9073. "ItemSellable" "0"
  9074.  
  9075.  
  9076. // Special
  9077. //-------------------------------------------------------------------------------------------------------------
  9078. "AbilitySpecial"
  9079. {
  9080. "01"
  9081. {
  9082. "var_type" "FIELD_INTEGER"
  9083. "duration" "1.0"
  9084. }
  9085. "02"
  9086. {
  9087. "var_type" "FIELD_INTEGER"
  9088. "grab_radius" "250"
  9089. }
  9090. "03"
  9091. {
  9092. "var_type" "FIELD_INTEGER"
  9093. "radius" "275"
  9094. }
  9095. "04"
  9096. {
  9097. "var_type" "FIELD_INTEGER"
  9098. "bonus_damage_pct" "20"
  9099. }
  9100. "05"
  9101. {
  9102. "var_type" "FIELD_INTEGER"
  9103. "grow_bonus_damage_pct" "80"
  9104. }
  9105. "06"
  9106. {
  9107. "var_type" "FIELD_INTEGER"
  9108. "tooltip_range" "1300"
  9109. }
  9110. "07"
  9111. {
  9112. "var_type" "FIELD_INTEGER"
  9113. "toss_damage" "300"
  9114. }
  9115. }
  9116. }
  9117.  
  9118. //=================================================================================================================
  9119. // Mystery Vacuum
  9120. //=================================================================================================================
  9121. "item_mystery_vacuum"
  9122. {
  9123. // General
  9124. //-------------------------------------------------------------------------------------------------------------
  9125. "ID" "221" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats.
  9126. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE"
  9127. "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL"
  9128.  
  9129. // Casting
  9130. //-------------------------------------------------------------------------------------------------------------
  9131. "AbilityCastRange" "500"
  9132. "AbilityCastPoint" "0.4"
  9133.  
  9134. // Time
  9135. //-------------------------------------------------------------------------------------------------------------
  9136. "AbilityCooldown" "2.0"
  9137.  
  9138. // Cost
  9139. //-------------------------------------------------------------------------------------------------------------
  9140. "AbilityManaCost" "0"
  9141.  
  9142. // Item Info
  9143. //-------------------------------------------------------------------------------------------------------------
  9144. "ItemCost" "0"
  9145. "ItemShopTags" "consumable"
  9146. "ItemQuality" "consumable"
  9147. "ItemStackable" "1"
  9148. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9149. "ItemPermanent" "0"
  9150. "ItemInitialCharges" "2"
  9151. "ItemPurchasable" "0"
  9152. "ItemSellable" "0"
  9153.  
  9154. // Special
  9155. //-------------------------------------------------------------------------------------------------------------
  9156. "AbilitySpecial"
  9157. {
  9158. "01"
  9159. {
  9160. "var_type" "FIELD_INTEGER"
  9161. "radius" "550"
  9162. }
  9163. "02"
  9164. {
  9165. "var_type" "FIELD_FLOAT"
  9166. "duration" "0.4"
  9167. }
  9168. "03"
  9169. {
  9170. "var_type" "FIELD_INTEGER"
  9171. "damage" "160"
  9172. }
  9173. "04"
  9174. {
  9175. "var_type" "FIELD_INTEGER"
  9176. "radius_tree" "275"
  9177. }
  9178. }
  9179. }
  9180.  
  9181. //=================================================================================================================
  9182. // Halloween Rapier
  9183. //=================================================================================================================
  9184. "item_halloween_rapier"
  9185. {
  9186. // General
  9187. //-------------------------------------------------------------------------------------------------------------
  9188. "ID" "226" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9189. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  9190.  
  9191. // Item Info
  9192. //-------------------------------------------------------------------------------------------------------------
  9193. "ItemCost" "6200"
  9194. "ItemShopTags" "damage"
  9195. "ItemQuality" "epic"
  9196. "ItemShareability" "ITEM_NOT_SHAREABLE"
  9197. "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS"
  9198. "ItemSellable" "0"
  9199. "ItemKillable" "0"
  9200. "ItemPurchasable" "0"
  9201. "ItemInitialCharges" "3"
  9202. "ItemPermanent" "0"
  9203.  
  9204. // Special
  9205. //-------------------------------------------------------------------------------------------------------------
  9206. "AbilitySpecial"
  9207. {
  9208. "01"
  9209. {
  9210. "var_type" "FIELD_INTEGER"
  9211. "bonus_damage" "100"
  9212. }
  9213. }
  9214. }
  9215.  
  9216. //================================================================================================================
  9217. //
  9218. //=================================================================================================================
  9219. "item_greevil_whistle"
  9220. {
  9221. // General
  9222. //-------------------------------------------------------------------------------------------------------------
  9223. "ID" "228" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9224. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED"
  9225.  
  9226. // Sound
  9227. //-------------------------------------------------------------------------------------------------------------
  9228. "UIPickupSound" "Item.PickUpGemShop"
  9229. "UIDropSound" "Item.DropGemShop"
  9230. "WorldDropSound" "Item.DropGemWorld"
  9231.  
  9232. // Stats
  9233. //-------------------------------------------------------------------------------------------------------------
  9234. "AbilityCastRange" "0"
  9235. "AbilityCastPoint" "0.0"
  9236.  
  9237. // Time
  9238. //-------------------------------------------------------------------------------------------------------------
  9239. "AbilityCooldown" "120.0"
  9240.  
  9241.  
  9242. // Item Info
  9243. //-------------------------------------------------------------------------------------------------------------
  9244. "ItemCost" "0"
  9245. "ItemShopTags" "consumable"
  9246. "ItemQuality" "consumable"
  9247. "ItemStackable" "0"
  9248. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  9249. "ItemPermanent" "1"
  9250. "ItemInitialCharges" "1"
  9251. "ItemPurchasable" "0"
  9252. "ItemKillable" "0"
  9253. "ItemDroppable" "0"
  9254. "ItemSellable" "0"
  9255.  
  9256. // Special
  9257. //-------------------------------------------------------------------------------------------------------------
  9258. "AbilitySpecial"
  9259. {
  9260. "01"
  9261. {
  9262. "var_type" "FIELD_FLOAT"
  9263. "duration" "30"
  9264. }
  9265. "02"
  9266. {
  9267. "var_type" "FIELD_FLOAT"
  9268. "transform_duration" "2"
  9269. }
  9270. }
  9271. }
  9272.  
  9273. //================================================================================================================
  9274. // Toggleable whistle
  9275. //=================================================================================================================
  9276. "item_greevil_whistle_toggle"
  9277. {
  9278. // General
  9279. //-------------------------------------------------------------------------------------------------------------
  9280. "ID" "235"
  9281. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED"
  9282.  
  9283. // Sound
  9284. //-------------------------------------------------------------------------------------------------------------
  9285. "UIPickupSound" "Item.PickUpGemShop"
  9286. "UIDropSound" "Item.DropGemShop"
  9287. "WorldDropSound" "Item.DropGemWorld"
  9288.  
  9289. // Stats
  9290. //-------------------------------------------------------------------------------------------------------------
  9291. "AbilityCastRange" "0"
  9292. "AbilityCastPoint" "0.0"
  9293. "AbilityChannelTime" "2.0"
  9294.  
  9295. // Time
  9296. //-------------------------------------------------------------------------------------------------------------
  9297. "AbilityCooldown" "2.0"
  9298.  
  9299. // Item Info
  9300. //-------------------------------------------------------------------------------------------------------------
  9301. "ItemCost" "0"
  9302. "ItemShopTags" "consumable"
  9303. "ItemQuality" "consumable"
  9304. "ItemStackable" "0"
  9305. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  9306. "ItemPermanent" "1"
  9307. "ItemInitialCharges" "1"
  9308. "ItemPurchasable" "0"
  9309. "ItemKillable" "0"
  9310. "ItemDroppable" "0"
  9311. "ItemSellable" "0"
  9312.  
  9313. // Special
  9314. //-------------------------------------------------------------------------------------------------------------
  9315. "AbilitySpecial"
  9316. {
  9317. "01"
  9318. {
  9319. "var_type" "FIELD_FLOAT"
  9320. "duration" "30"
  9321. }
  9322. "02"
  9323. {
  9324. "var_type" "FIELD_FLOAT"
  9325. "transform_duration" "2"
  9326. }
  9327. }
  9328. }
  9329.  
  9330. //================================================================================================================
  9331. // XMas present
  9332. //=================================================================================================================
  9333. "item_present"
  9334. {
  9335. // General
  9336. //-------------------------------------------------------------------------------------------------------------
  9337. "ID" "227" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9338. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  9339. "Model" "models/props_winter/present.mdl"
  9340.  
  9341. // Sound
  9342. //-------------------------------------------------------------------------------------------------------------
  9343. "UIPickupSound" "Item.PickUpGemShop"
  9344. "UIDropSound" "Item.DropGemShop"
  9345. "WorldDropSound" "Item.DropGemWorld"
  9346.  
  9347. // Stats
  9348. //-------------------------------------------------------------------------------------------------------------
  9349. "AbilityCastRange" "350"
  9350. "AbilityCastPoint" "0.0"
  9351.  
  9352. // Time
  9353. //-------------------------------------------------------------------------------------------------------------
  9354. "AbilityCooldown" "0.0"
  9355.  
  9356.  
  9357. // Item Info
  9358. //-------------------------------------------------------------------------------------------------------------
  9359. "ItemCost" "0"
  9360. "ItemShopTags" "consumable"
  9361. "ItemQuality" "consumable"
  9362. "ItemStackable" "1"
  9363. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  9364. "ItemPermanent" "0"
  9365. "ItemInitialCharges" "2"
  9366. "ItemPurchasable" "0"
  9367. "ItemKillable" "0"
  9368. "ItemDroppable" "0"
  9369. "ItemSellable" "0"
  9370. "ItemCastOnPickup" "1"
  9371.  
  9372. // Special
  9373. //-------------------------------------------------------------------------------------------------------------
  9374. "AbilitySpecial"
  9375. {
  9376. }
  9377. }
  9378.  
  9379. //================================================================================================================
  9380. // Xmas Stocking
  9381. //=================================================================================================================
  9382. "item_winter_stocking"
  9383. {
  9384. // General
  9385. //-------------------------------------------------------------------------------------------------------------
  9386. "ID" "229" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9387. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  9388.  
  9389. // Sound
  9390. //-------------------------------------------------------------------------------------------------------------
  9391. "UIPickupSound" "Item.PickUpGemShop"
  9392. "UIDropSound" "Item.DropGemShop"
  9393. "WorldDropSound" "Item.DropGemWorld"
  9394.  
  9395. // Stats
  9396. //-------------------------------------------------------------------------------------------------------------
  9397. "AbilityCastRange" "350"
  9398. "AbilityCastPoint" "0.0"
  9399.  
  9400. // Time
  9401. //-------------------------------------------------------------------------------------------------------------
  9402. "AbilityCooldown" "0.0"
  9403.  
  9404.  
  9405. // Item Info
  9406. //-------------------------------------------------------------------------------------------------------------
  9407. "ItemCost" "0"
  9408. "ItemShopTags" "consumable"
  9409. "ItemQuality" "consumable"
  9410. "ItemStackable" "1"
  9411. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  9412. "ItemPermanent" "0"
  9413. "ItemInitialCharges" "1"
  9414. "ItemPurchasable" "0"
  9415. "ItemKillable" "0"
  9416. "ItemDroppable" "0"
  9417. "ItemSellable" "0"
  9418. // Special
  9419. //-------------------------------------------------------------------------------------------------------------
  9420. "AbilitySpecial"
  9421. {
  9422. }
  9423. }
  9424.  
  9425. //=================================================================================================================
  9426. // XMas Skates
  9427. //=================================================================================================================
  9428. "item_winter_skates"
  9429. {
  9430. // General
  9431. //-------------------------------------------------------------------------------------------------------------
  9432. "ID" "230" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9433. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE"
  9434.  
  9435. // Item Info
  9436. //-------------------------------------------------------------------------------------------------------------
  9437. "ItemCost" "0"
  9438. "ItemShopTags" "move_speed"
  9439. "ItemQuality" "component"
  9440. "ItemPurchasable" "0"
  9441.  
  9442. // Special
  9443. //-------------------------------------------------------------------------------------------------------------
  9444. "AbilitySpecial"
  9445. {
  9446. "01"
  9447. {
  9448. "var_type" "FIELD_INTEGER"
  9449. "bonus_movement_speed" "100"
  9450. }
  9451. }
  9452. }
  9453.  
  9454. //=================================================================================================================
  9455. // Winter Cake
  9456. //=================================================================================================================
  9457. "item_winter_cake"
  9458. {
  9459. // General
  9460. //-------------------------------------------------------------------------------------------------------------
  9461. "ID" "231" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9462. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  9463. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  9464. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  9465.  
  9466. // Stats
  9467. //-------------------------------------------------------------------------------------------------------------
  9468. "AbilityCastRange" "150"
  9469. "AbilityCastPoint" "0.0"
  9470.  
  9471. // Item Info
  9472. //-------------------------------------------------------------------------------------------------------------
  9473. "ItemCost" "0"
  9474. "ItemShopTags" "consumable"
  9475. "ItemQuality" "consumable"
  9476. "ItemStackable" "1"
  9477. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9478. "ItemPermanent" "0"
  9479. "ItemInitialCharges" "5"
  9480. "ItemPurchasable" "0"
  9481.  
  9482. // Special
  9483. //-------------------------------------------------------------------------------------------------------------
  9484. "AbilitySpecial"
  9485. {
  9486. "01"
  9487. {
  9488. "var_type" "FIELD_INTEGER"
  9489. "buff_duration" "8"
  9490. }
  9491. "02"
  9492. {
  9493. "var_type" "FIELD_INTEGER"
  9494. "total_health" "400"
  9495. }
  9496. "03"
  9497. {
  9498. "var_type" "FIELD_INTEGER"
  9499. "total_mana" "50"
  9500. }
  9501. }
  9502. }
  9503.  
  9504. //=================================================================================================================
  9505. // Winter Cookie
  9506. //=================================================================================================================
  9507. "item_winter_cookie"
  9508. {
  9509. // General
  9510. //-------------------------------------------------------------------------------------------------------------
  9511. "ID" "232" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9512. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  9513. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  9514. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  9515.  
  9516. // Stats
  9517. //-------------------------------------------------------------------------------------------------------------
  9518. "AbilityCastRange" "150"
  9519. "AbilityCastPoint" "0.0"
  9520.  
  9521. // Item Info
  9522. //-------------------------------------------------------------------------------------------------------------
  9523. "ItemCost" "0"
  9524. "ItemShopTags" "consumable"
  9525. "ItemQuality" "consumable"
  9526. "ItemStackable" "1"
  9527. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9528. "ItemPermanent" "0"
  9529. "ItemInitialCharges" "5"
  9530. "ItemPurchasable" "0"
  9531.  
  9532. // Special
  9533. //-------------------------------------------------------------------------------------------------------------
  9534. "AbilitySpecial"
  9535. {
  9536. "01"
  9537. {
  9538. "var_type" "FIELD_INTEGER"
  9539. "buff_duration" "11"
  9540. }
  9541. "02"
  9542. {
  9543. "var_type" "FIELD_INTEGER"
  9544. "total_health" "350"
  9545. }
  9546. "03"
  9547. {
  9548. "var_type" "FIELD_INTEGER"
  9549. "total_mana" "100"
  9550. }
  9551. }
  9552. }
  9553.  
  9554. //=================================================================================================================
  9555. // Winter Coco
  9556. //=================================================================================================================
  9557. "item_winter_coco"
  9558. {
  9559. // General
  9560. //-------------------------------------------------------------------------------------------------------------
  9561. "ID" "233" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9562. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  9563. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  9564. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  9565.  
  9566. // Stats
  9567. //-------------------------------------------------------------------------------------------------------------
  9568. "AbilityCastRange" "150"
  9569. "AbilityCastPoint" "0.0"
  9570.  
  9571. // Item Info
  9572. //-------------------------------------------------------------------------------------------------------------
  9573. "ItemCost" "0"
  9574. "ItemShopTags" "consumable"
  9575. "ItemQuality" "consumable"
  9576. "ItemStackable" "1"
  9577. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9578. "ItemPermanent" "0"
  9579. "ItemInitialCharges" "5"
  9580. "ItemPurchasable" "0"
  9581.  
  9582. // Special
  9583. //-------------------------------------------------------------------------------------------------------------
  9584. "AbilitySpecial"
  9585. {
  9586. "01"
  9587. {
  9588. "var_type" "FIELD_INTEGER"
  9589. "buff_duration" "14"
  9590. }
  9591. "02"
  9592. {
  9593. "var_type" "FIELD_INTEGER"
  9594. "total_health" "300"
  9595. }
  9596. "03"
  9597. {
  9598. "var_type" "FIELD_INTEGER"
  9599. "total_mana" "150"
  9600. }
  9601. }
  9602. }
  9603.  
  9604. //=================================================================================================================
  9605. // Winter Ham
  9606. //=================================================================================================================
  9607. "item_winter_ham"
  9608. {
  9609. // General
  9610. //-------------------------------------------------------------------------------------------------------------
  9611. "ID" "234" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9612. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  9613. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  9614. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  9615.  
  9616. // Stats
  9617. //-------------------------------------------------------------------------------------------------------------
  9618. "AbilityCastRange" "150"
  9619. "AbilityCastPoint" "0.0"
  9620.  
  9621. // Item Info
  9622. //-------------------------------------------------------------------------------------------------------------
  9623. "ItemCost" "0"
  9624. "ItemShopTags" "consumable"
  9625. "ItemQuality" "consumable"
  9626. "ItemStackable" "1"
  9627. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9628. "ItemPermanent" "0"
  9629. "ItemInitialCharges" "5"
  9630. "ItemPurchasable" "0"
  9631.  
  9632. // Special
  9633. //-------------------------------------------------------------------------------------------------------------
  9634. "AbilitySpecial"
  9635. {
  9636. "01"
  9637. {
  9638. "var_type" "FIELD_INTEGER"
  9639. "buff_duration" "2"
  9640. }
  9641. "02"
  9642. {
  9643. "var_type" "FIELD_INTEGER"
  9644. "total_health" "300"
  9645. }
  9646. "03"
  9647. {
  9648. "var_type" "FIELD_INTEGER"
  9649. "total_mana" "75"
  9650. }
  9651. }
  9652. }
  9653.  
  9654. //=================================================================================================================
  9655. // Winter Kringle
  9656. //=================================================================================================================
  9657. "item_winter_kringle"
  9658. {
  9659. // General
  9660. //-------------------------------------------------------------------------------------------------------------
  9661. "ID" "236" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9662. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK"
  9663. "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY"
  9664. "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO"
  9665.  
  9666. // Stats
  9667. //-------------------------------------------------------------------------------------------------------------
  9668. "AbilityCastRange" "150"
  9669. "AbilityCastPoint" "0.0"
  9670.  
  9671. // Item Info
  9672. //-------------------------------------------------------------------------------------------------------------
  9673. "ItemCost" "0"
  9674. "ItemShopTags" "consumable"
  9675. "ItemQuality" "consumable"
  9676. "ItemStackable" "1"
  9677. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9678. "ItemPermanent" "0"
  9679. "ItemInitialCharges" "5"
  9680. "ItemPurchasable" "0"
  9681.  
  9682. // Special
  9683. //-------------------------------------------------------------------------------------------------------------
  9684. "AbilitySpecial"
  9685. {
  9686. "01"
  9687. {
  9688. "var_type" "FIELD_INTEGER"
  9689. "buff_duration" "17"
  9690. }
  9691. "02"
  9692. {
  9693. "var_type" "FIELD_INTEGER"
  9694. "total_health" "250"
  9695. }
  9696. "03"
  9697. {
  9698. "var_type" "FIELD_INTEGER"
  9699. "total_mana" "200"
  9700. }
  9701. }
  9702. }
  9703.  
  9704. //=================================================================================================================
  9705. // Greevil Mushroom
  9706. //=================================================================================================================
  9707. "item_winter_mushroom"
  9708. {
  9709. // General
  9710. //-------------------------------------------------------------------------------------------------------------
  9711. "ID" "237" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9712. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  9713.  
  9714.  
  9715. // Stats
  9716. //-------------------------------------------------------------------------------------------------------------
  9717. "AbilityCastRange" "150"
  9718. "AbilityCastPoint" "0.0"
  9719.  
  9720. // Item Info
  9721. //-------------------------------------------------------------------------------------------------------------
  9722. "ItemCost" "0"
  9723. "ItemShopTags" "consumable"
  9724. "ItemQuality" "consumable"
  9725. "ItemStackable" "1"
  9726. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9727. "ItemPermanent" "0"
  9728. "ItemInitialCharges" "1"
  9729. "ItemPurchasable" "0"
  9730. "ItemKillable" "0"
  9731. "ItemDroppable" "0"
  9732. "ItemSellable" "0"
  9733.  
  9734. // Special
  9735. //-------------------------------------------------------------------------------------------------------------
  9736. "AbilitySpecial"
  9737. {
  9738. }
  9739. }
  9740.  
  9741. //=================================================================================================================
  9742. // Greevil Treat
  9743. //=================================================================================================================
  9744. "item_winter_greevil_treat"
  9745. {
  9746. // General
  9747. //-------------------------------------------------------------------------------------------------------------
  9748. "ID" "238" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9749. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  9750.  
  9751. // Stats
  9752. //-------------------------------------------------------------------------------------------------------------
  9753. "AbilityCastRange" "150"
  9754. "AbilityCastPoint" "0.0"
  9755.  
  9756. // Item Info
  9757. //-------------------------------------------------------------------------------------------------------------
  9758. "ItemCost" "0"
  9759. "ItemShopTags" "consumable"
  9760. "ItemQuality" "consumable"
  9761. "ItemStackable" "1"
  9762. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9763. "ItemPermanent" "0"
  9764. "ItemInitialCharges" "2"
  9765. "ItemPurchasable" "0"
  9766. "ItemKillable" "0"
  9767. "ItemDroppable" "0"
  9768. "ItemSellable" "0"
  9769.  
  9770. // Special
  9771. //-------------------------------------------------------------------------------------------------------------
  9772. "AbilitySpecial"
  9773. {
  9774. "01"
  9775. {
  9776. "var_type" "FIELD_INTEGER"
  9777. "duration" "10"
  9778. }
  9779. }
  9780. }
  9781.  
  9782. //=================================================================================================================
  9783. // Greevil Chow
  9784. //=================================================================================================================
  9785. "item_winter_greevil_garbage"
  9786. {
  9787. // General
  9788. //-------------------------------------------------------------------------------------------------------------
  9789. "ID" "239" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9790. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET"
  9791.  
  9792. // Stats
  9793. //-------------------------------------------------------------------------------------------------------------
  9794. "AbilityCastRange" "150"
  9795. "AbilityCastPoint" "0.0"
  9796.  
  9797. // Item Info
  9798. //-------------------------------------------------------------------------------------------------------------
  9799. "ItemCost" "0"
  9800. "ItemShopTags" "consumable"
  9801. "ItemQuality" "consumable"
  9802. "ItemStackable" "1"
  9803. "ItemShareability" "ITEM_FULLY_SHAREABLE"
  9804. "ItemPermanent" "0"
  9805. "ItemInitialCharges" "2"
  9806. "ItemPurchasable" "0"
  9807. "ItemKillable" "0"
  9808. "ItemDroppable" "0"
  9809. "ItemSellable" "0"
  9810.  
  9811. // Special
  9812. //-------------------------------------------------------------------------------------------------------------
  9813. "AbilitySpecial"
  9814. {
  9815. "01"
  9816. {
  9817. "var_type" "FIELD_INTEGER"
  9818. "buff_duration" "5"
  9819. }
  9820. "02"
  9821. {
  9822. "var_type" "FIELD_INTEGER"
  9823. "total_health" "400"
  9824. }
  9825. "03"
  9826. {
  9827. "var_type" "FIELD_INTEGER"
  9828. "total_mana" "150"
  9829. }
  9830. }
  9831. }
  9832.  
  9833. //=================================================================================================================
  9834. // Greevil Blink dagger
  9835. //=================================================================================================================
  9836. "item_winter_greevil_chewy"
  9837. {
  9838. // General
  9839. //-------------------------------------------------------------------------------------------------------------
  9840. "ID" "240" // unique ID number for this item. Do not change this once established or it will invalidate collected stats.
  9841. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_CHANNELLED"
  9842.  
  9843. // Stats
  9844. //-------------------------------------------------------------------------------------------------------------
  9845. "AbilityCastRange" "400"
  9846. "AbilityCastPoint" "0.0"
  9847. "AbilityCooldown" "10.0"
  9848. "AbilityManaCost" "0"
  9849. "AbilityChannelTime" "2.0"
  9850.  
  9851.  
  9852. // Item Info
  9853. //-------------------------------------------------------------------------------------------------------------
  9854. "ItemCost" "0"
  9855. "ItemShopTags" "consumable"
  9856. "ItemQuality" "consumable"
  9857. "ItemStackable" "0"
  9858. "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING"
  9859. "ItemPermanent" "1"
  9860. "ItemInitialCharges" "1"
  9861. "ItemPurchasable" "0"
  9862. "ItemKillable" "0"
  9863. "ItemDroppable" "0"
  9864. "ItemSellable" "0"
  9865.  
  9866. // Special
  9867. //-------------------------------------------------------------------------------------------------------------
  9868. "AbilitySpecial"
  9869. {
  9870. }
  9871. }
  9872.  
  9873. // next free ID: 242
  9874. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement