// Dota Heroes File "DOTAAbilities" { "Version" "1" // NOTES: // // "ability_type": // DOTA_ABILITY_TYPE_BASIC = 0 : // DOTA_ABILITY_TYPE_ULTIMATE = 1 : // DOTA_ABILITY_TYPE_ATTRIBUTES = 2 : // // "ability_behavior": // 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. // DOTA_ABILITY_BEHAVIOR_PASSIVE = 2 : Can't be casted like above but this one shows up on the ability HUD // DOTA_ABILITY_BEHAVIOR_NO_TARGET = 4 : Doesn't need a target to be cast, ability fires off as soon as the button is pressed // DOTA_ABILITY_BEHAVIOR_UNIT_TARGET = 8 : Ability needs a target to be casted on. // 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) // 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. // 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) // DOTA_ABILITY_BEHAVIOR_CHANNELLED = 128 : This abillity is channelled. If the user moves or is silenced the ability is interrupted. // DOTA_ABILITY_BEHAVIOR_ITEM = 256 : This ability is tied up to an item. // DOTA_ABILITY_BEHAVIOR_TOGGLE = 512 : This ability can be insta-toggled // DOTA_ABILITY_BEHAVIOR_DIRECTIONAL = 1024 : This ability has a direction from the hero // DOTA_ABILITY_BEHAVIOR_IMMEDIATE = 2048 : This ability does not interrupt other abilities // //================================================================================================================= // Blink dagger //================================================================================================================= "item_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_OVERSHOOT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" "AbilityOvershootCastRange" "960" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" "AbilitySharedCooldown" "blink" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2250" "ItemShopTags" "teleport" "ItemQuality" "component" "ItemAliases" "blink dagger" //"SideShop" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "blink_range" "1200" } "02" { "var_type" "FIELD_FLOAT" "blink_damage_cooldown" "3.0" } "03" { "var_type" "FIELD_INTEGER" "blink_range_clamp" "960" } } } //================================================================================================================= // Blink dagger //================================================================================================================= "item_overwhelming_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "600" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_OVERSHOOT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" "AbilityOvershootCastRange" "960" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" "AbilitySharedCooldown" "blink" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "6800" "ItemShopTags" "teleport" "ItemQuality" "component" "ItemAliases" "blink dagger" //"SideShop" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "blink_range" "1200" } "02" { "var_type" "FIELD_FLOAT" "blink_damage_cooldown" "3.0" } "03" { "var_type" "FIELD_INTEGER" "blink_range_clamp" "960" } "04" { "var_type" "FIELD_INTEGER" "bonus_strength" "25" } "05" { "var_type" "FIELD_INTEGER" "radius" "800" } "06" { "var_type" "FIELD_INTEGER" "movement_slow" "50" } "07" { "var_type" "FIELD_INTEGER" "attack_slow" "50" } "08" { "var_type" "FIELD_FLOAT" "duration" "6" } "09" { "var_type" "FIELD_INTEGER" "damage_pct" "150" } } } //================================================================================================================= // Blink dagger //================================================================================================================= "item_swift_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "603" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_OVERSHOOT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" "AbilityOvershootCastRange" "960" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" "AbilitySharedCooldown" "blink" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "6800" "ItemShopTags" "teleport" "ItemQuality" "component" "ItemAliases" "blink dagger" //"SideShop" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "blink_range" "1200" "blink_damage_cooldown" "3.0" "blink_range_clamp" "960" "bonus_agility" "25" "bonus_movement" "40" "bonus_agi_active" "35" "duration" "6" } } //================================================================================================================= // Blink dagger //================================================================================================================= "item_arcane_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "604" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_OVERSHOOT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" "AbilityOvershootCastRange" "960" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" "AbilitySharedCooldown" "blink" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "6800" "ItemShopTags" "teleport" "ItemQuality" "component" "ItemAliases" "blink dagger" //"SideShop" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "blink_range" "1200" "blink_damage_cooldown" "3.0" "blink_range_clamp" "960" "bonus_intellect" "25" "duration" "6" "cast_pct_improvement" "50" "manacost_reduction" "25" "debuff_amp" "20" } } //================================================================================================================= // Recipe: Arcane Blink //================================================================================================================= "item_recipe_arcane_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "606" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1750" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_arcane_blink" "ItemRequirements" { "01" "item_blink*;item_mystic_staff" } } //================================================================================================================= // Recipe: Swift Blink //================================================================================================================= "item_recipe_swift_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "607" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1750" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_swift_blink" "ItemRequirements" { "01" "item_blink*;item_eagle" } } //================================================================================================================= // Recipe: Overwhelming Blink //================================================================================================================= "item_recipe_overwhelming_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "608" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1750" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_overwhelming_blink" "ItemRequirements" { "01" "item_blink*;item_reaver" } } //================================================================================================================= // Blades of Attack //================================================================================================================= "item_blades_of_attack" { // General //------------------------------------------------------------------------------------------------------------- "ID" "2" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "damage;tutorial" "ItemQuality" "component" "ItemAliases" "blades of attack" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } } } //================================================================================================================= // Broadsword //================================================================================================================= "item_broadsword" { // General //------------------------------------------------------------------------------------------------------------- "ID" "3" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "broadsword" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "15" } } } //================================================================================================================= // Chainmail //================================================================================================================= "item_chainmail" { // General //------------------------------------------------------------------------------------------------------------- "ID" "4" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "550" "ItemShopTags" "armor" "ItemQuality" "component" "ItemAliases" "chainmail" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "4" } } } //================================================================================================================= // Claymore //================================================================================================================= "item_claymore" { // General //------------------------------------------------------------------------------------------------------------- "ID" "5" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1350" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "claymore" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "20" } } } //================================================================================================================= // Helm of Iron Will //================================================================================================================= "item_helm_of_iron_will" { // General //------------------------------------------------------------------------------------------------------------- "ID" "6" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "975" "ItemShopTags" "armor;regen_health" "ItemQuality" "component" "ItemAliases" "helm of iron will" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "02" { "var_type" "FIELD_FLOAT" "bonus_regen" "5" } } } //================================================================================================================= // Javelin //================================================================================================================= "item_javelin" { // General //------------------------------------------------------------------------------------------------------------- "ID" "7" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "javelin" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_chance" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "70" } } } //================================================================================================================= // Mithril Hammer //================================================================================================================= "item_mithril_hammer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "8" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1600" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "mithril hammer" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } } } //================================================================================================================= // Platemail //================================================================================================================= "item_platemail" { // General //------------------------------------------------------------------------------------------------------------- "ID" "9" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "armor" "ItemQuality" "secret_shop" "ItemAliases" "platemail" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } } } //================================================================================================================= // Quarterstaff //================================================================================================================= "item_quarterstaff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "10" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "875" "ItemShopTags" "damage;attack_speed" "ItemQuality" "component" "ItemAliases" "quarterstaff" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_speed" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } } } //================================================================================================================= // Quelling Blade //================================================================================================================= "item_quelling_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "11" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" "AbilityCooldown" "4.0" "Model" "models/props_gameplay/quelling_blade.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "100" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "qb;quelling blade" //"SideShop" "1" "ShouldBeSuggested" "1" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage_bonus" "8" } "02" { "var_type" "FIELD_INTEGER" "damage_bonus_ranged" "4" } "03" { "var_type" "FIELD_INTEGER" "quelling_range_tooltip" "350" } } } //================================================================================================================= // Faerie Fire //================================================================================================================= "item_faerie_fire" { // General //------------------------------------------------------------------------------------------------------------- "ID" "237" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "5.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "70" "ItemShopTags" "damage" "ItemQuality" "consumable" "ItemAliases" "faerie fire" "ItemStackable" "0" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemHideCharges" "1" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Sounden //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "2" } "02" { "var_type" "FIELD_INTEGER" "hp_restore" "85" } } } //================================================================================================================= // Infused Raindrop //================================================================================================================= "item_infused_raindrop" { // General //------------------------------------------------------------------------------------------------------------- "ID" "265" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "7.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "225" "ItemShopTags" "armor" "ItemQuality" "component" "ItemAliases" "raindrop" "ItemStackable" "0" "ItemPermanent" "0" "ItemInitialCharges" "6" "ItemHideCharges" "0" "ItemStockTime" "1" "ItemStockInitial" "0" "ItemStockMax" "1" "ItemInitialStockTime" "270.0" // Sounden //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "mana_regen" "0.8" } "02" { "var_type" "FIELD_FLOAT" "bonus_armor" "0" } "03" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "0" } "04" { "var_type" "FIELD_INTEGER" "magic_damage_block" "120" } "05" { "var_type" "FIELD_INTEGER" "min_damage" "75" } "06" { "var_type" "FIELD_INTEGER" "initial_charges" "6" } } } //================================================================================================================= // Wind Lace //================================================================================================================= "item_wind_lace" { // General //------------------------------------------------------------------------------------------------------------- "ID" "244" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" //"AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "armor" "ItemQuality" "component" "ItemAliases" "wind lace" "ItemPermanent" "1" //"ItemInitialCharges" "3" //"ItemRequiresCharges" "1" "ShouldBeInitiallySuggested" "1" // Sounden //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "movement_speed" "20" } } } //================================================================================================================= // Ring of Protection //================================================================================================================= "item_ring_of_protection" { // General //------------------------------------------------------------------------------------------------------------- "ID" "12" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "175" "ItemShopTags" "armor" "ItemQuality" "component" "ItemAliases" "rop;ring of protection" "ShouldBeInitiallySuggested" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_armor" "2" } } } //================================================================================================================= // Stout Shield //================================================================================================================= "item_stout_shield" { // General //------------------------------------------------------------------------------------------------------------- "ID" "182" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/stout_shield.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "100" "ItemShopTags" "block" "ItemQuality" "component" "ItemAliases" "stout shield" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage_block_melee" "20" } "02" { "var_type" "FIELD_INTEGER" "damage_block_ranged" "8" } "03" { "var_type" "FIELD_INTEGER" "block_chance" "50" } } } //================================================================================================================= // Recipe: Moon Shard //================================================================================================================= "item_recipe_moon_shard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "246" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_moon_shard" "ItemRequirements" { "01" "item_hyperstone;item_hyperstone" } } //================================================================================================================= // Moon Shard //================================================================================================================= "item_moon_shard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "247" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CUSTOM" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4000" "ItemShopTags" "attack_speed" "ItemQuality" "consumable" "ItemAliases" "moon shard" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "140" } "02" { "var_type" "FIELD_INTEGER" "bonus_night_vision" "400" } "03" { "var_type" "FIELD_INTEGER" "consumed_bonus" "60" } "04" { "var_type" "FIELD_INTEGER" "consumed_bonus_night_vision" "200" } } } //================================================================================================================= // Gauntlets //================================================================================================================= "item_gauntlets" { // General //------------------------------------------------------------------------------------------------------------- "ID" "13" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "140" "ItemShopTags" "str" "ItemQuality" "component" "ItemAliases" "gauntlets of strength" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "3" } } } //================================================================================================================= // Slippers //================================================================================================================= "item_slippers" { // General //------------------------------------------------------------------------------------------------------------- "ID" "14" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "140" "ItemShopTags" "agi" "ItemQuality" "component" "ItemAliases" "slippers of agility" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "3" } } } //================================================================================================================= // Mantle //================================================================================================================= "item_mantle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "15" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "140" "ItemShopTags" "int" "ItemQuality" "component" "ItemAliases" "mantle of intelligence" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "3" } } } //================================================================================================================= // Branches //================================================================================================================= "item_branches" { // General //------------------------------------------------------------------------------------------------------------- "ID" "16" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "Model" "models/props_gameplay/branch.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "400" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "agi;int;str" "ItemQuality" "consumable" "ItemAliases" "gg branch;iron branch" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "1" } "02" { "var_type" "FIELD_INTEGER" "tree_duration" "20" } } } //================================================================================================================= // Belt of Strength //================================================================================================================= "item_belt_of_strength" { // General //------------------------------------------------------------------------------------------------------------- "ID" "17" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "str" "ItemQuality" "component" "ItemAliases" "belt of strength" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "6" } } } //================================================================================================================= // Boots of Elves //================================================================================================================= "item_boots_of_elves" { // General //------------------------------------------------------------------------------------------------------------- "ID" "18" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "agi" "ItemQuality" "component" "ItemAliases" "band of elvenskin" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "6" } } } //================================================================================================================= // Robe //================================================================================================================= "item_robe" { // General //------------------------------------------------------------------------------------------------------------- "ID" "19" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "int" "ItemQuality" "component" "ItemAliases" "robe of the magi" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "6" } } } //================================================================================================================= // Circlet //================================================================================================================= "item_circlet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "20" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "155" "ItemShopTags" "agi;int;str" "ItemQuality" "component" "ItemAliases" "circlet" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } } } //================================================================================================================= // Crown //================================================================================================================= "item_crown" { // General //------------------------------------------------------------------------------------------------------------- "ID" "261" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "agi;int;str" "ItemQuality" "component" "ItemAliases" "crown" "ShouldBeInitiallySuggested" "1" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "4" } } } //================================================================================================================= // Ogre Axe //================================================================================================================= "item_ogre_axe" { // General //------------------------------------------------------------------------------------------------------------- "ID" "21" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "str" "ItemQuality" "component" "ItemAliases" "ogre club" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } } } //================================================================================================================= // Blade of Alacrity //================================================================================================================= "item_blade_of_alacrity" { // General //------------------------------------------------------------------------------------------------------------- "ID" "22" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "agi" "ItemQuality" "component" "ItemAliases" "blade of alacrity" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "10" } } } //================================================================================================================= // Staff of Wizardry //================================================================================================================= "item_staff_of_wizardry" { // General //------------------------------------------------------------------------------------------------------------- "ID" "23" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "int" "ItemQuality" "component" "ItemAliases" "staff of wizardry" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } } } //================================================================================================================= // Ultimate Orb //================================================================================================================= "item_ultimate_orb" { // General //------------------------------------------------------------------------------------------------------------- "ID" "24" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2050" "ItemShopTags" "agi;int;str" "ItemQuality" "secret_shop" "ItemAliases" "ultimate orb" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "10" } } } //================================================================================================================= // Gloves //================================================================================================================= "item_gloves" { // General //------------------------------------------------------------------------------------------------------------- "ID" "25" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "attack_speed" "ItemQuality" "component" "ItemAliases" "gloves of haste" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "20" } } } //================================================================================================================= // Blitz Knuckles //================================================================================================================= "item_blitz_knuckles" { // General //------------------------------------------------------------------------------------------------------------- "ID" "485" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "attack_speed" "ItemQuality" "component" "ItemAliases" "blitz knuckles" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "35" } } } //================================================================================================================= // Lifesteal //================================================================================================================= "item_lifesteal" { // General //------------------------------------------------------------------------------------------------------------- "ID" "26" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "unique" "ItemQuality" "component" "ItemAliases" "morbid mask" //"SideShop" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "lifesteal_percent" "18" "creep_lifesteal_reduction_pct" "50" } } //================================================================================================================= // Voodoo Mask //================================================================================================================= "item_voodoo_mask" { // General //------------------------------------------------------------------------------------------------------------- "ID" "473" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "unique" "ItemQuality" "component" "ItemAliases" "voodoo mask;voom;vodo;vm" //"SideShop" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "spell_lifesteal" "10" } } } //================================================================================================================= // Ring of Regen //================================================================================================================= "item_ring_of_regen" { // General //------------------------------------------------------------------------------------------------------------- "ID" "27" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "175" "ItemShopTags" "regen_health" "ItemQuality" "component" "ItemAliases" "ror" "ShouldBeInitiallySuggested" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "1.25" } } } //================================================================================================================= // Ring of Tarrasque //================================================================================================================= "item_ring_of_tarrasque" { // General //------------------------------------------------------------------------------------------------------------- "ID" "279" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "regen_health" "ItemQuality" "component" "ItemAliases" "rot" "ShouldBeInitiallySuggested" "1" "ItemPurchasable" "0" "IsObsolete" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "150" } "02" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "4" } } } //================================================================================================================= // Sobi Mask //================================================================================================================= "item_sobi_mask" { // General //------------------------------------------------------------------------------------------------------------- "ID" "28" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "175" "ItemShopTags" "regen_mana" "ItemQuality" "component" "ItemAliases" "sage's mask" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "0.7" } } } //================================================================================================================= // Boots //================================================================================================================= "item_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "29" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/boots_of_speed.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "move_speed" "ItemQuality" "component" "ItemAliases" "boots of speed" //"SideShop" "1" "ShouldBeSuggested" "1" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "45" } } } //================================================================================================================= // Gem //================================================================================================================= "item_gem" { // General //------------------------------------------------------------------------------------------------------------- "ID" "30" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE" "AbilityCastRange" "300" "Model" "models/props_gameplay/gem01.vmdl" "Effect" "particles/generic_gameplay/dropped_gem.vpcf" "AbilityCooldown" "12" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "see_invis" "ItemQuality" "component" "ItemAliases" "gem of true sight" "ItemSellable" "0" "ItemInitiallySellable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemStockMax" "1" "ItemStockTime" "600.0" "ItemSupport" "1" "ItemKillable" "0" "ItemContributesToNetWorthWhenDropped" "0" "AllowedInBackpack" "0" "IsTempestDoubleClonable" "0" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "radius" "900" "active_radius" "300" "duration" "4" } } //================================================================================================================= // Cloak //================================================================================================================= "item_cloak" { // General //------------------------------------------------------------------------------------------------------------- "ID" "31" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "magic_resist" "ItemQuality" "component" "ItemAliases" "cloak" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "15" } "02" { "var_type" "FIELD_INTEGER" "tooltip_resist" "15" } } } //================================================================================================================= // Talisman of Evasion //================================================================================================================= "item_talisman_of_evasion" { // General //------------------------------------------------------------------------------------------------------------- "ID" "32" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1300" "ItemShopTags" "evasion" "ItemQuality" "secret_shop" "ItemAliases" "talisman of evasion" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_evasion" "15" } } } //================================================================================================================= // Cheese //================================================================================================================= "item_cheese" { // General //------------------------------------------------------------------------------------------------------------- "ID" "33" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "Model" "models/props_gameplay/cheese.vmdl" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemContributesToNetWorthWhenDropped" "0" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_restore" "2500" } "02" { "var_type" "FIELD_INTEGER" "mana_restore" "1500" } } } //================================================================================================================= // Magic Stick //================================================================================================================= "item_magic_stick" { // General //------------------------------------------------------------------------------------------------------------- "ID" "34" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "Model" "models/props_gameplay/magic_wand.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilitySharedCooldown" "magicwand" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana" "ItemQuality" "component" "ItemAliases" "magic stick" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" //"SideShop" "1" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "max_charges" "10" } "02" { "var_type" "FIELD_INTEGER" "charge_radius" "1200" } "03" { "var_type" "FIELD_INTEGER" "restore_per_charge" "15" } } } //================================================================================================================= // Recipe: Magic Wand //================================================================================================================= "item_recipe_magic_wand" { // General //------------------------------------------------------------------------------------------------------------- "ID" "35" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "150" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_magic_wand" "ItemRequirements" { "01" "item_magic_stick*;item_branches;item_branches" } } //================================================================================================================= // Magic Wand //================================================================================================================= "item_magic_wand" { // General //------------------------------------------------------------------------------------------------------------- "ID" "36" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "Model" "models/props_gameplay/magic_wand.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilitySharedCooldown" "magicwand" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana;int;agi;str" "ItemQuality" "common" "ItemAliases" "magic wand" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "max_charges" "20" } "02" { "var_type" "FIELD_INTEGER" "charge_radius" "1200" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "04" { "var_type" "FIELD_INTEGER" "restore_per_charge" "15" } } } //================================================================================================================= // Ghost //================================================================================================================= "item_ghost" { // General //------------------------------------------------------------------------------------------------------------- "ID" "37" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "22.0" "AbilitySharedCooldown" "ethereal" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "int;agi;str;hard_to_tag" "ItemQuality" "component" "ItemAliases" "ghost scepter" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "02" { "var_type" "FIELD_FLOAT" "duration" "4.0" } "03" { "var_type" "FIELD_INTEGER" "extra_spell_damage_percent" "-40" } } } //================================================================================================================= // Clarity //================================================================================================================= "item_clarity" { // General //------------------------------------------------------------------------------------------------------------- "ID" "38" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/clarity.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "clarity" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "1" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "mana_regen" "6" } "02" { "var_type" "FIELD_INTEGER" "buff_duration" "25" } } } //================================================================================================================= // Enchanted Mango //================================================================================================================= "item_enchanted_mango" { // General //------------------------------------------------------------------------------------------------------------- "ID" "216" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/mango.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "400" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "65" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "enchanted mango" "ItemStackable" "1" "ItemStackableMax" "3" "ItemInitialCharges" "1" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "hp_regen" "0.6" } "02" { "var_type" "FIELD_INTEGER" "replenish_amount" "100" } } } //================================================================================================================= // Flask //================================================================================================================= "item_flask" { // General //------------------------------------------------------------------------------------------------------------- "ID" "39" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/salve.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "100" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "healing salve" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "1" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "13" } "02" { "var_type" "FIELD_INTEGER" "health_regen" "30" } "03" { "var_type" "FIELD_INTEGER" "break_on_hero_damage" "1" } } } //================================================================================================================= // Dust //================================================================================================================= "item_dust" { // General //------------------------------------------------------------------------------------------------------------- "ID" "40" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "Model" "models/props_gameplay/dust.vmdl" "Effect" "particles/generic_gameplay/dropped_dust.vpcf" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" "AbilityCastRange" "1050" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "80" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "dust of appearance" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "12" "radius" "1050" "movespeed" "-20" "damage" "25" } } //================================================================================================================= // Bottle //================================================================================================================= "item_bottle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "41" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/bottle_blue.vmdl" "ModelAlternate" "models/props_gameplay/bottle_empty.vmdl" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.5" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "675" "ItemShopTags" "consumable" "ItemQuality" "common" "ItemAliases" "bottle" "ItemStackable" "0" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" "ItemPermanent" "1" "ItemInitialCharges" "3" "ItemDisplayCharges" "1" "IsTempestDoubleClonable" "0" "ShouldBeSuggested" "1" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_restore" "110" } "02" { "var_type" "FIELD_INTEGER" "mana_restore" "60" } "03" { "var_type" "FIELD_INTEGER" "health_restore_pct" "0" } "04" { "var_type" "FIELD_INTEGER" "mana_restore_pct" "0" } "05" { "var_type" "FIELD_FLOAT" "restore_time" "2.7" } "06" { "var_type" "FIELD_INTEGER" "max_charges" "3" } "07" { "var_type" "FIELD_INTEGER" "break_on_hero_damage" "1" } "08" { "var_type" "FIELD_FLOAT" "rune_expire_time" "90.0" } } } //================================================================================================================= // Observer Wards //================================================================================================================= "item_ward_observer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "42" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" "Model" "models/props_gameplay/observer_ward_bundle.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.0" "AbilityCooldown" "1.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "observer ward" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemStockMax" "4" "ItemStockInitial" "2" "ItemStockTime" "135.0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "lifetime" "360" "vision_range_tooltip" "1600" "health" "200" "duration_minutes_tooltip" "6" } } //================================================================================================================= // Sentry Ward //================================================================================================================= "item_ward_sentry" { // General //------------------------------------------------------------------------------------------------------------- "ID" "43" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" "Model" "models/props_gameplay/sentry_ward_bundle.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.0" "AbilityCooldown" "1.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "sentry ward" "ItemStackable" "1" "ItemPurchasable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemStockMax" "10" "ItemStockInitial" "3" "ItemStockTime" "70" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "lifetime" "420" "vision_range" "0" "true_sight_range" "900" "health" "200" "duration_minutes_tooltip" "7" } } //================================================================================================================= // Recipe: Ward Dispenser //================================================================================================================= "item_recipe_ward_dispenser" { // General //------------------------------------------------------------------------------------------------------------- "ID" "217" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemPurchasable" "0" "ItemResult" "item_ward_dispenser" "ItemRequirements" { "01" "item_ward_sentry;item_ward_observer" "02" "item_ward_sentry;item_ward_dispenser" "03" "item_ward_dispenser*;item_ward_observer" "04" "item_ward_dispenser*;item_ward_dispenser" } } //================================================================================================================= // Ward Dispenser //================================================================================================================= "item_ward_dispenser" { // General //------------------------------------------------------------------------------------------------------------- "ID" "218" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemQuality" "common" "ItemAliases" "ward" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPurchasable" "0" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" "IsTempestDoubleClonable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCooldown" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "75" "observer_cost" "75" "sentry_cost" "100" "lifetime_observer" "360" "lifetime_sentry" "420" "creation_delay" "0" "observer_vision_range_tooltip" "1600" "observer_duration_minutes_tooltip" "6" "true_sight_range" "900" "sentry_duration_minutes_tooltip" "8" } } //================================================================================================================= // Tango //================================================================================================================= "item_tango" { // General //------------------------------------------------------------------------------------------------------------- "ID" "44" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "Model" "models/props_gameplay/tango.vmdl" "Effect" "particles/generic_gameplay/dropped_tango.vpcf" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "165" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "90" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "tango" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "3" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "health_regen" "7.0" } "02" { "var_type" "FIELD_FLOAT" "buff_duration" "16.0" } "03" { "var_type" "FIELD_INTEGER" "tooltip_charges" "3" } } } //================================================================================================================= // Tango Single Instance //================================================================================================================= "item_tango_single" { // General //------------------------------------------------------------------------------------------------------------- "ID" "241" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "Model" "models/props_gameplay/tango.vmdl" "Effect" "particles/generic_gameplay/dropped_tango.vpcf" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "165" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "30" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "0" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemSellable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "health_regen" "7.0" } "02" { "var_type" "FIELD_FLOAT" "buff_duration" "16.0" } "03" { "var_type" "FIELD_INTEGER" "duration_to_use" "40" } } } //================================================================================================================= // Courier //================================================================================================================= "item_courier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "45" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "donkey;chicken;animal courier" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemStockMax" "1" "ItemStockTime" "36000.0" "ItemSupport" "1" "ItemKillable" "0" "ItemSellable" "0" "IsTempestDoubleClonable" "0" "ShouldBeInitiallySuggested" "0" "ItemPurchasable" "0" // Not sellable, but handled in code. } //================================================================================================================= // Flying Courier //================================================================================================================= "item_flying_courier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "286" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "100" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "crow;flying courier" "ItemStockMax" "1" "ItemStockInitial" "0" "ItemInitialStockTime" "270.0" "ItemStockTime" "1" "ItemSupport" "1" "IsTempestDoubleClonable" "0" "ItemPurchasable" "0" } //================================================================================================================= // Teleport Scroll //================================================================================================================= "item_tpscroll" { // General //------------------------------------------------------------------------------------------------------------- "ID" "46" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_NOASSIST | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_DONT_CANCEL_CHANNEL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_BUILDING" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" "Model" "models/props_gameplay/tpscroll01.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCooldown" "80.0" "AbilitySharedCooldown" "teleport" "AbilityChannelTime" "3.0" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "100" "ItemShopTags" "consumable;tutorial" "ItemQuality" "consumable" "ItemAliases" "tp;town portal scroll;teleport" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" //"SideShop" "1" "ItemPurchasable" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "minimun_distance" "70" } "02" { "var_type" "FIELD_INTEGER" "maximum_distance" "800" } "03" { "var_type" "FIELD_INTEGER" "vision_radius" "200" } "04" { "var_type" "FIELD_FLOAT" "tooltip_channel_time" "3.0" } } } //================================================================================================================= // Recipe: Travel Boots //================================================================================================================= "item_recipe_travel_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "47" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2000" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_travel_boots" "ItemRequirements" { "01" "item_boots*" } } //================================================================================================================= // Recipe: Travel Boots //================================================================================================================= "item_recipe_travel_boots_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "219" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_travel_boots_2" "ItemRequirements" { "01" "item_travel_boots*;item_recipe_travel_boots" } } //================================================================================================================= // Travel Boots //================================================================================================================= "item_travel_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "48" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2500" "ItemShopTags" "teleport;move_speed" "ItemQuality" "common" "ItemAliases" "bot;boots of travel;tp" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "ShouldBeSuggested" "1" "UpgradesItems" "item_travel_boots" "UpgradeRecipe" "item_recipe_travel_boots" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "90" } "02" { "var_type" "FIELD_INTEGER" "maximum_distance" "800" } "03" { "var_type" "FIELD_INTEGER" "vision_radius" "200" } "04" { "var_type" "FIELD_INTEGER" "tp_cooldown" "40" } } } //================================================================================================================= // Travel Boots 2 //================================================================================================================= "item_travel_boots_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "220" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4500" "ItemShopTags" "teleport;move_speed" "ItemQuality" "common" "ItemAliases" "bot;boots of travel;tp" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "2" "ItemBaseLevel" "2" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_movement_speed" "110" "maximum_distance" "800" "vision_radius" "200" "tp_cooldown" "30" "tp_channel_time" "2" } } //================================================================================================================= // Recipe: Phase Boots //================================================================================================================= "item_recipe_phase_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "49" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_phase_boots" "ItemRequirements" { "01" "item_boots*;item_chainmail;item_blades_of_attack" } } //================================================================================================================= // Phase Boots //================================================================================================================= "item_phase_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "50" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "8.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "damage;move_speed;hard_to_tag" "ItemQuality" "common" "ItemAliases" "phase boots" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "45" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage_melee" "18" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage_range" "12" } "04" { "var_type" "FIELD_INTEGER" "damage_block_melee" "0" } "05" { "var_type" "FIELD_INTEGER" "damage_block_ranged" "0" } "06" { "var_type" "FIELD_INTEGER" "block_chance" "0" } "07" { "var_type" "FIELD_INTEGER" "phase_movement_speed" "20" } "08" { "var_type" "FIELD_INTEGER" "phase_movement_speed_range" "10" } "09" { "var_type" "FIELD_FLOAT" "phase_duration" "3.0" } "10" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "0" } "11" { "var_type" "FIELD_INTEGER" "bonus_armor" "4" } } } //================================================================================================================= // Demon Edge //================================================================================================================= "item_demon_edge" { // General //------------------------------------------------------------------------------------------------------------- "ID" "51" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2200" "ItemShopTags" "damage" "ItemQuality" "secret_shop" "ItemAliases" "demon edge" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "40" } } } //================================================================================================================= // Eagle Horn //================================================================================================================= "item_eagle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "52" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2800" "ItemShopTags" "agi" "ItemQuality" "secret_shop" "ItemAliases" "eaglesong" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "25" } } } //================================================================================================================= // Reaver //================================================================================================================= "item_reaver" { // General //------------------------------------------------------------------------------------------------------------- "ID" "53" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2800" "ItemShopTags" "str" "ItemQuality" "secret_shop" "ItemAliases" "reaver" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "25" } } } //================================================================================================================= // Sacred Relic //================================================================================================================= "item_relic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "54" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3750" "ItemShopTags" "damage" "ItemQuality" "secret_shop" "ItemAliases" "sacred relic" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "60" } } } //================================================================================================================= // Hyperstone //================================================================================================================= "item_hyperstone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "55" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2000" "ItemShopTags" "attack_speed" "ItemQuality" "secret_shop" "ItemAliases" "hyperstone" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "60" } } } //================================================================================================================= // Ring of Health //================================================================================================================= "item_ring_of_health" { // General //------------------------------------------------------------------------------------------------------------- "ID" "56" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "825" "ItemShopTags" "regen_health" "ItemQuality" "component" "ItemAliases" "roh;ring of health" "SecretShop" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "6.5" } } } //================================================================================================================= // Void Stone //================================================================================================================= "item_void_stone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "57" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "825" "ItemShopTags" "regen_mana" "ItemQuality" "component" "ItemAliases" "void stone" "SecretShop" "1" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.25" } } } //================================================================================================================= // Mystic Staff //================================================================================================================= "item_mystic_staff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "58" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2800" "ItemShopTags" "int" "ItemQuality" "secret_shop" "ItemAliases" "mystic staff" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "25" } } } //================================================================================================================= // Energy Booster //================================================================================================================= "item_energy_booster" { // General //------------------------------------------------------------------------------------------------------------- "ID" "59" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "ItemShopTags" "mana_pool" "ItemQuality" "secret_shop" "ItemAliases" "energy booster" "SecretShop" "1" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } } } //================================================================================================================= // Point Booster //================================================================================================================= "item_point_booster" { // General //------------------------------------------------------------------------------------------------------------- "ID" "60" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1200" "ItemShopTags" "mana_pool;health_pool" "ItemQuality" "secret_shop" "ItemAliases" "point booster" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana" "175" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "175" } } } //================================================================================================================= // Vitality Booster //================================================================================================================= "item_vitality_booster" { // General //------------------------------------------------------------------------------------------------------------- "ID" "61" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "health_pool" "ItemQuality" "secret_shop" "ItemAliases" "vitality booster" "SecretShop" "1" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } } } //================================================================================================================= // Fluffy Hat //================================================================================================================= "item_fluffy_hat" { // General //------------------------------------------------------------------------------------------------------------- "ID" "593" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "health_pool" "ItemQuality" "secret_shop" "ItemAliases" "flf;fluffy hat;hat;fh" //"SecretShop" "1" //"SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "125" } } } //================================================================================================================= // Recipe: Power Treads //================================================================================================================= "item_recipe_power_treads" { // General //------------------------------------------------------------------------------------------------------------- "ID" "62" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_power_treads" "ItemRequirements" { "01" "item_boots*;item_gloves;item_belt_of_strength" "04" "item_boots*;item_gloves;item_robe" "06" "item_boots*;item_gloves;item_boots_of_elves" } } //================================================================================================================= // Power Treads //================================================================================================================= "item_power_treads" { // General //------------------------------------------------------------------------------------------------------------- "ID" "63" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "attack_speed;move_speed;int;agi;str" "ItemQuality" "common" "ItemAliases" "power treads" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "45" } "02" { "var_type" "FIELD_INTEGER" "bonus_stat" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "25" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "0" } } } //================================================================================================================= // Recipe: Grandmaster's Glaive //================================================================================================================= "item_recipe_grandmasters_glaive" { // General //------------------------------------------------------------------------------------------------------------- "ID" "653" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_grandmasters_glaive" "ItemRequirements" { //"01" "item_basher;item_kaya" //"04" "item_basher;item_sange" //"06" "item_basher;item_yasha" } } //================================================================================================================= // Grandmaster's Glaive //================================================================================================================= "item_grandmasters_glaive" { // General //------------------------------------------------------------------------------------------------------------- "ID" "655" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5000" "ItemShopTags" "attack_speed;move_speed;int;agi;str" "ItemQuality" "common" "ItemAliases" "power treads" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemPurchasable" "0" "IsObsolete" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "sange_bonus_strength" "16" } "02" { "var_type" "FIELD_INTEGER" "sange_status_resistance" "16" } "03" { "var_type" "FIELD_INTEGER" "sange_hp_regen_amp" "24" } "04" { "var_type" "FIELD_INTEGER" "kaya_bonus_intellect" "16" } "05" { "var_type" "FIELD_INTEGER" "kaya_spell_amp" "8" } "06" { "var_type" "FIELD_INTEGER" "kaya_mana_regen_multiplier" "24" } "07" { "var_type" "FIELD_INTEGER" "kaya_magic_damage_attack" "14" } "08" { "var_type" "FIELD_INTEGER" "yasha_bonus_agility" "16" } "09" { "var_type" "FIELD_INTEGER" "yasha_bonus_attack_speed" "12" } "10" { "var_type" "FIELD_INTEGER" "yasha_movement_speed_percent_bonus" "8" } "11" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } "12" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "13" { "var_type" "FIELD_INTEGER" "bash_chance_melee" "25" } "14" { "var_type" "FIELD_INTEGER" "bash_chance_ranged" "10" } "15" { "var_type" "FIELD_FLOAT" "bash_duration" "1.5" } "16" { "var_type" "FIELD_FLOAT" "bash_cooldown" "2.3" } "17" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "100" } "18" { "var_type" "FIELD_INTEGER" "str_stance" "10" } "19" { "var_type" "FIELD_INTEGER" "agi_stance" "25" } "20" { "var_type" "FIELD_INTEGER" "int_stance" "25" } "21" { "var_type" "FIELD_FLOAT" "stance_bonus_duration" "6" } } } //================================================================================================================= // Recipe: Hand of Midas //================================================================================================================= "item_recipe_hand_of_midas" { // General //------------------------------------------------------------------------------------------------------------- "ID" "64" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1750" "ItemShopTags" "" "ItemAliases" "hom" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_hand_of_midas" "ItemRequirements" { "01" "item_gloves*" } } //================================================================================================================= // Hand of Midas //================================================================================================================= "item_hand_of_midas" { // General //------------------------------------------------------------------------------------------------------------- "ID" "65" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS | DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCastPoint" "0.0" "AbilityCooldown" "90.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "2200" "ItemShopTags" "attack_speed;hard_to_tag" "ItemQuality" "common" "ItemAliases" "hand of midas" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "40" } "02" { "var_type" "FIELD_FLOAT" "xp_multiplier" "2.1" } "03" { "var_type" "FIELD_INTEGER" "bonus_gold" "160" } } } //================================================================================================================= // Recipe: Oblivion Staff //================================================================================================================= "item_recipe_oblivion_staff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "66" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_oblivion_staff" "ItemRequirements" { "01" "item_quarterstaff;item_sobi_mask;item_robe" } } //================================================================================================================= // Oblivion Staff //================================================================================================================= "item_oblivion_staff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "67" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "damage;int;attack_speed;regen_mana" "ItemQuality" "common" "ItemAliases" "oblivion staff" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "15" } "02" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "10" } "04" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "1.25" } } } //================================================================================================================= // Recipe: Witch Blade //================================================================================================================= "item_recipe_witch_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "533" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_witch_blade" "ItemRequirements" { "01" "item_blitz_knuckles;item_robe;item_chainmail" } } //================================================================================================================= // Witch Blade //================================================================================================================= "item_witch_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "534" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "9.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2600" "ItemShopTags" "damage;int;attack_speed;regen_mana" "ItemQuality" "common" "ItemAliases" "witch blade;wb" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "35" } "02" { "var_type" "FIELD_INTEGER" "bonus_intellect" "12" } "03" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "04" { "var_type" "FIELD_FLOAT" "int_damage_multiplier" "0.75" } "05" { "var_type" "FIELD_INTEGER" "slow" "25" } "06" { "var_type" "FIELD_FLOAT" "slow_duration" "4" } "07" { "var_type" "FIELD_INTEGER" "projectile_speed" "300" } } } //================================================================================================================= // Recipe: Perseverence //================================================================================================================= "item_recipe_pers" { // General //------------------------------------------------------------------------------------------------------------- "ID" "68" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_pers" "ItemRequirements" { "01" "item_ring_of_health;item_void_stone" } } //================================================================================================================= // Perseverence //================================================================================================================= "item_pers" { // General //------------------------------------------------------------------------------------------------------------- "ID" "69" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1650" "ItemShopTags" "regen_health;regen_mana" "ItemQuality" "common" "ItemAliases" "perseverance" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "6.5" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.25" } } } //================================================================================================================= // Recipe: Poor Man's Shield //================================================================================================================= "item_recipe_poor_mans_shield" { // General //------------------------------------------------------------------------------------------------------------- "ID" "70" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_poor_mans_shield" "ItemPurchasable" "0" "ItemRequirements" { //"01" "item_slippers;item_slippers;item_stout_shield*" } } //================================================================================================================= // Poor Man's Shield //================================================================================================================= "item_poor_mans_shield" { // General //------------------------------------------------------------------------------------------------------------- "ID" "71" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "agi;block" "ItemQuality" "common" "ItemAliases" "pms;poor man's shield" "ItemPurchasable" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "8" } "02" { "var_type" "FIELD_INTEGER" "damage_block_melee" "30" } "03" { "var_type" "FIELD_INTEGER" "damage_block_ranged" "20" } "04" { "var_type" "FIELD_INTEGER" "block_chance" "50" } "05" { "var_type" "FIELD_INTEGER" "block_chance_hero" "100" } } } //================================================================================================================= // Satchel //================================================================================================================= "item_satchel" { // General //------------------------------------------------------------------------------------------------------------- "ID" "731" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "agi;block" "ItemQuality" "common" "ItemPurchasable" "0" "ItemIsNeutralDrop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "02" { "var_type" "FIELD_INTEGER" "xp_gain" "15" } } } //================================================================================================================= // Recipe: Bracer //================================================================================================================= "item_recipe_bracer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "72" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "210" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_bracer" "ItemRequirements" { "01" "item_circlet;item_gauntlets" } } //================================================================================================================= // Bracer //================================================================================================================= "item_bracer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "73" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "ItemLevelByGameTime" "25" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "505" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "bracer" "ShouldBeInitiallySuggested" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "5 10" "bonus_agility" "2 4" "bonus_intellect" "2 4" "bonus_damage" "2 4" "bonus_health_regen" "0.75 1.5" "clock_time" "25" } } //================================================================================================================= // Recipe: Wraith Band //================================================================================================================= "item_recipe_wraith_band" { // General //------------------------------------------------------------------------------------------------------------- "ID" "74" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "210" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_wraith_band" "ItemRequirements" { "01" "item_circlet;item_slippers" } } //================================================================================================================= // Wraith Band //================================================================================================================= "item_wraith_band" { // General //------------------------------------------------------------------------------------------------------------- "ID" "75" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "ItemLevelByGameTime" "25" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "505" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "wraith band" "ShouldBeInitiallySuggested" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_agility" "5 10" "bonus_strength" "2 4" "bonus_intellect" "2 4" "bonus_attack_speed" "6 12" "bonus_armor" "2 4" "clock_time" "25" } } //================================================================================================================= // Recipe: Null Talisman //================================================================================================================= "item_recipe_null_talisman" { // General //------------------------------------------------------------------------------------------------------------- "ID" "76" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "210" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_null_talisman" "ItemRequirements" { "01" "item_circlet;item_mantle" } } //================================================================================================================= // Null Talisman //================================================================================================================= "item_null_talisman" { // General //------------------------------------------------------------------------------------------------------------- "ID" "77" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "ItemLevelByGameTime" "25" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "505" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "null talisman" "ShouldBeInitiallySuggested" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "5 10" "bonus_strength" "2 4" "bonus_agility" "2 4" "bonus_max_mana_percentage" "3 6" "bonus_mana_regen" "0.75 1.5" "clock_time" "25" } } //================================================================================================================= // Recipe: Mekasmm //================================================================================================================= "item_recipe_mekansm" { // General //------------------------------------------------------------------------------------------------------------- "ID" "78" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mekansm" "ItemRequirements" { "01" "item_headdress;item_chainmail" } } //================================================================================================================= // Mekansm //================================================================================================================= "item_mekansm" { // General //------------------------------------------------------------------------------------------------------------- "ID" "79" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "50.0" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "1775" "ItemShopTags" "agi;int;str;armor;boost_health" "ItemQuality" "rare" "ItemAliases" "mechanism;mekansm" "ItemAlertable" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_armor" "4" "aura_radius" "1200" "aura_health_regen" "2.5" "heal_amount" "275" "heal_radius" "1200" } } //================================================================================================================= // Recipe: Vladimir //================================================================================================================= "item_recipe_vladmir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "80" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_vladmir" "ItemRequirements" { "01" "item_buckler;item_ring_of_basilius;item_lifesteal;item_blades_of_attack" } } //================================================================================================================= // Vladimir //================================================================================================================= "item_vladmir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "81" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2450" "ItemShopTags" "damage;armor;regen_mana" "ItemQuality" "rare" "ItemAliases" "vladmir's offering;vlads" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "armor_aura" "3.0" "mana_regen_aura" "1.75" "lifesteal_aura" "20" "creep_lifesteal_reduction_pct" "50" "damage_aura" "18" "aura_radius" "1200" } } //================================================================================================================= // Recipe: Vladimir //================================================================================================================= "item_recipe_wraith_pact" { // General //------------------------------------------------------------------------------------------------------------- "ID" "907" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "400" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_wraith_pact" "ItemRequirements" { "01" "item_vladmir;item_point_booster" } } //================================================================================================================= // Vladimir //================================================================================================================= "item_wraith_pact" { // General //------------------------------------------------------------------------------------------------------------- "ID" "908" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" "FightRecapLevel" "1" "AbilitySound" "Hero_Pugna.NetherWard" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.2 0.2 0.2 0.2" "AbilityCastRange" "350" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60" "AbilityDuration" "25" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4050" "ItemShopTags" "damage;armor;regen_mana" "ItemQuality" "rare" "ItemAliases" "pact;wp" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "250" "bonus_mana" "250" "armor_aura" "3.0" "mana_regen_aura" "2.0" "lifesteal_aura" "24" "creep_lifesteal_reduction_pct" "50" "damage_aura" "18" "aura_radius" "1200" "pact_aura_radius" "900" "damage_penalty_aura" "30" "aura_dps" "30" } } //================================================================================================================= // Recipe: Buckler //================================================================================================================= "item_recipe_buckler" { // General //------------------------------------------------------------------------------------------------------------- "ID" "85" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_buckler" "ItemRequirements" { "01" "item_ring_of_protection" } } //================================================================================================================= // Buckler //================================================================================================================= "item_buckler" { // General //------------------------------------------------------------------------------------------------------------- "ID" "86" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "425" "ItemShopTags" "armor;boost_armor" "ItemQuality" "rare" "ItemAliases" "buckler" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "armor" "1" } "02" { "var_type" "FIELD_FLOAT" "bonus_aoe_armor" "2" } "03" { "var_type" "FIELD_INTEGER" "bonus_aoe_radius" "1200" } } } //================================================================================================================= // Recipe: Ring of Basilius //================================================================================================================= "item_recipe_ring_of_basilius" { // General //------------------------------------------------------------------------------------------------------------- "ID" "87" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ring_of_basilius" "ItemRequirements" { "01" "item_sobi_mask" } } //================================================================================================================= // Ring of Basilius //================================================================================================================= "item_ring_of_basilius" { // General //------------------------------------------------------------------------------------------------------------- "ID" "88" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "425" "ItemShopTags" "regen_mana" "ItemQuality" "rare" "ItemAliases" "rob;ring of basilius" "ShouldBeInitiallySuggested" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "mana_regen" "0.5" } "02" { "var_type" "FIELD_FLOAT" "aura_mana_regen" "1.0" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "1200" } } } //================================================================================================================= // Recipe: Holy Locket //================================================================================================================= "item_recipe_holy_locket" { // General //------------------------------------------------------------------------------------------------------------- "ID" "268" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "475" "ItemShopTags" "" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_holy_locket" "ItemRequirements" { "01" "item_headdress;item_fluffy_hat;item_energy_booster;item_magic_wand" } } //================================================================================================================= // Holy Locket //================================================================================================================= "item_holy_locket" { // General //------------------------------------------------------------------------------------------------------------- "ID" "269" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2400" "ItemQuality" "rare" "ItemAliases" "hl;holy locket" "ShouldBeInitiallySuggested" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilitySharedCooldown" "magicwand" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "250" "bonus_mana" "300" "aura_health_regen" "3" "aura_radius" "1200" "heal_increase" "30" "max_charges" "20" "charge_radius" "1200" "bonus_all_stats" "3" "restore_per_charge" "15" "charge_gain_timer" "10" } } //================================================================================================================= // Recipe: Pipe //================================================================================================================= "item_recipe_pipe" { // General //------------------------------------------------------------------------------------------------------------- "ID" "89" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1550" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_pipe" "ItemRequirements" { "01" "item_hood_of_defiance*;item_headdress" } } //================================================================================================================= // Pipe //================================================================================================================= "item_pipe" { // General //------------------------------------------------------------------------------------------------------------- "ID" "90" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60.0" "AbilityManaCost" "100" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3475" "ItemShopTags" "regen_health;boost_magic_resist" "ItemQuality" "rare" "ItemAliases" "pipe of insight" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemAlertable" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "health_regen" "8.5" "magic_resistance" "30" "barrier_debuff_duration" "50.0" "tooltip_resist" "30" "aura_health_regen" "2.5" "magic_resistance_aura" "15" "aura_radius" "1200" "barrier_block" "450" "barrier_duration" "12.0" "barrier_radius" "1200" "bonus_all_stats" "0" "barrier_block_creep" "450" } } //================================================================================================================= // Recipe: Urn of Shadows //================================================================================================================= "item_recipe_urn_of_shadows" { // General //------------------------------------------------------------------------------------------------------------- "ID" "91" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "375" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_urn_of_shadows" "ItemRequirements" { "01" "item_sobi_mask;item_ring_of_protection;item_circlet" } } //================================================================================================================= // Urn of Shadows //================================================================================================================= "item_urn_of_shadows" { // General //------------------------------------------------------------------------------------------------------------- "ID" "92" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "750" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" "AbilitySharedCooldown" "urn" // Items //------------------------------------------------------------------------------------------------------------- "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "ItemStackable" "0" "ItemPermanent" "1" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "880" "ItemShopTags" "regen_mana;str;boost_health" "ItemQuality" "rare" "ItemAliases" "urn of shadows" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "mana_regen" "1.4" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "03" { "var_type" "FIELD_FLOAT" "bonus_armor" "2" } "04" { "var_type" "FIELD_INTEGER" "soul_radius" "1400" } "05" { "var_type" "FIELD_INTEGER" "soul_initial_charge" "2" } "06" { "var_type" "FIELD_INTEGER" "soul_additional_charges" "1" } "07" { "var_type" "FIELD_INTEGER" "soul_heal_amount" "30" } "08" { "var_type" "FIELD_INTEGER" "soul_damage_amount" "25" } "10" { "var_type" "FIELD_FLOAT" "duration" "8.0" } } } //================================================================================================================= // Recipe: Headdress //================================================================================================================= "item_recipe_headdress" { // General //------------------------------------------------------------------------------------------------------------- "ID" "93" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_headdress" "ItemRequirements" { "01" "item_ring_of_regen" } } //================================================================================================================= // Headdress //================================================================================================================= "item_headdress" { // General //------------------------------------------------------------------------------------------------------------- "ID" "94" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "425" "ItemShopTags" "str;int;agi;regen_health" "ItemQuality" "rare" "ItemAliases" "headdress" "AbilityCastRange" "1200" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "health_regen" "0.5" } "02" { "var_type" "FIELD_FLOAT" "aura_health_regen" "2.0" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "1200" } } } //================================================================================================================= // Recipe: Sheepstick //================================================================================================================= "item_recipe_sheepstick" { // General //------------------------------------------------------------------------------------------------------------- "ID" "95" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_sheepstick" "ItemRequirements" { "01" "item_mystic_staff;item_ultimate_orb;item_void_stone" } } //================================================================================================================= // Sheepstick //================================================================================================================= "item_sheepstick" { // General //------------------------------------------------------------------------------------------------------------- "ID" "96" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "2" "SpellDispellableType" "SPELL_DISPELLABLE_YES_STRONG" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "20.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "250" "ItemCost" "5675" "ItemShopTags" "int;regen_mana;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "hex;sheepstick;scythe of vyse" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "35" } "04" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "9.0" } "05" { "var_type" "FIELD_FLOAT" "sheep_duration" "3.5" } "06" { "var_type" "FIELD_FLOAT" "sheep_movement_speed" "140" } "07" { "var_type" "FIELD_FLOAT" "upgrade_radius" "200" } } } //================================================================================================================= // Recipe: Orchid //================================================================================================================= "item_recipe_orchid" { // General //------------------------------------------------------------------------------------------------------------- "ID" "97" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_orchid" "ItemRequirements" { "01" "item_blitz_knuckles;item_claymore;item_void_stone" } } //================================================================================================================= // Orchid //================================================================================================================= "item_orchid" { // General //------------------------------------------------------------------------------------------------------------- "ID" "98" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "900" "AbilityCastPoint" "0.0" "AbilityCooldown" "18.0" "AbilitySharedCooldown" "orchid" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "3475" "ItemShopTags" "attack_speed;damage;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "orchid malevolence;silence" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_attack_speed" "40" "bonus_damage" "30" "bonus_mana_regen" "3" "silence_damage_percent" "30" "silence_duration" "5" } } //================================================================================================================= // Recipe: Bloodthorn //================================================================================================================= "item_recipe_bloodthorn" { // General //------------------------------------------------------------------------------------------------------------- "ID" "245" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "925" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_bloodthorn" "ItemRequirements" { "01" "item_orchid*;item_mage_slayer" } } //================================================================================================================= // Bloodthorn //================================================================================================================= "item_bloodthorn" { // General //------------------------------------------------------------------------------------------------------------- "ID" "250" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "900" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilitySharedCooldown" "orchid" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "6800" "ItemShopTags" "int;attack_speed;damage;regen_mana;damage;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "orchid malevolence" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "20" "bonus_attack_speed" "60" "bonus_damage" "50" "bonus_mana_regen" "5" "bonus_magic_resist" "25" "silence_duration" "5" "silence_damage_percent" "30" "target_crit_multiplier" "130" "tooltip_crit_chance" "100" "duration" "6" "spell_amp_debuff" "35" } } //================================================================================================================= // Recipe: Echo Sabre //================================================================================================================= "item_recipe_echo_sabre" { // General //------------------------------------------------------------------------------------------------------------- "ID" "251" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_echo_sabre" "ItemRequirements" { "01" "item_ogre_axe;item_oblivion_staff" } } //================================================================================================================= // Echo Sabre //================================================================================================================= "item_echo_sabre" { // General //------------------------------------------------------------------------------------------------------------- "ID" "252" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "6.0" "AbilitySharedCooldown" "echo_sabre" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "2500" "ItemShopTags" "int;attack_speed;damage;regen_mana;damage;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "echo sabre" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "15" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "13" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "04" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "10" } "05" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "1.75" } "06" { "var_type" "FIELD_INTEGER" "movement_slow" "100" } "07" { "var_type" "FIELD_INTEGER" "attack_speed_slow" "0" } "08" { "var_type" "FIELD_FLOAT" "slow_duration" "0.8" } } } //================================================================================================================= // Recipe: Cyclone //================================================================================================================= "item_recipe_cyclone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "99" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_cyclone" "ItemRequirements" { "01" "item_staff_of_wizardry;item_void_stone;item_wind_lace" } } //================================================================================================================= // Cyclone //================================================================================================================= "item_cyclone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "100" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "550" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "23.0" "AbilitySharedCooldown" "cyclone" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "175" "ItemCost" "2725" "ItemShopTags" "int;regen_mana;move_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "cyclone euls;eul's scepter of divinity" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.5" } "03" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "20" } "04" { "var_type" "FIELD_FLOAT" "cyclone_duration" "2.5" } "05" { "var_type" "FIELD_INTEGER" "tooltip_drop_damage" "50" } } } //================================================================================================================= // Recipe: Wind Waker //================================================================================================================= "item_recipe_wind_waker" { // General //------------------------------------------------------------------------------------------------------------- "ID" "612" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_wind_waker" "ItemRequirements" { "01" "item_cyclone*;item_mystic_staff" } } //================================================================================================================= // Wind Waker //================================================================================================================= "item_wind_waker" { // General //------------------------------------------------------------------------------------------------------------- "ID" "610" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "550" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "18.0" "AbilitySharedCooldown" "cyclone" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "175" "ItemCost" "6825" "ItemShopTags" "int;regen_mana;move_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "cyclone;wind waker;ww" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "50" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "6.0" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "35" } "04" { "var_type" "FIELD_FLOAT" "cyclone_duration" "2.5" } "05" { "var_type" "FIELD_INTEGER" "tooltip_drop_damage" "50" } "06" { "var_type" "FIELD_INTEGER" "tornado_speed" "360" } } } //================================================================================================================= // Recipe: Aether Lens //================================================================================================================= "item_recipe_aether_lens" { // General //------------------------------------------------------------------------------------------------------------- "ID" "233" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_aether_lens" "ItemRequirements" { "01" "item_energy_booster;item_void_stone" } } //================================================================================================================= // Aether Lens //================================================================================================================= "item_aether_lens" { // General //------------------------------------------------------------------------------------------------------------- "ID" "232" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2275" "ItemShopTags" "int;regen_mana;move_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "aether lens" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana" "300" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.5" } "03" { "var_type" "FIELD_INTEGER" "cast_range_bonus" "225" } } } //================================================================================================================= // Recipe: Force Staff //================================================================================================================= "item_recipe_force_staff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "101" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "950" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_force_staff" "ItemRequirements" { "01" "item_staff_of_wizardry;item_fluffy_hat" } } //================================================================================================================= // Force Staff //================================================================================================================= "item_force_staff" { // General //------------------------------------------------------------------------------------------------------------- "ID" "102" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH | DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "550" "AbilityCastPoint" "0.0" "AbilityCooldown" "19.0" "AbilitySharedCooldown" "force" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "2200" "ItemShopTags" "int;damage;attack_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "fs;force staff" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "10" "bonus_health" "175" "push_length" "600" "enemy_cast_range" "850" } } //================================================================================================================= // Recipe: Hurricane Pike //================================================================================================================= "item_recipe_hurricane_pike" { // General //------------------------------------------------------------------------------------------------------------- "ID" "262" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "350" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_hurricane_pike" "ItemRequirements" { "01" "item_force_staff*;item_dragon_lance" } } //================================================================================================================= // Hurricane Pike //================================================================================================================= "item_hurricane_pike" { // General //------------------------------------------------------------------------------------------------------------- "ID" "263" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH | DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "650" "AbilityCastPoint" "0.0" "AbilityCooldown" "19.0" "AbilitySharedCooldown" "force" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "4450" "ItemShopTags" "int;damage;attack_speed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "fs;force staff" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "15" "bonus_health" "200" "bonus_agility" "20" "bonus_strength" "15" "base_attack_range" "150" "push_length" "600" "enemy_length" "450" "range_duration" "6" "cast_range_enemy" "450" "max_attacks" "5" "bonus_attack_speed" "100" } } //================================================================================================================= // Recipe: Dagon //================================================================================================================= "item_recipe_dagon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "103" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon" "ItemRequirements" { "01" "item_staff_of_wizardry;item_crown" } } "item_recipe_dagon_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "197" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon_2" "ItemRequirements" { "02" "item_dagon*;item_recipe_dagon" } } "item_recipe_dagon_3" { // General //------------------------------------------------------------------------------------------------------------- "ID" "198" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon_3" "ItemRequirements" { "02" "item_dagon_2*;item_recipe_dagon" } } "item_recipe_dagon_4" { // General //------------------------------------------------------------------------------------------------------------- "ID" "199" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon_4" "ItemRequirements" { "02" "item_dagon_3*;item_recipe_dagon" } } "item_recipe_dagon_5" { // General //------------------------------------------------------------------------------------------------------------- "ID" "200" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon_5" "ItemRequirements" { "02" "item_dagon_4*;item_recipe_dagon" } } //================================================================================================================= // Dagon //================================================================================================================= "item_dagon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "104" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700 750 800 850 900" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0" "AbilitySharedCooldown" "dagon" "MaxUpgradeLevel" "5" "ItemBaseLevel" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "120 140 160 180 200" "ItemCost" "2700" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 1" "UpgradesItems" "item_dagon;item_dagon_2;item_dagon_3;item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_int" "14 16 18 20 22" } "02" { "var_type" "FIELD_INTEGER" "bonus_str" "6 8 10 12 14" } "03" { "var_type" "FIELD_INTEGER" "bonus_agi" "6 8 10 12 14" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_FLOAT" "damage_delay" "0" } "06" { "var_type" "FIELD_FLOAT" "mana_cost_tooltip" "120 140 160 180 200" } "07" { "var_type" "FIELD_FLOAT" "int_damage" "0" } } } "item_dagon_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "201" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700 750 800 850 900" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0" "AbilitySharedCooldown" "dagon" "MaxUpgradeLevel" "5" "ItemBaseLevel" "2" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "120 140 160 180 200" "ItemCost" "3950" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 2" "UpgradesItems" "item_dagon_2;item_dagon_3;item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_int" "14 16 18 20 22" } "02" { "var_type" "FIELD_INTEGER" "bonus_str" "6 8 10 12 14" } "03" { "var_type" "FIELD_INTEGER" "bonus_agi" "6 8 10 12 14" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_FLOAT" "damage_delay" "0" } "06" { "var_type" "FIELD_FLOAT" "mana_cost_tooltip" "120 140 160 180 200" } "07" { "var_type" "FIELD_FLOAT" "int_damage" "0" } } } "item_dagon_3" { // General //------------------------------------------------------------------------------------------------------------- "ID" "202" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700 750 800 850 900" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0" "AbilitySharedCooldown" "dagon" "MaxUpgradeLevel" "5" "ItemBaseLevel" "3" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "120 140 160 180 200" "ItemCost" "5200" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 3" "UpgradesItems" "item_dagon_3;item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_int" "14 16 18 20 22" } "02" { "var_type" "FIELD_INTEGER" "bonus_str" "6 8 10 12 14" } "03" { "var_type" "FIELD_INTEGER" "bonus_agi" "6 8 10 12 14" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_FLOAT" "damage_delay" "0" } "06" { "var_type" "FIELD_FLOAT" "mana_cost_tooltip" "120 140 160 180 200" } "07" { "var_type" "FIELD_FLOAT" "int_damage" "0" } } } "item_dagon_4" { // General //------------------------------------------------------------------------------------------------------------- "ID" "203" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700 750 800 850 900" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0" "AbilitySharedCooldown" "dagon" "MaxUpgradeLevel" "5" "ItemBaseLevel" "4" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "120 140 160 180 200" "ItemCost" "6450" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 4" "UpgradesItems" "item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_int" "14 16 18 20 22" } "02" { "var_type" "FIELD_INTEGER" "bonus_str" "6 8 10 12 14" } "03" { "var_type" "FIELD_INTEGER" "bonus_agi" "6 8 10 12 14" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_FLOAT" "damage_delay" "0" } "06" { "var_type" "FIELD_FLOAT" "mana_cost_tooltip" "120 140 160 180 200" } "07" { "var_type" "FIELD_FLOAT" "int_damage" "0" } } } "item_dagon_5" { // General //------------------------------------------------------------------------------------------------------------- "ID" "204" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700 750 800 850 900" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0 30.0 25.0 20.0 15.0" "AbilitySharedCooldown" "dagon" "MaxUpgradeLevel" "5" "ItemBaseLevel" "5" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "120 140 160 180 200" "ItemCost" "7700" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 5" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_int" "14 16 18 20 22" } "02" { "var_type" "FIELD_INTEGER" "bonus_str" "6 8 10 12 14" } "03" { "var_type" "FIELD_INTEGER" "bonus_agi" "6 8 10 12 14" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_FLOAT" "damage_delay" "0" } "06" { "var_type" "FIELD_FLOAT" "mana_cost_tooltip" "120 140 160 180 200" } "07" { "var_type" "FIELD_FLOAT" "int_damage" "0" } } } //================================================================================================================= // Recipe: Necronomicon //================================================================================================================= "item_recipe_necronomicon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "105" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1250" "ItemShopTags" "" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_necronomicon" "ItemRequirements" { "01" "item_sobi_mask;item_sobi_mask;item_belt_of_strength" } } "item_recipe_necronomicon_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "191" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemBaseLevel" "2" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_necronomicon_2" "ItemRequirements" { "01" "item_necronomicon*;item_recipe_necronomicon" } } "item_recipe_necronomicon_3" { // General //------------------------------------------------------------------------------------------------------------- "ID" "192" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemBaseLevel" "3" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_necronomicon_3" "ItemRequirements" { "01" "item_necronomicon_2*;item_recipe_necronomicon" } } //================================================================================================================= // Necronomicon //================================================================================================================= "item_necronomicon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "106" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "80.0" "AbilityManaCost" "150" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2050" "ItemShopTags" "int;str;hard_to_tag;see_invis" "ItemQuality" "rare" "ItemAliases" "necronomicon 1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "3" "ItemBaseLevel" "1" "UpgradesItems" "item_necronomicon;item_necronomicon_2" "UpgradeRecipe" "item_recipe_necronomicon" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "6 12 18" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2 3 4" } "04" { "var_type" "FIELD_INTEGER" "summon_duration" "60" } "05" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "800 1200 1600" } "06" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "25 45 65" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "30 40 50" } "08" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "30 40 50" } "09" { "var_type" "FIELD_INTEGER" "explosion" "600 700 800" } "10" { "var_type" "FIELD_INTEGER" "warrior_truesight" "400 800 1200" } "11" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "800 1200 1600" } "12" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "37 57 75" } "13" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "1200" } "15" { "var_type" "FIELD_INTEGER" "archer_move_speed" "5 7 9" } } } "item_necronomicon_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "193" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "80.0" "AbilityManaCost" "150" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3300" "ItemShopTags" "int;str;hard_to_tag;see_invis" "ItemQuality" "rare" "ItemAliases" "necronomicon 2" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "3" "ItemBaseLevel" "2" "UpgradesItems" "item_necronomicon_2" "UpgradeRecipe" "item_recipe_necronomicon" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "6 12 18" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2 3 4" } "04" { "var_type" "FIELD_INTEGER" "summon_duration" "60" } "05" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "800 1200 1600" } "06" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "25 45 65" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "30 40 50" } "08" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "30 40 50" } "09" { "var_type" "FIELD_INTEGER" "explosion" "600 700 800" } "10" { "var_type" "FIELD_INTEGER" "warrior_truesight" "400 800 1200" } "11" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "800 1200 1600" } "12" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "37 57 75" } "13" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "1200" } "15" { "var_type" "FIELD_INTEGER" "archer_move_speed" "5 7 9" } } } "item_necronomicon_3" { // General //------------------------------------------------------------------------------------------------------------- "ID" "194" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "80.0" "AbilityManaCost" "150" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" "ShouldBeSuggested" "0" "ItemPurchasable" "0" "IsObsolete" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4550" "ItemShopTags" "int;str;hard_to_tag;see_invis" "ItemQuality" "rare" "ItemAliases" "necronomicon 3" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "3" "ItemBaseLevel" "3" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "6 12 18" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2 3 4" } "04" { "var_type" "FIELD_INTEGER" "summon_duration" "60" } "05" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "800 1200 1600" } "06" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "25 45 65" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "30 40 50" } "08" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "30 40 50" } "09" { "var_type" "FIELD_INTEGER" "explosion" "600 700 800" } "10" { "var_type" "FIELD_INTEGER" "warrior_truesight" "400 800 1200" } "11" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "800 1200 1600" } "12" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "37 57 75" } "13" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "1200" } "15" { "var_type" "FIELD_INTEGER" "archer_move_speed" "5 7 9" } } } //================================================================================================================= // Recipe: Scepter //================================================================================================================= "item_recipe_ultimate_scepter" { // General //------------------------------------------------------------------------------------------------------------- "ID" "107" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ultimate_scepter" "ItemRequirements" { "01" "item_point_booster;item_staff_of_wizardry;item_ogre_axe;item_blade_of_alacrity" } } //================================================================================================================= // Scepter //================================================================================================================= "item_ultimate_scepter" { // General //------------------------------------------------------------------------------------------------------------- "ID" "108" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" "AbilityCastRange" "600" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4200" "ItemShopTags" "int;str;agi;mana_pool;health_pool;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "ags;ultimate;aghanim's scepter;ags" //"ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // heroes for whom this is a problem solve it in their code - ogre magi, meepo "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "175" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana" "175" } } } //================================================================================================================= // Recipe: Scepter 2 //================================================================================================================= "item_recipe_ultimate_scepter_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "270" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ultimate_scepter_2" "ItemRequirements" { "01" "item_ultimate_scepter" } } //================================================================================================================= // Scepter //================================================================================================================= "item_ultimate_scepter_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "271" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/aghanim_scepter.vmdl" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5800" "ItemShopTags" "int;str;agi;mana_pool;health_pool;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "ags;ultimate;aghanim's scepter;ags" //"ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // heroes for whom this is a problem solve it in their code - ogre magi, meepo } //================================================================================================================= // Scepter //================================================================================================================= "item_ultimate_scepter_roshan" { // General //------------------------------------------------------------------------------------------------------------- "ID" "727" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/aghanim_scepter.vmdl" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5800" "ItemShopTags" "" "ItemQuality" "rare" "ItemAliases" "" "ItemPurchasable" "0" "ItemSellable" "0" "ItemKillable" "1" "IsTempestDoubleClonable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" //"ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // heroes for whom this is a problem solve it in their code - ogre magi, meepo } //================================================================================================================= // Aghanim's Shard //================================================================================================================= "item_aghanims_shard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "609" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "int;str;agi;mana_pool;health_pool;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "ags;shard;aghanim's shard;aghs" "ItemPermanent" "0" "ItemStockTime" "1" "ItemStockInitial" "0" "ItemStockMax" "1" "ItemInitialStockTime" "990.0" "ItemInitialStockTimeTurbo" "645.0" "ShouldBeSuggested" "1" } //================================================================================================================= // Aghanim's Shard //================================================================================================================= "item_aghanims_shard_roshan" { // General //------------------------------------------------------------------------------------------------------------- "ID" "725" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "" "ItemQuality" "rare" "ItemAliases" "" "ItemPurchasable" "0" "ItemSellable" "0" "ItemKillable" "1" "IsTempestDoubleClonable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" } //================================================================================================================= // Recipe: Refresher //================================================================================================================= "item_recipe_refresher" { // General //------------------------------------------------------------------------------------------------------------- "ID" "109" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" "FightRecapLevel" "2" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1700" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_refresher" "ItemRequirements" { "01" "item_pers;item_pers" } } //================================================================================================================= // Refresher //================================================================================================================= "item_refresher" { // General //------------------------------------------------------------------------------------------------------------- "ID" "110" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "180.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "350" "ItemCost" "5000" "ItemShopTags" "regen_health;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "refresher orb" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "13" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "7.0" } } } //================================================================================================================= // Recipe: Assault Cuirass //================================================================================================================= "item_recipe_assault" { // General //------------------------------------------------------------------------------------------------------------- "ID" "111" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_assault" "ItemRequirements" { "01" "item_platemail;item_hyperstone;item_buckler" } } //================================================================================================================= // Assault Cuirass //================================================================================================================= "item_assault" { // General //------------------------------------------------------------------------------------------------------------- "ID" "112" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5125" "ItemShopTags" "attack_speed;armor;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "ac;assault cuirass" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "1200" } "04" { "var_type" "FIELD_INTEGER" "aura_attack_speed" "30" } "05" { "var_type" "FIELD_INTEGER" "aura_positive_armor" "5" } "06" { "var_type" "FIELD_INTEGER" "aura_negative_armor" "-5" } } } //================================================================================================================= // Recipe: Heart //================================================================================================================= "item_recipe_heart" { // General //------------------------------------------------------------------------------------------------------------- "ID" "113" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1200" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_heart" "ItemRequirements" { "01" "item_vitality_booster;item_reaver" } } //================================================================================================================= // Heart //================================================================================================================= "item_heart" { // General //------------------------------------------------------------------------------------------------------------- "ID" "114" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5000" "ItemShopTags" "str;regen_health;health_pool" "ItemQuality" "epic" "ItemAliases" "hot;heart of tarrasque" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "45" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "03" { "var_type" "FIELD_FLOAT" "health_regen_pct" "1.6" } } } //================================================================================================================= // Recipe: Black King Bar //================================================================================================================= "item_recipe_black_king_bar" { // General //------------------------------------------------------------------------------------------------------------- "ID" "115" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1450" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_black_king_bar" "ItemRequirements" { "01" "item_ogre_axe;item_mithril_hammer" } } //================================================================================================================= // Black King Bar //================================================================================================================= "item_black_king_bar" { // General //------------------------------------------------------------------------------------------------------------- "ID" "116" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "90" "AbilityManaCost" "50" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4050" "ItemShopTags" "str;damage;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "bkb;black king bar" "ItemSellable" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "03" { "var_type" "FIELD_FLOAT" "duration" "9.0 8.0 7.0 6.0" } "04" { "var_type" "FIELD_INTEGER" "max_level" "4" } "05" { "var_type" "FIELD_INTEGER" "model_scale" "30" // Percentage over model scale } } } //================================================================================================================= // Aegis of Immortality //================================================================================================================= "item_aegis" { // General //------------------------------------------------------------------------------------------------------------- "ID" "117" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/aegis.vmdl" "Effect" "particles/generic_gameplay/dropped_aegis.vpcf" "FightRecapLevel" "2" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemQuality" "artifact" // Items //------------------------------------------------------------------------------------------------------------- "ItemPurchasable" "0" "ItemDroppable" "0" "ItemSellable" "0" "ItemKillable" "1" "ItemContributesToNetWorthWhenDropped" "0" "AllowedInBackpack" "0" "IsTempestDoubleClonable" "0" //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "reincarnate_time" "5.0" } "02" { "var_type" "FIELD_FLOAT" "disappear_time" "300.0" } "03" { "var_type" "FIELD_INTEGER" "disappear_time_minutes_tooltip" "5" } "04" { "var_type" "FIELD_FLOAT" "disappear_time_turbo" "240.0" } } } //================================================================================================================= // Recipe: Shiva's Guard //================================================================================================================= "item_recipe_shivas_guard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "118" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_shivas_guard" "ItemRequirements" { "01" "item_platemail;item_mystic_staff" } } //================================================================================================================= // Shiva's //================================================================================================================= "item_shivas_guard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "119" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "27" "AbilityCastRange" "900" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "4850" "ItemShopTags" "int;armor;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "shiva's guard;shivas" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "15" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "1200" } "04" { "var_type" "FIELD_INTEGER" "aura_attack_speed" "-45" } "05" { "var_type" "FIELD_INTEGER" "blast_damage" "200" } "06" { "var_type" "FIELD_INTEGER" "blast_movement_speed" "-40" } "07" { "var_type" "FIELD_FLOAT" "blast_debuff_duration" "4.0" } "08" { "var_type" "FIELD_INTEGER" "blast_radius" "900" } "09" { "var_type" "FIELD_INTEGER" "blast_speed" "350" } "10" { "var_type" "FIELD_INTEGER" "hp_regen_degen_aura" "25" } } } //================================================================================================================= // Recipe: Bloodstone //================================================================================================================= "item_recipe_bloodstone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "120" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_bloodstone" "ItemRequirements" { "01" "item_voodoo_mask;item_soul_booster" } } //================================================================================================================= // Bloodstone //================================================================================================================= "item_bloodstone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "121" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "30.0" "AbilityManaCost" "0" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4400" "ItemShopTags" "regen_health;regen_mana;mana_pool;health_pool" "ItemQuality" "epic" "ItemAliases" "bs;bloodstone" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "AllowedInBackpack" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "500" "bonus_mana" "500" "spell_lifesteal" "30" "buff_duration" "6" "lifesteal_multiplier" "2.5" "hp_cost" "0" } } //================================================================================================================= // Recipe: Sphere //================================================================================================================= "item_recipe_sphere" { // General //------------------------------------------------------------------------------------------------------------- "ID" "122" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_sphere" "ItemRequirements" { "01" "item_ultimate_orb;item_pers" } } //================================================================================================================= // Sphere //================================================================================================================= "item_sphere" { // General //------------------------------------------------------------------------------------------------------------- "ID" "123" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "FightRecapLevel" "1" "AbilityCastRange" "700" "AbilityCooldown" "14.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4600" "ItemShopTags" "regen_health;regen_mana;str;agi;int;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "ls;linken's sphere" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ActiveDescriptionLine" "2" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_all_stats" "16" "bonus_health_regen" "7" "bonus_mana_regen" "5.0" "block_cooldown" "14.0" "upgrade_absorb_duration" "10.0" "damage_absorb" "300" } } //================================================================================================================= // Recipe: Lotus Orb //================================================================================================================= "item_recipe_lotus_orb" { // General //------------------------------------------------------------------------------------------------------------- "ID" "221" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_lotus_orb" "ItemRequirements" { "01" "item_pers;item_platemail;item_energy_booster" } } //================================================================================================================= // Lotus Orb //================================================================================================================= "item_lotus_orb" { // General //------------------------------------------------------------------------------------------------------------- "ID" "226" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "FightRecapLevel" "1" "AbilityCooldown" "15.0" "AbilityCastRange" "900" "AbilityManaCost" "175" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3850" "ItemShopTags" "regen_health;regen_mana;str;agi;int;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "ls;lotus orb" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "02" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "6.5" } "03" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "4.0" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } "05" { "var_type" "FIELD_FLOAT" "active_duration" "6" } } } //================================================================================================================= // Recipe: Meteor Hammer //================================================================================================================= "item_recipe_meteor_hammer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "222" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_meteor_hammer" "ItemRequirements" { "01" "item_pers;item_crown" } } //================================================================================================================= // Meteor Hammer //================================================================================================================= "item_meteor_hammer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "223" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_CHANNELLED" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" "FightRecapLevel" "1" // Time //------------------------------------------------------------------------------------------------------------- "AbilityChannelTime" "2.5" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCooldown" "24" "AbilityManaCost" "100" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2350" "ItemQuality" "epic" "ItemAliases" "mh;meteor hammer" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_all_stats" "8" "bonus_health_regen" "6.5" "bonus_mana_regen" "2.5" "burn_dps_buildings" "60" "burn_dps_units" "60" "burn_duration" "6" "stun_duration" "1.25" "burn_interval" "1.0" "land_time" ".5" "impact_radius" "400" "max_duration" "2.5" "impact_damage_buildings" "75" "impact_damage_units" "150" "enemy_particles_visible" "0" } } //================================================================================================================= // Recipe: Nullifier //================================================================================================================= "item_recipe_nullifier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "224" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_nullifier" "ItemRequirements" { "01" "item_relic;item_helm_of_iron_will" } } //================================================================================================================= // Nullifier //================================================================================================================= "item_nullifier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "225" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE | DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" "FightRecapLevel" "1" "AbilityCooldown" "10.0" "AbilityCastRange" "900" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4725" "ItemQuality" "epic" "ItemAliases" "nlf;nullifier" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "80" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_regen" "6" } "04" { "var_type" "FIELD_FLOAT" "mute_duration" "5.0" } "05" { "var_type" "FIELD_INTEGER" "projectile_speed" "1100" } "06" { "var_type" "FIELD_INTEGER" "slow_pct" "80" } "07" { "var_type" "FIELD_FLOAT" "slow_interval_duration" "0.5" } } } //================================================================================================================= // Recipe: Aeon Disk //================================================================================================================= "item_recipe_aeon_disk" { // General //------------------------------------------------------------------------------------------------------------- "ID" "255" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1200" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_aeon_disk" "ItemRequirements" { "01" "item_vitality_booster;item_energy_booster" } } //================================================================================================================= // Aeon Disk //================================================================================================================= "item_aeon_disk" { // General //------------------------------------------------------------------------------------------------------------- "ID" "256" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "105.0 125.0 145.0 165.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3000" "ItemShopTags" "str;regen_health;health_pool" "ItemQuality" "epic" "ItemAliases" "ad;aeon disk" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS | DECLARE_PURCHASES_IN_SPEECH" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "300" } "03" { "var_type" "FIELD_INTEGER" "health_threshold_pct" "70" } "04" { "var_type" "FIELD_INTEGER" "status_resistance" "75" } "05" { "var_type" "FIELD_FLOAT" "buff_duration" "2.5" } "06" { "var_type" "FIELD_INTEGER" "max_level" "4" } "07" { "var_type" "FIELD_FLOAT" "cooldown_duration" "105.0 125.0 145.0 165.0" } } } //================================================================================================================= // Recipe: Kaya //================================================================================================================= "item_recipe_kaya" { // General //------------------------------------------------------------------------------------------------------------- "ID" "258" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_kaya" "ItemRequirements" { "01" "item_staff_of_wizardry;item_robe" } } //================================================================================================================= // Kaya //================================================================================================================= "item_kaya" { // General //------------------------------------------------------------------------------------------------------------- "ID" "259" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2050" "ItemShopTags" "int;mana" "ItemQuality" "epic" "ItemAliases" "ky;kaya" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS | DECLARE_PURCHASES_IN_SPEECH" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "16" "spell_amp" "8" "mana_regen_multiplier" "50" "spell_lifesteal_amp" "24" } } //================================================================================================================= // Trident //================================================================================================================= "item_trident" { "ID" "275" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "IsObsolete" "1" "ItemPurchasable" "0" } //================================================================================================================= // Combo Breaker //================================================================================================================= "item_combo_breaker" { "ID" "276" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "IsObsolete" "1" "ItemPurchasable" "0" } //================================================================================================================= // Refresher Shard //================================================================================================================= "item_refresher_shard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "260" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" "Model" "models/props_gameplay/refresher_shard.vmdl" "Effect" "particles/generic_gameplay/dropped_refresher_shard.vpcf" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "180.0" "AbilityManaCost" "200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemStackable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemContributesToNetWorthWhenDropped" "0" "IsTempestDoubleClonable" "0" } //================================================================================================================= // Recipe: Spirit Vessel //================================================================================================================= "item_recipe_spirit_vessel" { // General //------------------------------------------------------------------------------------------------------------- "ID" "266" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_spirit_vessel" "ItemRequirements" { "01" "item_urn_of_shadows*;item_vitality_booster" } } //================================================================================================================= // Spirit Vessel //================================================================================================================= "item_spirit_vessel" { // General //------------------------------------------------------------------------------------------------------------- "ID" "267" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "750" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" "AbilitySharedCooldown" "urn" // Items //------------------------------------------------------------------------------------------------------------- "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "ItemStackable" "0" "ItemPermanent" "1" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2980" "ItemQuality" "rare" "ItemAliases" "sv;spirit vessel" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "1.75" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "04" { "var_type" "FIELD_FLOAT" "bonus_armor" "2" } "05" { "var_type" "FIELD_INTEGER" "soul_radius" "1400" } "06" { "var_type" "FIELD_INTEGER" "soul_initial_charge" "2" } "07" { "var_type" "FIELD_INTEGER" "soul_additional_charges" "1" } "08" { "var_type" "FIELD_INTEGER" "soul_heal_amount" "40" } "09" { "var_type" "FIELD_INTEGER" "soul_damage_amount" "35" } "10" { "var_type" "FIELD_FLOAT" "duration" "8.0" } "11" { "var_type" "FIELD_INTEGER" "hp_regen_reduction_enemy" "45" } "12" { "var_type" "FIELD_FLOAT" "enemy_hp_drain" "4" } } } //================================================================================================================= // Recipe: Vanguard //================================================================================================================= "item_recipe_vanguard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "124" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_vanguard" "ItemRequirements" { "01" "item_ring_of_health;item_vitality_booster" } } //================================================================================================================= // Vanguard //================================================================================================================= "item_vanguard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "125" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1825" "ItemShopTags" "regen_health;block;health_pool" "ItemQuality" "epic" "ItemAliases" "vg;vanguard" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "7.0" } "03" { "var_type" "FIELD_INTEGER" "block_damage_melee" "64" } "04" { "var_type" "FIELD_INTEGER" "block_damage_ranged" "32" } "05" { "var_type" "FIELD_INTEGER" "block_chance" "60" } } } //================================================================================================================= // Recipe: Crimson Guard //================================================================================================================= "item_recipe_crimson_guard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "243" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_crimson_guard" "ItemRequirements" { "01" "item_vanguard;item_helm_of_iron_will" } } //================================================================================================================= // Crimson Guard //================================================================================================================= "item_crimson_guard" { // General //------------------------------------------------------------------------------------------------------------- "ID" "242" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "35.0" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3600" "ItemShopTags" "armor;boost_armor;regen_health;block;health_pool" "ItemQuality" "epic" "ItemAlertable" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "250" "bonus_health_regen" "12" "bonus_armor" "8" "block_damage_melee" "75" "block_damage_ranged" "50" "block_chance" "60" "duration" "12" "bonus_aoe_radius" "1200" "block_damage_melee_active" "75" "block_damage_ranged_active" "75" "block_chance_active" "100" "tooltip_reapply_time" "35" } } //================================================================================================================= // Recipe: Blade Mail //================================================================================================================= "item_recipe_blade_mail" { // General //------------------------------------------------------------------------------------------------------------- "ID" "126" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "550" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_blade_mail" "ItemRequirements" { "01" "item_broadsword;item_chainmail" } } //================================================================================================================= // Blade Mail //================================================================================================================= "item_blade_mail" { // General //------------------------------------------------------------------------------------------------------------- "ID" "127" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "25" "ItemCost" "2100" "ItemShopTags" "damage;armor;int;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "bm;blade mail;blademail" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "28" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "0" } "04" { "var_type" "FIELD_FLOAT" "duration" "5.5" } "05" { "var_type" "FIELD_INTEGER" "passive_reflection_constant" "20" } "06" { "var_type" "FIELD_INTEGER" "passive_reflection_pct" "20" } "07" { "var_type" "FIELD_INTEGER" "active_reflection_pct" "85" } } } //================================================================================================================= // Recipe: Soul Booster //================================================================================================================= "item_recipe_soul_booster" { // General //------------------------------------------------------------------------------------------------------------- "ID" "128" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_soul_booster" "ItemRequirements" { "01" "item_vitality_booster;item_energy_booster;item_point_booster" } } //================================================================================================================= // Booster //================================================================================================================= "item_soul_booster" { // General //------------------------------------------------------------------------------------------------------------- "ID" "129" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3000" "ItemShopTags" "regen_health;regen_mana;health_pool;mana_pool" "ItemQuality" "epic" "ItemAliases" "soul booster" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "425" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "425" } "03" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "0" } } } //================================================================================================================= // Recipe: Hood of Defiance //================================================================================================================= "item_recipe_hood_of_defiance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "130" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_hood_of_defiance" "ItemRequirements" { "01" "item_ring_of_health;item_cloak;item_ring_of_regen" } } //================================================================================================================= // Hood of Defiance //================================================================================================================= "item_hood_of_defiance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "131" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60.0" "AbilityManaCost" "50" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "regen_health;magic_resist" "ItemQuality" "epic" "ItemAliases" "hood of defiance" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_spell_resist" "18" "bonus_health_regen" "8.5" "tooltip_resist" "18" "barrier_block" "350" "barrier_duration" "12.0" } } //================================================================================================================= // Recipe: Eternal Shroud //================================================================================================================= "item_recipe_eternal_shroud" { // General //------------------------------------------------------------------------------------------------------------- "ID" "691" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_eternal_shroud" "ItemRequirements" { "01" "item_voodoo_mask;item_hood_of_defiance" } } //================================================================================================================= // Eternal Shroud //================================================================================================================= "item_eternal_shroud" { // General //------------------------------------------------------------------------------------------------------------- "ID" "692" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "AbilityManaCost" "50" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3300" "ItemShopTags" "regen_health;magic_resist" "ItemQuality" "epic" "ItemAliases" "eternal shroud;es" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_spell_resist" "25" } "02" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "8.5" } "03" { "var_type" "FIELD_INTEGER" "barrier_block" "400" } "04" { "var_type" "FIELD_INTEGER" "barrier_duration" "12.0" } "05" { "var_type" "FIELD_FLOAT" "spell_lifesteal" "20" } } } //================================================================================================================= // Recipe: Rapier //================================================================================================================= "item_recipe_rapier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "132" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_rapier" "ItemRequirements" { "01" "item_relic;item_demon_edge" } } //================================================================================================================= // Rapier //================================================================================================================= "item_rapier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "133" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/divine_rapier.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5950" "ItemShopTags" "damage" "ItemQuality" "epic" "ItemAliases" "divine rapier" "ItemShareability" "ITEM_NOT_SHAREABLE" "ItemSellable" "0" "ItemKillable" "0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS | DECLARE_PURCHASES_IN_SPEECH" "ItemContributesToNetWorthWhenDropped" "0" "AllowedInBackpack" "0" "IsTempestDoubleClonable" "0" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "350" } } } //================================================================================================================= // Recipe: Monkey King Bar //================================================================================================================= "item_recipe_monkey_king_bar" { // General //------------------------------------------------------------------------------------------------------------- "ID" "134" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "675" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_monkey_king_bar" "ItemRequirements" { "01" "item_demon_edge;item_javelin;item_blitz_knuckles" } } //================================================================================================================= // Monkey King Bar //================================================================================================================= "item_monkey_king_bar" { // General //------------------------------------------------------------------------------------------------------------- "ID" "135" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4975" "ItemShopTags" "damage;attack_speed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "mkb;monkey king bar" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "40" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "45" } "03" { "var_type" "FIELD_INTEGER" "bonus_chance" "80" } "04" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "70" } } } //================================================================================================================= // Recipe: Radiance //================================================================================================================= "item_recipe_radiance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "136" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_radiance" "ItemRequirements" { "01" "item_relic;item_talisman_of_evasion" } } //================================================================================================================= // Radiance //================================================================================================================= "item_radiance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "137" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE" "AbilityCastRange" "700" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5050" "ItemShopTags" "damage" "ItemQuality" "epic" "ItemAliases" "radiance" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "60" "aura_damage" "60" "aura_damage_illusions" "35" "upgrade_day_vision" "250" "evasion" "15" "blind_pct" "15" "aura_radius" "700" } } //================================================================================================================= // Recipe: Butterfly //================================================================================================================= "item_recipe_butterfly" { // General //------------------------------------------------------------------------------------------------------------- "ID" "138" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_butterfly" "ItemRequirements" { "01" "item_eagle;item_talisman_of_evasion;item_quarterstaff" } } //================================================================================================================= // Butterfly //================================================================================================================= "item_butterfly" { // General //------------------------------------------------------------------------------------------------------------- "ID" "139" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" //"AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4975" "ItemShopTags" "agi;damage;evasion;attack_speed" "ItemQuality" "epic" "ItemAliases" "bfly;butterfly" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "35" } "02" { "var_type" "FIELD_INTEGER" "bonus_evasion" "35" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } } } //================================================================================================================= // Recipe: Greater Crit //================================================================================================================= "item_recipe_greater_crit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "140" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_greater_crit" "ItemRequirements" { "01" "item_lesser_crit;item_demon_edge" } } //================================================================================================================= // Greater Crit //================================================================================================================= "item_greater_crit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "141" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5150" "ItemShopTags" "damage;crit" "ItemQuality" "epic" "ItemAliases" "daedalus" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "88" } "02" { "var_type" "FIELD_INTEGER" "crit_chance" "30" } "03" { "var_type" "FIELD_INTEGER" "crit_multiplier" "225" } } } //================================================================================================================= // Recipe: Basher //================================================================================================================= "item_recipe_basher" { // General //------------------------------------------------------------------------------------------------------------- "ID" "142" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "825" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_basher" "ItemRequirements" { "01" "item_mithril_hammer;item_belt_of_strength" } } //================================================================================================================= // Basher //================================================================================================================= "item_basher" { // General //------------------------------------------------------------------------------------------------------------- "ID" "143" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitDamageType" "DAMAGE_TYPE_PHYSICAL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.3" "SpellDispellableType" "SPELL_DISPELLABLE_YES_STRONG" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2875" "ItemShopTags" "damage;str;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "skull basher" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "03" { "var_type" "FIELD_INTEGER" "bash_chance_melee" "25" } "04" { "var_type" "FIELD_INTEGER" "bash_chance_ranged" "10" } "05" { "var_type" "FIELD_FLOAT" "bash_duration" "1.5" } "06" { "var_type" "FIELD_FLOAT" "bash_cooldown" "2.3" } "07" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "100" } } } //================================================================================================================= // Recipe: Battlefury //================================================================================================================= "item_recipe_bfury" { // General //------------------------------------------------------------------------------------------------------------- "ID" "144" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_bfury" "ItemRequirements" { "01" "item_broadsword;item_claymore;item_pers;item_quelling_blade" } } //================================================================================================================= // Battlefury //================================================================================================================= "item_bfury" { // General //------------------------------------------------------------------------------------------------------------- "ID" "145" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" "AbilityCooldown" "4.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4100" "ItemShopTags" "damage;health_regen;mana_regen;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "bf;battle fury" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "60" } "02" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "7.5" } "03" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.75" } "04" { "var_type" "FIELD_INTEGER" "cleave_damage_percent" "70" } "05" { "var_type" "FIELD_INTEGER" "cleave_damage_percent_creep" "40" } "06" { "var_type" "FIELD_INTEGER" "quelling_bonus" "15" } "07" { "var_type" "FIELD_INTEGER" "quelling_bonus_ranged" "6" } "08" { "var_type" "FIELD_INTEGER" "cleave_starting_width" "150" } "09" { "var_type" "FIELD_INTEGER" "cleave_ending_width" "360" } "10" { "var_type" "FIELD_INTEGER" "cleave_distance" "650" } "11" { "var_type" "FIELD_INTEGER" "upgraded_cleave_bonus" "25" } "12" { "var_type" "FIELD_INTEGER" "upgraded_damage_bonus" "15" } } } //================================================================================================================= // Recipe: Manta //================================================================================================================= "item_recipe_manta" { // General //------------------------------------------------------------------------------------------------------------- "ID" "146" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_manta" "ItemRequirements" { "01" "item_yasha;item_ultimate_orb" } } //================================================================================================================= // Manta //================================================================================================================= "item_manta" { // General //------------------------------------------------------------------------------------------------------------- "ID" "147" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "125" "ItemCost" "4600" "ItemShopTags" "agi;str;int;attack_speed;move_speed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "manta style" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "26" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "04" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "12" } "05" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "8" } "06" { "var_type" "FIELD_INTEGER" "images_count" "2" } "07" { "var_type" "FIELD_INTEGER" "tooltip_illusion_duration" "20" } "08" { "var_type" "FIELD_INTEGER" "images_do_damage_percent_melee" "-67" } "09" { "var_type" "FIELD_INTEGER" "tooltip_damage_outgoing_melee" "33" } "10" { "var_type" "FIELD_INTEGER" "images_take_damage_percent" "200" } "11" { "var_type" "FIELD_INTEGER" "tooltip_damage_incoming_total_pct" "300" } "12" { "var_type" "FIELD_INTEGER" "images_do_damage_percent_ranged" "-72" } "13" { "var_type" "FIELD_INTEGER" "tooltip_damage_outgoing_ranged" "28" } "14" { "var_type" "FIELD_FLOAT" "invuln_duration" "0.1" } "15" { "var_type" "FIELD_INTEGER" "vision_radius" "1000" } } } //================================================================================================================= // Recipe: Lesser Crit //================================================================================================================= "item_recipe_lesser_crit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "148" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_lesser_crit" "ItemRequirements" { "01" "item_broadsword;item_blades_of_attack" } } //================================================================================================================= // Lesser Crit //================================================================================================================= "item_lesser_crit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "149" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1950" "ItemShopTags" "damage;crit" "ItemQuality" "epic" "ItemAliases" "crystalys" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "32" } "02" { "var_type" "FIELD_INTEGER" "crit_chance" "30" } "03" { "var_type" "FIELD_INTEGER" "crit_multiplier" "160" } "04" { "var_type" "FIELD_INTEGER" "tooltip_crit_damage" "60" } } } //================================================================================================================= // Recipe: Dragon Lance //================================================================================================================= "item_recipe_dragon_lance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "234" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dragon_lance" "ItemRequirements" { "01" "item_blade_of_alacrity;item_belt_of_strength" } } //================================================================================================================= // Dragon Lance //================================================================================================================= "item_dragon_lance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "236" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1900" "ItemShopTags" "damage" "ItemQuality" "artifact" "ItemAliases" "dragon lance" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "15" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "12" } "03" { "var_type" "FIELD_INTEGER" "base_attack_range" "150" } } } //================================================================================================================= // Recipe: Armlet //================================================================================================================= "item_recipe_armlet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "150" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "625" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_armlet" "ItemRequirements" { "01" "item_helm_of_iron_will;item_gloves;item_blades_of_attack" } } //================================================================================================================= // Armlet //================================================================================================================= "item_armlet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "151" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2500" "ItemShopTags" "damage;attack_speed;armor;regen_health;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "armlet of mordiggian" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "15" "bonus_attack_speed" "25" "bonus_armor" "6" "bonus_health_regen" "5" "unholy_bonus_damage" "35" "unholy_bonus_attack_speed" "0" "unholy_bonus_strength" "25" "unholy_bonus_armor" "4" "unholy_health_drain_per_second" "45" "toggle_cooldown" "0.036" } } //================================================================================================================= // Recipe: Invisibility Sword //================================================================================================================= "item_recipe_invis_sword" { // General //------------------------------------------------------------------------------------------------------------- "ID" "183" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_invis_sword" "ItemRequirements" { "01" "item_shadow_amulet*;item_blitz_knuckles;item_broadsword" } } //================================================================================================================= // Invisibility Sword //================================================================================================================= "item_invis_sword" { // General //------------------------------------------------------------------------------------------------------------- "ID" "152" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" "AbilitySharedCooldown" "shadow_blade" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "3000" "ItemShopTags" "damage;attack_speed;movespeed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "sb;invis;shadow blade;silver edge" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "20" "bonus_attack_speed" "35" "windwalk_duration" "14.0" "windwalk_movement_speed" "20" "windwalk_fade_time" "0.3" "windwalk_bonus_damage" "175" } } //================================================================================================================= // Recipe: Silver Edge //================================================================================================================= "item_recipe_silver_edge" { // General //------------------------------------------------------------------------------------------------------------- "ID" "248" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_silver_edge" "ItemRequirements" { "01" "item_invis_sword*;item_lesser_crit" } } //================================================================================================================= // Silver Edge //================================================================================================================= "item_silver_edge" { // General //------------------------------------------------------------------------------------------------------------- "ID" "249" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" "AbilitySharedCooldown" "shadow_blade" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "5450" "ItemShopTags" "damage;attack_speed;movespeed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "sb;invis;shadow blade" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "52" "bonus_attack_speed" "35" "bonus_strength" "0" "bonus_intellect" "0" "bonus_mana_regen" "0" "windwalk_duration" "14.0" "windwalk_movement_speed" "25" "windwalk_fade_time" "0.3" "windwalk_bonus_damage" "175" "backstab_duration" "4" "crit_chance" "30" "crit_multiplier" "160" "tooltip_crit_damage" "60" } } //================================================================================================================= // Recipe: Sange and Yasha //================================================================================================================= "item_recipe_sange_and_yasha" { // General //------------------------------------------------------------------------------------------------------------- "ID" "153" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_sange_and_yasha" "ItemRequirements" { "01" "item_yasha;item_sange" } } //================================================================================================================= // Sange and Yasha //================================================================================================================= "item_sange_and_yasha" { // General //------------------------------------------------------------------------------------------------------------- "ID" "154" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4100" "ItemShopTags" "damage;str;agi;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "sny;s&y;sy;sange and yasha" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "16" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "16" } "03" { "var_type" "FIELD_INTEGER" "status_resistance" "20" } "04" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "12" } "05" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "10" } "06" { "var_type" "FIELD_INTEGER" "hp_regen_amp" "22" } } } //================================================================================================================= // Recipe: Kaya and Sange //================================================================================================================= "item_recipe_kaya_and_sange" { // General //------------------------------------------------------------------------------------------------------------- "ID" "272" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_kaya_and_sange" "ItemRequirements" { "01" "item_sange;item_kaya" } } //================================================================================================================= // Kaya and Sange //================================================================================================================= "item_kaya_and_sange" { // General //------------------------------------------------------------------------------------------------------------- "ID" "273" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4100" "ItemShopTags" "damage;str;agi;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "snk;s&k;sk;sange and kaya" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "16" "bonus_intellect" "16" "status_resistance" "20" "mana_regen_multiplier" "50" "spell_amp" "16" "hp_regen_amp" "22" "spell_lifesteal_amp" "30" } } //================================================================================================================= // Recipe: Yasha and Kaya //================================================================================================================= "item_recipe_yasha_and_kaya" { // General //------------------------------------------------------------------------------------------------------------- "ID" "274" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_yasha_and_kaya" "ItemRequirements" { "01" "item_kaya;item_yasha" } } //================================================================================================================= // Yasha and Kaya //================================================================================================================= "item_yasha_and_kaya" { // General //------------------------------------------------------------------------------------------------------------- "ID" "277" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4100" "ItemShopTags" "damage;str;agi;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "ynk;y&k;sk;yasha and kaya" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_agility" "16" "bonus_intellect" "16" "bonus_attack_speed" "12" "mana_regen_multiplier" "50" "movement_speed_percent_bonus" "10" "spell_amp" "16" "spell_lifesteal_amp" "30" } } //================================================================================================================= // Recipe: Satanic //================================================================================================================= "item_recipe_satanic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "155" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_satanic" "ItemRequirements" { "01" "item_lifesteal;item_claymore;item_reaver" } } //================================================================================================================= // Satanic //================================================================================================================= "item_satanic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "156" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "2" "SpellDispellableType" "SPELL_DISPELLABLE_NO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5050" "ItemShopTags" "damage;str;armor;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "satanic" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "25" "bonus_damage" "38" "lifesteal_percent" "30" "creep_lifesteal_reduction_pct" "50" "unholy_lifesteal_percent" "145" "unholy_lifesteal_total_tooltip" "175" "unholy_duration" "6.0" } } //================================================================================================================= // Recipe: Mjollnir //================================================================================================================= "item_recipe_mjollnir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "157" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mjollnir" "ItemRequirements" { "01" "item_maelstrom*;item_hyperstone" } } //================================================================================================================= // Mjollnir //================================================================================================================= "item_mjollnir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "158" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "5600" "ItemShopTags" "damage;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "mjollnir" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "24" "bonus_attack_speed" "70" "static_duration" "15.0" "static_chance" "20" "static_strikes" "4" "static_damage" "225" "static_primary_radius" "600" "static_seconary_radius" "900" "static_radius" "900" "static_cooldown" "1.0" "chain_chance" "30" "chain_damage" "180" "chain_strikes" "12" "chain_radius" "650" "chain_delay" "0.25" "chain_cooldown" "0.2" "max_charges" "0" "chain_damage_per_charge" "0" } } //================================================================================================================= // Recipe: Skadi //================================================================================================================= "item_recipe_skadi" { // General //------------------------------------------------------------------------------------------------------------- "ID" "159" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_skadi" "ItemRequirements" { "01" "item_ultimate_orb;item_ultimate_orb;item_point_booster" } } //================================================================================================================= // Skadi //================================================================================================================= "item_skadi" { // General //------------------------------------------------------------------------------------------------------------- "ID" "160" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5300" "ItemShopTags" "agi;str;int;hard_to_tag;mana_pool;health_pool;unique" "ItemQuality" "artifact" "ItemAliases" "eos;eye of skadi" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_all_stats" "22" "bonus_health" "220" "bonus_mana" "220" "cold_slow_melee" "-20" "cold_attack_slow_melee" "-30" "cold_slow_ranged" "-40" "cold_attack_slow_ranged" "-60" "cold_duration" "3.0" "heal_reduction" "40" } } //================================================================================================================= // Recipe: Sange //================================================================================================================= "item_recipe_sange" { // General //------------------------------------------------------------------------------------------------------------- "ID" "161" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_sange" "ItemRequirements" { "01" "item_ogre_axe;item_belt_of_strength" } } //================================================================================================================= // Sange //================================================================================================================= "item_sange" { // General //------------------------------------------------------------------------------------------------------------- "ID" "162" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2050" "ItemShopTags" "damage;str;unique" "ItemQuality" "artifact" "ItemAliases" "sange" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "16" } "02" { "var_type" "FIELD_INTEGER" "status_resistance" "12" } "03" { "var_type" "FIELD_INTEGER" "hp_regen_amp" "20" } } } //================================================================================================================= // Recipe: Helm of the Dominator //================================================================================================================= "item_recipe_helm_of_the_dominator" { // General //------------------------------------------------------------------------------------------------------------- "ID" "163" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "975" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_helm_of_the_dominator" "ItemRequirements" { "01" "item_helm_of_iron_will;item_crown" } } //================================================================================================================= // Helm of the Dominator //================================================================================================================= "item_helm_of_the_dominator" { // General //------------------------------------------------------------------------------------------------------------- "ID" "164" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_ANCIENTS | DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700" "AbilityCastPoint" "0.0" "AbilityCooldown" "45.0" "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "2400" "ItemShopTags" "damage;armor;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "hotd;helm of the dominator" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_stats" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "03" { "var_type" "FIELD_FLOAT" "bonus_regen" "6" } "04" { "var_type" "FIELD_INTEGER" "health_min" "1000" } "05" { "var_type" "FIELD_INTEGER" "speed_base" "380" } "06" { "var_type" "FIELD_INTEGER" "bounty_gold" "100" } "07" { "var_type" "FIELD_INTEGER" "creep_bonus_damage" "25" } "08" { "var_type" "FIELD_INTEGER" "creep_bonus_hp_regen" "12" } "09" { "var_type" "FIELD_INTEGER" "creep_bonus_mp_regen" "4" } "10" { "var_type" "FIELD_INTEGER" "creep_bonus_armor" "4" } "11" { "var_type" "FIELD_INTEGER" "model_scale" "0" } "12" { "var_type" "FIELD_INTEGER" "count_limit" "1" } } } //================================================================================================================= // Recipe: Helm of the Dominator //================================================================================================================= "item_recipe_helm_of_the_overlord" { // General //------------------------------------------------------------------------------------------------------------- "ID" "633" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1325" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_helm_of_the_overlord" "ItemRequirements" { "01" "item_helm_of_the_dominator;item_vladmir" } } //================================================================================================================= // Helm of the Overlord //================================================================================================================= "item_helm_of_the_overlord" { // General //------------------------------------------------------------------------------------------------------------- "ID" "635" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700" "AbilityCastPoint" "0.0" "AbilityCooldown" "45" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "6175" "ItemShopTags" "damage;armor;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "hoto;helm of the overlord" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_stats" "7" "bonus_armor" "7" "bonus_regen" "7" "health_min" "1800" "speed_base" "400" "bounty_gold" "250" "creep_bonus_damage" "80" "creep_bonus_hp_regen" "12" "creep_bonus_mp_regen" "4" "creep_bonus_armor" "8" "model_scale" "20" "count_limit" "1" "armor_aura" "3.0" "mana_regen_aura" "2" "lifesteal_aura" "20" "creep_lifesteal_reduction_pct" "50" "damage_aura" "18" "aura_radius" "1200" } } //================================================================================================================= // Recipe: Maelstrom //================================================================================================================= "item_recipe_maelstrom" { // General //------------------------------------------------------------------------------------------------------------- "ID" "165" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_maelstrom" "ItemRequirements" { "01" "item_mithril_hammer;item_javelin" } } //================================================================================================================= // Maelstrom //================================================================================================================= "item_maelstrom" { // General //------------------------------------------------------------------------------------------------------------- "ID" "166" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2700" "ItemShopTags" "damage;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "maelstrom" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "02" { "var_type" "FIELD_INTEGER" "chain_chance" "30" } "03" { "var_type" "FIELD_INTEGER" "chain_damage" "140" } "04" { "var_type" "FIELD_INTEGER" "chain_strikes" "4" } "05" { "var_type" "FIELD_INTEGER" "chain_radius" "650" } "06" { "var_type" "FIELD_FLOAT" "chain_delay" "0.25" } "07" { "var_type" "FIELD_FLOAT" "chain_cooldown" "0.2" } } } //================================================================================================================= // Recipe: Gleipnir //================================================================================================================= "item_recipe_gungir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1565" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_gungir" "ItemRequirements" { "01" "item_maelstrom;item_rod_of_atos*" } } //================================================================================================================= // Gleipnir //================================================================================================================= "item_gungir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1466" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" "AbilitySharedCooldown" "atos" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "18" "AbilityCastRange" "1100" "AbilityCastPoint" "0.0" "AbilityManaCost" "200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "6150" "ItemShopTags" "damage;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "gleipnir;gliepnir;glaypnir" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "30" } "02" { "var_type" "FIELD_INTEGER" "chain_chance" "30" } "03" { "var_type" "FIELD_INTEGER" "chain_damage" "160" } "04" { "var_type" "FIELD_INTEGER" "chain_strikes" "4" } "05" { "var_type" "FIELD_INTEGER" "chain_radius" "650" } "06" { "var_type" "FIELD_FLOAT" "chain_delay" "0.25" } "07" { "var_type" "FIELD_FLOAT" "chain_cooldown" "0.2" } "08" { "var_type" "FIELD_INTEGER" "bonus_intellect" "24" } "09" { "var_type" "FIELD_INTEGER" "bonus_strength" "14" } "10" { "var_type" "FIELD_INTEGER" "bonus_agility" "14" } "11" { "var_type" "FIELD_FLOAT" "duration" "2.0" } "12" { "var_type" "FIELD_INTEGER" "radius" "450" } "13" { "var_type" "FIELD_INTEGER" "active_damage" "220" } } } //================================================================================================================= // Recipe: Desolator //================================================================================================================= "item_recipe_desolator" { // General //------------------------------------------------------------------------------------------------------------- "ID" "167" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_desolator" "ItemRequirements" { "01" "item_mithril_hammer;item_mithril_hammer;item_blight_stone" } } //================================================================================================================= // Desolator //================================================================================================================= "item_desolator" { // General //------------------------------------------------------------------------------------------------------------- "ID" "168" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3500" "ItemShopTags" "damage;unique" "ItemQuality" "artifact" "ItemAliases" "desolator" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "SpellDispellableType" "SPELL_DISPELLABLE_YES" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "50" "corruption_armor" "-6" "corruption_duration" "7.0" "bonus_damage_per_kill" "2" "bonus_damage_per_assist" "1" "max_damage" "20" } } //================================================================================================================= // Recipe: Yasha //================================================================================================================= "item_recipe_yasha" { // General //------------------------------------------------------------------------------------------------------------- "ID" "169" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_yasha" "ItemRequirements" { "01" "item_blade_of_alacrity;item_boots_of_elves" } } //================================================================================================================= // Yasha //================================================================================================================= "item_yasha" { // General //------------------------------------------------------------------------------------------------------------- "ID" "170" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2050" "ItemShopTags" "agi;attack_speed;move_speed" "ItemQuality" "artifact" "ItemAliases" "yasha" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "16" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "12" } "03" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "8" } } } //================================================================================================================= // Recipe: Mask of Madness //================================================================================================================= "item_recipe_mask_of_madness" { // General //------------------------------------------------------------------------------------------------------------- "ID" "171" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mask_of_madness" "ItemRequirements" { "01" "item_lifesteal;item_quarterstaff" } } //================================================================================================================= // Mask of Madness //================================================================================================================= "item_mask_of_madness" { // General //------------------------------------------------------------------------------------------------------------- "ID" "172" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "16.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "25" "ItemCost" "1775" "ItemShopTags" "unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "mom;mask of madness" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "10" "bonus_attack_speed" "10" "lifesteal_percent" "24" "creep_lifesteal_reduction_pct" "50" "berserk_bonus_attack_speed" "110" "berserk_bonus_movement_speed" "30" "berserk_armor_reduction" "8" "berserk_duration" "6.0" } } //================================================================================================================= // Recipe: Diffusal Blade //================================================================================================================= "item_recipe_diffusal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "173" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1050" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_diffusal_blade" "ItemRequirements" { "01" "item_blade_of_alacrity;item_robe" } } //================================================================================================================= // Diffusal Blade //================================================================================================================= "item_diffusal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "174" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilitySharedCooldown" "diffusal" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "2500" "ItemShopTags" "agi;int;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "diffusal blade 1" "ItemPermanent" "1" "UpgradesItems" "item_diffusal_blade" "UpgradeRecipe" "item_recipe_diffusal_blade" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_agility" "15" "bonus_intellect" "10" "feedback_mana_burn" "40" "feedback_mana_burn_illusion_melee" "8" "feedback_mana_burn_illusion_ranged" "8" "purge_rate" "5" "purge_root_duration" "3.0" "purge_slow_duration" "4.0" "damage_per_burn" "1" } } //================================================================================================================= // Recipe: Ethereal Blade //================================================================================================================= "item_recipe_ethereal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "175" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ethereal_blade" "ItemRequirements" { "01" "item_kaya;item_ghost*" } } //================================================================================================================= // Ethereal Blade //================================================================================================================= "item_ethereal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "176" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY | DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_MAGIC_IMMUNE_ALLIES" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "22.0" "AbilitySharedCooldown" "ethereal" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "4650" "ItemShopTags" "agi;str;int;hard_to_tag" "ItemQuality" "epic" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemAliases" "eb;ethereal blade;eblade" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_agility" "5" "bonus_strength" "5" "bonus_intellect" "25" "spell_amp" "12" "spell_lifesteal_amp" "24" "mana_regen_multiplier" "75" "blast_movement_slow" "-80" "duration" "4.0" "blast_agility_multiplier" "1.5" "blast_damage_base" "50" "duration_ally" "4.0" "ethereal_damage_bonus" "-40" "projectile_speed" "1275" } } //================================================================================================================= // Recipe: Soul Ring //================================================================================================================= "item_recipe_soul_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "177" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "400" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_soul_ring" "ItemRequirements" { "01" "item_ring_of_protection;item_gauntlets;item_gauntlets" } } //================================================================================================================= // Soul Ring //================================================================================================================= "item_soul_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "178" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "855" "ItemShopTags" "regen_health;boost_mana" "ItemQuality" "common" "ItemAliases" "soul ring" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "6" "bonus_armor" "2" "health_sacrifice" "170" "mana_gain" "150" "duration" "10" } } //================================================================================================================= // Recipe: Arcane Boots //================================================================================================================= "item_recipe_arcane_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "179" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_arcane_boots" "ItemRequirements" { "01" "item_boots*;item_energy_booster" } } //================================================================================================================= // Arcane Boots //================================================================================================================= "item_arcane_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "180" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "55.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "1300" "ItemShopTags" "move_speed;boost_mana;mana_pool" "ItemQuality" "rare" "ItemAliases" "mana;mb;arcane boots" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemAlertable" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement" "45" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } "03" { "var_type" "FIELD_INTEGER" "replenish_amount" "175" } "04" { "var_type" "FIELD_INTEGER" "replenish_radius" "1200" } } } //================================================================================================================= // Recipe: Octarine Core //================================================================================================================= "item_recipe_octarine_core" { // General //------------------------------------------------------------------------------------------------------------- "ID" "228" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_octarine_core" "ItemRequirements" { "01" "item_aether_lens;item_soul_booster" } } //================================================================================================================= // Octarine Core //================================================================================================================= "item_octarine_core" { // General //------------------------------------------------------------------------------------------------------------- "ID" "235" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5275" "ItemShopTags" "move_speed;boost_mana;mana_pool" "ItemQuality" "rare" "ItemAliases" "mana;mb;octarine core" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_cooldown" "25" "cast_range_bonus" "225" "bonus_health" "425" "bonus_mana" "725" "bonus_mana_regen" "3.0" } } //================================================================================================================= // Orb of Venom //================================================================================================================= "item_orb_of_venom" { // General //------------------------------------------------------------------------------------------------------------- "ID" "181" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "275" "ItemShopTags" "hard_to_tag" "ItemQuality" "component" "ItemAliases" "oov;orb of venom" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "poison_damage_melee" "2.0" } "02" { "var_type" "FIELD_FLOAT" "poison_damage_range" "2.0" } "03" { "var_type" "FIELD_INTEGER" "poison_movement_speed_melee" "-13" } "04" { "var_type" "FIELD_INTEGER" "poison_movement_speed_range" "-4" } "05" { "var_type" "FIELD_FLOAT" "poison_duration" "2.0" } } } //================================================================================================================= // Blight Stone //================================================================================================================= "item_blight_stone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "240" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "300" "ItemShopTags" "hard_to_tag" "ItemQuality" "component" "ItemAliases" "blight stone" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "corruption_armor" "-2" } "02" { "var_type" "FIELD_FLOAT" "corruption_duration" "8.0" } } } //================================================================================================================= // Recipe: Orb of Corrosion //================================================================================================================= "item_recipe_orb_of_corrosion" { // General //------------------------------------------------------------------------------------------------------------- "ID" "640" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_orb_of_corrosion" "ItemRequirements" { "01" "item_orb_of_venom;item_blight_stone;item_fluffy_hat" } } //================================================================================================================= // Orb of Corrosion //================================================================================================================= "item_orb_of_corrosion" { // General //------------------------------------------------------------------------------------------------------------- "ID" "569" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "ItemCost" "925" "ItemShopTags" "hard_to_tag" "ItemQuality" "rare" "ItemAliases" "ooc;orb of corrosion;corosion;corossion" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "armor" "3" } "02" { "var_type" "FIELD_INTEGER" "slow_melee" "13" } "03" { "var_type" "FIELD_INTEGER" "slow_range" "4" } "04" { "var_type" "FIELD_INTEGER" "damage" "3" } "05" { "var_type" "FIELD_FLOAT" "duration" "3" } "06" { "var_type" "FIELD_INTEGER" "health_bonus" "150" } } } //================================================================================================================= // Recipe: Falcon Blade //================================================================================================================= "item_recipe_falcon_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "599" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_falcon_blade" "ItemRequirements" { "01" "item_fluffy_hat;item_sobi_mask;item_blades_of_attack" } } //================================================================================================================= // Falcon Blade //================================================================================================================= "item_falcon_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "596" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1125" "ItemShopTags" "hard_to_tag" "ItemQuality" "rare" "ItemAliases" "fb;falcon blade" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "200" "bonus_mana_regen" "1.8" "bonus_damage" "14" } } //================================================================================================================= // Recipe: Mage Slayer //================================================================================================================= "item_recipe_mage_slayer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "597" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "400" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mage_slayer" "ItemRequirements" { "01" "item_cloak;item_oblivion_staff" } } //================================================================================================================= // Mage Slayer //================================================================================================================= "item_mage_slayer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "598" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2400" "ItemShopTags" "hard_to_tag" "ItemQuality" "rare" "ItemAliases" "mage slayer;ms" "ShouldBeInitiallySuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_magical_armor" "25" "bonus_attack_speed" "20" "bonus_damage" "20" "spell_amp_debuff" "35" "bonus_mana_regen" "2" "duration" "6" "bonus_intellect" "10" } } //================================================================================================================= // Recipe: Ancient Janggo of Endurance //================================================================================================================= "item_recipe_ancient_janggo" { // General //------------------------------------------------------------------------------------------------------------- "ID" "184" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ancient_janggo" "ItemRequirements" { "01" "item_belt_of_strength;item_robe;item_wind_lace" } } //================================================================================================================= // Ancient Janggo of Endurance //================================================================================================================= "item_ancient_janggo" { // General //------------------------------------------------------------------------------------------------------------- "ID" "185" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "ItemPermanent" "1" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" //"SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1650" "ItemShopTags" "str;agi;int;damage;move_speed;attack_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "drum of endurance" "ItemInitialCharges" "8" "ItemDisplayCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" //"ItemRequiresCharges" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "aura_movement_speed" "20" "bonus_str" "7" "bonus_int" "7" "bonus_attack_speed_pct" "45" "bonus_movement_speed_pct" "13" "duration" "6" "radius" "1200" "charges_tooltip" "8" } } //================================================================================================================= // Recipe: Marching Boots //================================================================================================================= "item_recipe_boots_of_bearing" { // General //------------------------------------------------------------------------------------------------------------- "ID" "930" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_boots_of_bearing" "ItemRequirements" { "01" "item_tranquil_boots;item_ancient_janggo" } } //================================================================================================================= // Ancient Janggo of Endurance //================================================================================================================= "item_boots_of_bearing" { // General //------------------------------------------------------------------------------------------------------------- "ID" "931" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "ItemPermanent" "1" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" //"SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4075" "ItemShopTags" "str;agi;int;damage;move_speed;attack_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "marching boots" "ItemInitialCharges" "8" "ItemDisplayCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" //"ItemRequiresCharges" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "aura_movement_speed" "20" "bonus_str" "8" "bonus_int" "8" "bonus_attack_speed_pct" "50" "bonus_movement_speed_pct" "15" "duration" "6" "radius" "1200" "charges_tooltip" "8" "bonus_movement_speed" "65" "bonus_health_regen" "15" "recharge_time" "180" "bonus_ms_duration" "1.5" } } //================================================================================================================= // Recipe: Medallion of Courage //================================================================================================================= "item_recipe_medallion_of_courage" { // General //------------------------------------------------------------------------------------------------------------- "ID" "186" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_medallion_of_courage" "ItemRequirements" { "01" "item_chainmail;item_sobi_mask;item_blight_stone" } } //================================================================================================================= // Medallion of Courage //================================================================================================================= "item_medallion_of_courage" { // General //------------------------------------------------------------------------------------------------------------- "ID" "187" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1000" "AbilityCooldown" "12.0" "AbilitySharedCooldown" "medallion" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1025" "ItemShopTags" "armor;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "medallion of courage" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen_pct" "1.5" } "03" { "var_type" "FIELD_INTEGER" "armor_reduction" "-5" } "04" { "var_type" "FIELD_INTEGER" "duration" "12" } } } //================================================================================================================= // Recipe: Solar Crest //================================================================================================================= "item_recipe_solar_crest" { // General //------------------------------------------------------------------------------------------------------------- "ID" "227" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_solar_crest" "ItemRequirements" { "01" "item_medallion_of_courage*;item_crown;item_wind_lace" } } //================================================================================================================= // Solar Crest //================================================================================================================= "item_solar_crest" { // General //------------------------------------------------------------------------------------------------------------- "ID" "229" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1000" "AbilityCooldown" "12.0" "AbilitySharedCooldown" "medallion" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2625" "ItemShopTags" "armor;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "solar crest" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "03" { "var_type" "FIELD_INTEGER" "self_movement_speed" "20" } "04" { "var_type" "FIELD_FLOAT" "bonus_mana_regen_pct" "1.75" } "05" { "var_type" "FIELD_INTEGER" "target_movement_speed" "10" } "06" { "var_type" "FIELD_INTEGER" "target_attack_speed" "50" } "07" { "var_type" "FIELD_INTEGER" "duration" "12" } } } //================================================================================================================= // Smoke of Deceit //================================================================================================================= "item_smoke_of_deceit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "188" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "Model" "models/props_gameplay/smoke.vmdl" "Effect" "particles/generic_gameplay/dropped_smoke.vpcf" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "1.0" "AbilityCastRange" "1200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "smoke of deceit" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDisplayCharges" "1" "ItemStockInitial" "2" "ItemStockMax" "3" "ItemStockTime" "420.0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemSupport" "1" "ItemAlertable" "1" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "application_radius" "1200" } "02" { "var_type" "FIELD_INTEGER" "visibility_radius" "1025" } "03" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "15" } "04" { "var_type" "FIELD_FLOAT" "duration" "35.0" } } } //================================================================================================================= // Tome of Knowledge //================================================================================================================= "item_tome_of_knowledge" { // General //------------------------------------------------------------------------------------------------------------- "ID" "257" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "FightRecapLevel" "1" "Model" "models/gameplay/attrib_tome_xp.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "75" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "tome of knowledge" "ItemStackable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" "AbilitySharedCooldown" "tome" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDisplayCharges" "1" "ItemStockMax" "3" "ItemStockInitial" "0" "ItemStockTime" "600.0" "ItemInitialStockTime" "690.0" "BonusDelayedStockCount" "0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemSupport" "1" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "xp_bonus" "700" } "02" { "var_type" "FIELD_INTEGER" "xp_per_use" "135" } } } //================================================================================================================= // Recipe: Veil of Discord //================================================================================================================= "item_recipe_veil_of_discord" { // General //------------------------------------------------------------------------------------------------------------- "ID" "189" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_veil_of_discord" "ItemRequirements" { "01" "item_ring_of_basilius;item_crown" } } //================================================================================================================= // Veil of discord //================================================================================================================= "item_veil_of_discord" { // General //------------------------------------------------------------------------------------------------------------- "ID" "190" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_AOE | DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DONT_CANCEL_MOVEMENT" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "22" "AbilityCastRange" "1200" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "1525" "ItemShopTags" "int;armor;regen_health;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "vod;veil of discord" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "02" { "var_type" "FIELD_FLOAT" "aura_mana_regen" "1.75" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "1200" } "04" { "var_type" "FIELD_INTEGER" "spell_amp" "18" } "05" { "var_type" "FIELD_INTEGER" "debuff_radius" "600" } "06" { "var_type" "FIELD_FLOAT" "resist_debuff_duration" "16.0" } } } //================================================================================================================= // Recipe: Veil of Discord //================================================================================================================= "item_recipe_revenants_brooch" { // General //------------------------------------------------------------------------------------------------------------- "ID" "910" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_revenants_brooch" "ItemRequirements" { "01" "item_witch_blade;item_mystic_staff" } } //================================================================================================================= // Veil of discord //================================================================================================================= "item_revenants_brooch" { // General //------------------------------------------------------------------------------------------------------------- "ID" "911" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "300" "ItemCost" "6200" "ItemShopTags" "int;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "staff;misery;sm" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intellect" "45" "bonus_attack_speed" "40" "bonus_armor" "8" "projectile_speed" "300" "int_damage_multiplier" "1" "slow" "25" "slow_duration" "4" "mana_cost" "100" "damage_penalty" "0" "passive_cooldown" "9" "number_of_attacks" "5" "active_duration" "15" } } //================================================================================================================= // Recipe: Guardian Greaves //================================================================================================================= "item_recipe_guardian_greaves" { // General //------------------------------------------------------------------------------------------------------------- "ID" "230" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1450" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_guardian_greaves" "ItemRequirements" { "01" "item_mekansm;item_arcane_boots;item_buckler" } } //================================================================================================================= // Guardian Greaves //================================================================================================================= "item_guardian_greaves" { // General //------------------------------------------------------------------------------------------------------------- "ID" "231" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "4950" "ItemShopTags" "int;armor;regen_health;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "guardian greaves" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ItemAlertable" "1" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_movement" "50" "bonus_mana" "250" "bonus_armor" "4" "aura_health_regen" "2.5" "aura_armor" "3" "aura_health_regen_bonus" "18.5" "aura_armor_bonus" "10" "aura_bonus_threshold" "25" "aura_radius" "1200" "replenish_health" "350" "replenish_mana" "200" "replenish_radius" "1200" "max_health_pct_heal_amount" "0" } } //================================================================================================================= // Recipe: Rod of Atos //================================================================================================================= "item_recipe_rod_of_atos" { // General //------------------------------------------------------------------------------------------------------------- "ID" "205" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "850" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_rod_of_atos" "ItemRequirements" { "01" "item_staff_of_wizardry;item_crown;item_crown" } } //================================================================================================================= // Rod of Atos //================================================================================================================= "item_rod_of_atos" { // General //------------------------------------------------------------------------------------------------------------- "ID" "206" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" "AbilitySharedCooldown" "atos" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "18" "AbilityCastRange" "1100" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "2750" "ItemShopTags" "int;regen_health" "ItemQuality" "rare" "ItemAliases" "rod of atos" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "24" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "12" } "03" { "var_type" "FIELD_INTEGER" "bonus_agility" "12" } "04" { "var_type" "FIELD_FLOAT" "duration" "2.0" } } } //================================================================================================================= // Recipe: Iron Talon //================================================================================================================= "item_recipe_iron_talon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "238" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/recipe.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1" "ItemShopTags" "" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_iron_talon" "ItemRequirements" { "01" "item_quelling_blade*;item_ring_of_protection" } } //================================================================================================================= // Iron Talon //================================================================================================================= "item_iron_talon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "239" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_PREFER_ENEMIES" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" "AbilityCooldown" "25.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "301" "ItemShopTags" "damage" "ItemQuality" "common" "ItemAliases" "quelling blade" "ItemPurchasable" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "15" } "02" { "var_type" "FIELD_INTEGER" "quelling_range_tooltip" "350" } "03" { "var_type" "FIELD_INTEGER" "cast_range_ward" "450" } "04" { "var_type" "FIELD_INTEGER" "creep_damage_pct" "40" } "05" { "var_type" "FIELD_FLOAT" "bonus_armor" "2" } "06" { "var_type" "FIELD_INTEGER" "alternative_cooldown" "4" } } } //================================================================================================================= // Recipe: Abyssal Blade //================================================================================================================= "item_recipe_abyssal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "207" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1550" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_abyssal_blade" "ItemRequirements" { "01" "item_basher;item_vanguard" } } //================================================================================================================= // Abyssal Blade //================================================================================================================= "item_abyssal_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "208" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES_STRONG" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "35" "AbilityCastRange" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "6250" "ItemShopTags" "damage;str;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "abyssal blade" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "03" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "10" } "04" { "var_type" "FIELD_INTEGER" "block_damage_melee" "70" } "05" { "var_type" "FIELD_INTEGER" "block_damage_ranged" "35" } "06" { "var_type" "FIELD_INTEGER" "block_chance" "60" } "07" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "08" { "var_type" "FIELD_INTEGER" "bash_chance_melee" "25" } "09" { "var_type" "FIELD_INTEGER" "bash_chance_ranged" "10" } "10" { "var_type" "FIELD_FLOAT" "bash_duration" "1.5" } "11" { "var_type" "FIELD_FLOAT" "bash_cooldown" "2.3" } "12" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "120" } "13" { "var_type" "FIELD_FLOAT" "stun_duration" "2.0" } } } //================================================================================================================= // Recipe: Heaven's Halberd //================================================================================================================= "item_recipe_heavens_halberd" { // General //------------------------------------------------------------------------------------------------------------- "ID" "209" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_heavens_halberd" "ItemRequirements" { "01" "item_sange;item_talisman_of_evasion" } } //================================================================================================================= // Heaven's Halberd //================================================================================================================= "item_heavens_halberd" { // General //------------------------------------------------------------------------------------------------------------- "ID" "210" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "18" "AbilityCastRange" "650" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "3550" "ItemShopTags" "str;damage;evasion" "ItemQuality" "artifact" "ItemAliases" "heaven's halberd" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_evasion" "20" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "20" } "03" { "var_type" "FIELD_FLOAT" "disarm_range" "5.0" } "04" { "var_type" "FIELD_FLOAT" "disarm_melee" "3.0" } "05" { "var_type" "FIELD_INTEGER" "status_resistance" "16" } "06" { "var_type" "FIELD_INTEGER" "hp_regen_amp" "20" } } } //================================================================================================================= // Recipe: Ring of Aquila //================================================================================================================= "item_recipe_ring_of_aquila" { // General //------------------------------------------------------------------------------------------------------------- "ID" "211" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemPurchasable" "0" "IsObsolete" "1" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ring_of_aquila" "ItemRequirements" { //"01" "item_wraith_band;item_ring_of_basilius" } } //================================================================================================================= // Ring of Aquila //================================================================================================================= "item_ring_of_aquila" { // General //------------------------------------------------------------------------------------------------------------- "ID" "212" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE" "AbilityCastRange" "1200" "Model" "models/props_gameplay/neutral_box.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemAliases" "roa;ring of aquila" "ItemShareability" "" "ActiveDescriptionLine" "2" "ItemPurchasable" "0" "ShouldBeSuggested" "0" "ItemSellable" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "3" "bonus_strength" "3" "bonus_agility" "9" "bonus_intellect" "3" "aura_radius" "1200" "aura_mana_regen" "1.25" "aura_bonus_armor" "2" } } //================================================================================================================= // Recipe: Tranquil Boots //================================================================================================================= "item_recipe_tranquil_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "213" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_tranquil_boots" "ItemRequirements" { "01" "item_boots;item_wind_lace;item_ring_of_regen" } } //================================================================================================================= // Tranquil Boots //================================================================================================================= "item_tranquil_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "214" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "925" "ItemShopTags" "move_speed;regen_health;armor" "ItemQuality" "rare" "ItemAliases" "tranquil boots" "ItemHideCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "65" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "0" } "03" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "14" } "04" { "var_type" "FIELD_FLOAT" "heal_duration" "20.0" } "05" { "var_type" "FIELD_INTEGER" "heal_amount" "250" } "06" { "var_type" "FIELD_FLOAT" "heal_interval" "0.334" } "07" { "var_type" "FIELD_INTEGER" "break_time" "13" } "08" { "var_type" "FIELD_INTEGER" "break_count" "1" } "09" { "var_type" "FIELD_INTEGER" "break_threshold" "20" } "10" { "var_type" "FIELD_INTEGER" "broken_movement_speed" "40" } } } //================================================================================================================= // Shadow Amulet //================================================================================================================= "item_shadow_amulet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "215" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_MOVEMENT" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCooldown" "7.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" "ItemAliases" "shadow amulet" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "fade_time" "1.25" "fade_duration" "15" } } //================================================================================================================= // Recipe: Glimmer Cape //================================================================================================================= "item_recipe_glimmer_cape" { // General //------------------------------------------------------------------------------------------------------------- "ID" "253" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_glimmer_cape" "ItemRequirements" { "01" "item_shadow_amulet*;item_cloak" } } //================================================================================================================= // Glimmer Cape //================================================================================================================= "item_glimmer_cape" { // General //------------------------------------------------------------------------------------------------------------- "ID" "254" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_MOVEMENT" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCooldown" "14.0" "AbilityManaCost" "90" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1950" "ItemShopTags" "" "ItemQuality" "rare" "ItemAliases" "glimmer cape" "ShouldBeSuggested" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "20" } "02" { "var_type" "FIELD_FLOAT" "fade_delay" "0.5" } "03" { "var_type" "FIELD_INTEGER" "active_magical_armor" "50" } "04" { "var_type" "FIELD_FLOAT" "duration" "5" } "05" { "var_type" "FIELD_FLOAT" "building_duration_limit" "180" } } } //================================================================================================================ //================================================================================================================ //================================================================================================================ //================================================================================================================ //================================================================================================================= // RiverPainter //================================================================================================================= "item_river_painter" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1021" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17022" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter2 //================================================================================================================= "item_river_painter2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1022" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17023" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter3 //================================================================================================================= "item_river_painter3" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1023" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17024" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter4 //================================================================================================================= "item_river_painter4" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1024" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17025" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter5 //================================================================================================================= "item_river_painter5" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1025" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17026" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter6 //================================================================================================================= "item_river_painter6" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1026" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17027" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // RiverPainter7 //================================================================================================================= "item_river_painter7" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1027" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "IsObsolete" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" "AbilityCastPoint" "0.0" "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemQuality" "component" "ItemAliases" "paint" "ItemStockMax" "1" "ItemStockInitial" "1" "ItemStackable" "1" "ItemStockTime" "900.0" "AssociatedConsumable" "17047" "EventID" "14" "PlayerSpecificCooldown" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "paint_duration" "900.0" } } } //================================================================================================================= // Mutation Tombstone //================================================================================================================= "item_mutation_tombstone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1028" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityName" "item_tombstone" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "Model" "models/props_gameplay/tombstoneb01.vmdl" "PingOverrideText" "DOTA_Chat_Tombstone_Pinged" "precache" { "particle_folder" "particles/units/heroes/hero_morphling" } // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "100" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemPurchasable" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemCastOnPickup" "1" "ItemKillable" "0" } "item_super_blink" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1029" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityName" "item_super_blink" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "blink_range" "1200" } "02" { "var_type" "FIELD_INTEGER" "blink_range_clamp" "960" } } } "item_pocket_tower" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1030" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityName" "item_pocket_tower" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "ItemPurchasable" "0" "IsTempestDoubleClonable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCastPoint" "0.0" "AbilityCooldown" "15.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- } "item_pocket_roshan" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1032" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "60.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemQuality" "rare" "ItemPurchasable" "0" "IsTempestDoubleClonable" "0" "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "summon_duration" "60" } } } //================================================================================================================= // Keen Optic //================================================================================================================= "item_keen_optic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "287" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/neutral_box.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "cast_range_bonus" "75" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "1.25" } } } //================================================================================================================= // Grove Bow //================================================================================================================= "item_grove_bow" { // General //------------------------------------------------------------------------------------------------------------- "ID" "288" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "Model" "models/props_gameplay/neutral_box.vmdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "attack_range_bonus" "100" "attack_speed_bonus" "20" "magic_resistance_reduction" "15" "debuff_duration" "6" } } //================================================================================================================= // Quickening Charm //================================================================================================================= "item_quickening_charm" { // General //------------------------------------------------------------------------------------------------------------- "ID" "289" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_cooldown" "10" "bonus_health_regen" "10" } } //================================================================================================================= // Philosopher's Stone //================================================================================================================= "item_philosophers_stone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "290" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_gpm" "80" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "200" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "-30" } } } //================================================================================================================= // Force Boots //================================================================================================================= "item_force_boots" { // General //------------------------------------------------------------------------------------------------------------- "ID" "291" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH | DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "750" "AbilityCooldown" "8.0" "AbilityManaCost" "75" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "DisplayOverheadAlertOnReceived" "0" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "115" } "02" { "var_type" "FIELD_INTEGER" "push_length" "750" } "03" { "var_type" "FIELD_FLOAT" "push_duration" "0.5" } "04" { "var_type" "FIELD_INTEGER" "hp_regen" "30" } } } //================================================================================================================= // Desolator 2 Stygian //================================================================================================================= "item_desolator_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "292" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "60" } "02" { "var_type" "FIELD_INTEGER" "corruption_armor" "-10" } "03" { "var_type" "FIELD_FLOAT" "corruption_duration" "7.0" } } } //================================================================================================================= // Phoenix Ash //================================================================================================================= "item_phoenix_ash" { // General //------------------------------------------------------------------------------------------------------------- "ID" "293" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "1" "ItemPermanent" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_pct" "50" } } } //================================================================================================================= // Seer Stone //================================================================================================================= "item_seer_stone" { // General //------------------------------------------------------------------------------------------------------------- "ID" "294" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE" "FightRecapLevel" "1" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "cast_range_bonus" "350" } "02" { "var_type" "FIELD_INTEGER" "vision_bonus" "350" } "03" { "var_type" "FIELD_INTEGER" "mana_regen" "10" } "04" { "var_type" "FIELD_INTEGER" "radius" "800" } "05" { "var_type" "FIELD_FLOAT" "duration" "6" } } } //================================================================================================================= // Greater Mango //================================================================================================================= "item_greater_mango" { // General //------------------------------------------------------------------------------------------------------------- "ID" "295" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "Model" "models/props_gameplay/mango.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemStackable" "0" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" } //================================================================================================================= // Elixer //================================================================================================================= "item_elixer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "302" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/salve.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health" "500" } "02" { "var_type" "FIELD_INTEGER" "mana" "250" } "03" { "var_type" "FIELD_FLOAT" "duration" "6" } } } //================================================================================================================= // Vampire Fangs //================================================================================================================= "item_vampire_fangs" { // General //------------------------------------------------------------------------------------------------------------- "ID" "297" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "attack_lifesteal" "15" } "02" { "var_type" "FIELD_INTEGER" "spell_lifesteal" "6" } "03" { "var_type" "FIELD_INTEGER" "night_vision" "300" } } } //================================================================================================================= // Arcanist's Armor //================================================================================================================= "item_force_field" { // General //------------------------------------------------------------------------------------------------------------- "ID" "829" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityCooldown" "20" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_aoe_radius" "1200" "bonus_aoe_armor" "5" "self_armor" "5" "self_mres" "20" "bonus_aoe_mres" "20" "active_reflection_pct" "40" } } //================================================================================================================= // Force Field //================================================================================================================= "item_black_powder_bag" { // General //------------------------------------------------------------------------------------------------------------- "ID" "834" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "AbilityCooldown" "20" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_armor" "7" "radius" "400" "damage" "250" "blind_duration" "2" "blind_pct" "100" } } //================================================================================================================= // Force Field //================================================================================================================= "item_mechanical_arm" { // General //------------------------------------------------------------------------------------------------------------- "ID" "849" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bat" "0.1" } "02" { "var_type" "FIELD_INTEGER" "stun_chance" "10" } "03" { "var_type" "FIELD_FLOAT" "stun_duration" "0.1" } } } //================================================================================================================= // Craggy Coat //================================================================================================================= "item_craggy_coat" { // General //------------------------------------------------------------------------------------------------------------- "ID" "298" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "armor_bonus" "12" } "02" { "var_type" "FIELD_INTEGER" "attack_speed" "-35" } "03" { "var_type" "FIELD_INTEGER" "bonus_health" "150" } } } //================================================================================================================= // Greater Faerie Fire //================================================================================================================= "item_greater_faerie_fire" { // General //------------------------------------------------------------------------------------------------------------- "ID" "299" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "AbilityCooldown" "10.0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "20" } "02" { "var_type" "FIELD_INTEGER" "hp_restore" "250" } } } //================================================================================================================= // Timeless Relic //================================================================================================================= "item_timeless_relic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "300" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "debuff_amp" "20" "spell_amp" "15" } } //================================================================================================================= // Mirror Shield //================================================================================================================= "item_mirror_shield" { // General //------------------------------------------------------------------------------------------------------------- "ID" "301" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "reflect_chance" "75" } "02" { "var_type" "FIELD_INTEGER" "all_stats" "10" } "03" { "var_type" "FIELD_FLOAT" "block_cooldown" "12.0" } } } //================================================================================================================= // Recipe: Ironwood Tree //================================================================================================================= "item_recipe_ironwood_tree" { // General //------------------------------------------------------------------------------------------------------------- "ID" "303" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ironwood_tree" } //================================================================================================================= // Ironwood Tree //================================================================================================================= "item_ironwood_tree" { // General //------------------------------------------------------------------------------------------------------------- "ID" "304" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCooldown" "15.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "151" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "6" } "02" { "var_type" "FIELD_INTEGER" "tree_duration" "20" } } } //================================================================================================================= // Mango Tree //================================================================================================================= "item_mango_tree" { // General //------------------------------------------------------------------------------------------------------------- "ID" "328" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemIsNeutralDrop" "1" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemInitialCharges" "1" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "seconds" "60" } } } //================================================================================================================= // Royal Jelly //================================================================================================================= "item_royal_jelly" { // General //------------------------------------------------------------------------------------------------------------- "ID" "305" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemInitialCharges" "2" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "health_regen" "2.25" } "02" { "var_type" "FIELD_FLOAT" "mana_regen" "1.25" } } } //================================================================================================================= // Pupil's Gift //================================================================================================================= "item_pupils_gift" { // General //------------------------------------------------------------------------------------------------------------- "ID" "306" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "secondary_stats" "15" } } //================================================================================================================= // Tome of Aghanim //================================================================================================================= "item_tome_of_aghanim" { // General //------------------------------------------------------------------------------------------------------------- "ID" "307" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "1" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration_minutes" "3" } } } //================================================================================================================= // Repair Kit //================================================================================================================= "item_repair_kit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "308" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_BUILDING" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemQuality" "consumable" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "AbilityCooldown" "60.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "30" } "02" { "var_type" "FIELD_INTEGER" "heal_percent" "40" } "03" { "var_type" "FIELD_INTEGER" "armor_bonus" "10" } "04" { "var_type" "FIELD_INTEGER" "hp_regen" "25" } } } //================================================================================================================= // Mind Breaker //================================================================================================================= "item_mind_breaker" { // General //------------------------------------------------------------------------------------------------------------- "ID" "309" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "AbilityCooldown" "12.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "magic_damage" "25" } "02" { "var_type" "FIELD_INTEGER" "attack_speed" "25" } "03" { "var_type" "FIELD_FLOAT" "duration" "1.75" } } } //================================================================================================================= // Third Eye //================================================================================================================= "item_third_eye" { // General //------------------------------------------------------------------------------------------------------------- "ID" "310" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "IsTempestDoubleClonable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "truesight_radius" "500" } "02" { "var_type" "FIELD_INTEGER" "bonus_vision" "300" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "7" } } } //================================================================================================================= // Spell Prism //================================================================================================================= "item_spell_prism" { // General //------------------------------------------------------------------------------------------------------------- "ID" "311" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_cooldown" "12" "bonus_all_stats" "8" "mana_regen" "4" } } //================================================================================================================= // Prince's Knife //================================================================================================================= "item_princes_knife" { // General //------------------------------------------------------------------------------------------------------------- "ID" "325" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "10.0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "1.5" } "02" { "var_type" "FIELD_INTEGER" "movespeed" "140" } "03" { "var_type" "FIELD_INTEGER" "projectile_bonus" "60" } } } //================================================================================================================= // Witless Shako //================================================================================================================= "item_witless_shako" { // General //------------------------------------------------------------------------------------------------------------- "ID" "330" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "max_health" "1350" } "02" { "var_type" "FIELD_INTEGER" "max_mana" "400" } } } //================================================================================================================= // Imp Claw //================================================================================================================= "item_imp_claw" { // General //------------------------------------------------------------------------------------------------------------- "ID" "334" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "crit_multiplier" "130" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "26" } } } //================================================================================================================= // Flicker //================================================================================================================= "item_flicker" { // General //------------------------------------------------------------------------------------------------------------- "ID" "335" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "5.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "max_range" "600" } "02" { "var_type" "FIELD_INTEGER" "min_range" "200" } "03" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "35" } } } //================================================================================================================= // Spy Gadget (Telescope) //================================================================================================================= "item_spy_gadget" { // General //------------------------------------------------------------------------------------------------------------- "ID" "336" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "scan_cooldown_reduction" "50" "attack_range" "100" "cast_range" "100" "aura_range" "1200" } } //================================================================================================================= // Spider Legs //================================================================================================================= "item_spider_legs" { // General //------------------------------------------------------------------------------------------------------------- "ID" "326" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "12.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_movement_speed" "25" "turn_rate" "50" "bonus_movement_speed_active" "18" "duration" "3.5" } } //================================================================================================================= // Helm of the Undying //================================================================================================================= "item_helm_of_the_undying" { // General //------------------------------------------------------------------------------------------------------------- "ID" "327" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "02" { "var_type" "FIELD_FLOAT" "duration" "5" } } } //================================================================================================================= // Recipe: Vambrace //================================================================================================================= "item_recipe_vambrace" { // General //------------------------------------------------------------------------------------------------------------- "ID" "329" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_vambrace" } //================================================================================================================= // Vambrace //================================================================================================================= "item_vambrace" { // General //------------------------------------------------------------------------------------------------------------- "ID" "331" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "bracer" "ItemIsNeutralDrop" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_primary_stat" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_secondary_stat" "5" } "03" { "var_type" "FIELD_INTEGER" "bonus_spell_amp" "6" } "04" { "var_type" "FIELD_INTEGER" "bonus_magic_resistance" "10" } "05" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "10" } } } //================================================================================================================= // Horizon //================================================================================================================= "item_horizon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "312" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1600" "AbilityCooldown" "10.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "knockback_distance" "250" } "02" { "var_type" "FIELD_FLOAT" "knockback_duration" "1" } } } //================================================================================================================= // Fusion Rune //================================================================================================================= "item_fusion_rune" { // General //------------------------------------------------------------------------------------------------------------- "ID" "313" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "120.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "50" } } } //================================================================================================================= // //================================================================================================================= "item_ocean_heart" { // General //------------------------------------------------------------------------------------------------------------- "ID" "354" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "all_stats" "5" } "02" { "var_type" "FIELD_FLOAT" "water_hp_regen" "10" } "03" { "var_type" "FIELD_FLOAT" "water_mp_regen" "5" } } } //================================================================================================================= // //================================================================================================================= "item_broom_handle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "355" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "melee_attack_range" "50" "bonus_damage" "8" "bonus_armor" "4" } } //================================================================================================================= // //================================================================================================================= "item_trusty_shovel" { // General //------------------------------------------------------------------------------------------------------------- "ID" "356" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_IGNORE_BACKSWING" "AbilityCastAnimation" "ACT_DOTA_GENERIC_CHANNEL_1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCooldown" "50.0" "AbilityCastPoint" "0.1" "AbilityChannelTime" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "75" "chance_bounty_rune" "16" "chance_other_item" "28" } } //================================================================================================================= // //================================================================================================================= "item_nether_shawl" { // General //------------------------------------------------------------------------------------------------------------- "ID" "357" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_magic_resistance" "20" } "02" { "var_type" "FIELD_INTEGER" "bonus_spell_amp" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_armor" "2" } } } //================================================================================================================= // Dragon Scale //================================================================================================================= "item_dragon_scale" { // General //------------------------------------------------------------------------------------------------------------- "ID" "358" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "02" { "var_type" "FIELD_INTEGER" "bonus_hp_regen" "5" } "03" { "var_type" "FIELD_INTEGER" "damage_per_sec" "18" } "04" { "var_type" "FIELD_FLOAT" "duration" "3" } } } //================================================================================================================= // //================================================================================================================= "item_essence_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "359" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" "AbilityManaCost" "200" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_int" "6" "mp_regen" "2" "health_gain" "400" "health_gain_duration" "15" } } //================================================================================================================= // //================================================================================================================= "item_clumsy_net" { // General //------------------------------------------------------------------------------------------------------------- "ID" "360" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCooldown" "25.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "1.75" } "02" { "var_type" "FIELD_INTEGER" "all_stats" "5" } "03" { "var_type" "FIELD_INTEGER" "mana_regen" "2" } } } //================================================================================================================= // //================================================================================================================= "item_enchanted_quiver" { // General //------------------------------------------------------------------------------------------------------------- "ID" "361" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "4.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_attack_range" "350" "bonus_damage" "225" } } //================================================================================================================= // //================================================================================================================= "item_ninja_gear" { // General //------------------------------------------------------------------------------------------------------------- "ID" "362" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_agility" "25" "passive_movement_bonus" "25" "visibility_radius" "1025" "duration" "35.0" "bonus_movement_speed" "20" } } //================================================================================================================= // //================================================================================================================= "item_illusionsts_cape" { // General //------------------------------------------------------------------------------------------------------------- "ID" "363" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "attack_damage_aura" "6" } "02" { "var_type" "FIELD_FLOAT" "illusion_duration" "30" } "03" { "var_type" "FIELD_INTEGER" "outgoing_damage" "-50" } "04" { "var_type" "FIELD_INTEGER" "outgoing_damage_tooltip" "50" } "05" { "var_type" "FIELD_INTEGER" "incoming_damage" "100" } "06" { "var_type" "FIELD_INTEGER" "tooltip_incoming_damage_total_pct" "200" } "07" { "var_type" "FIELD_INTEGER" "bonus_agi" "14" } "08" { "var_type" "FIELD_INTEGER" "bonus_str" "14" } } } //================================================================================================================= // //================================================================================================================= "item_havoc_hammer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "364" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "10.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "12" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "12" } "03" { "var_type" "FIELD_INTEGER" "range" "400" } "04" { "var_type" "FIELD_INTEGER" "slow" "50" } "05" { "var_type" "FIELD_FLOAT" "slow_duration" "3" } "06" { "var_type" "FIELD_INTEGER" "angle" "360" } "07" { "var_type" "FIELD_FLOAT" "knockback_duration" "0.3" } "08" { "var_type" "FIELD_FLOAT" "knockback_distance" "250" } "09" { "var_type" "FIELD_INTEGER" "nuke_base_dmg" "175" } "10" { "var_type" "FIELD_FLOAT" "nuke_str_dmg" "1" } } } //================================================================================================================= // Magic Lamp //================================================================================================================= "item_panic_button" { // General //------------------------------------------------------------------------------------------------------------- "ID" "365" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "75.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "300" } "02" { "var_type" "FIELD_INTEGER" "heal" "300" } "03" { "var_type" "FIELD_FLOAT" "health_threshold" "20" } } } //================================================================================================================= // //================================================================================================================= "item_apex" { // General //------------------------------------------------------------------------------------------------------------- "ID" "366" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "primary_stat" "70" } } //================================================================================================================= // //================================================================================================================= "item_ballista" { // General //------------------------------------------------------------------------------------------------------------- "ID" "367" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "attack_range_bonus" "250" } "02" { "var_type" "FIELD_FLOAT" "knockback_distance" "50" } "03" { "var_type" "FIELD_FLOAT" "knockback_duration" "0.2" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "50" } } } //================================================================================================================= // //================================================================================================================= "item_woodland_striders" { // General //------------------------------------------------------------------------------------------------------------- "ID" "368" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "140" } "02" { "var_type" "FIELD_INTEGER" "bonus_hp_regen" "60" } "03" { "var_type" "FIELD_FLOAT" "active_duration" "3" } "04" { "var_type" "FIELD_FLOAT" "tree_duration" "15" } } } //================================================================================================================= // Recipe: Trident //================================================================================================================= "item_recipe_trident" { // General //------------------------------------------------------------------------------------------------------------- "ID" "275" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1" "ItemShopTags" "" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_trident" "ItemRequirements" { "01" "item_kaya;item_sange;item_yasha;" "02" "item_kaya_and_sange;item_yasha;" "03" "item_sange_and_yasha;item_kaya;" "04" "item_yasha_and_kaya;item_sange;" } } //================================================================================================================= // //================================================================================================================= "item_trident" { // General //------------------------------------------------------------------------------------------------------------- "ID" "369" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "30" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "30" } "04" { "var_type" "FIELD_INTEGER" "status_resistance" "30" } "05" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "06" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "10" } "07" { "var_type" "FIELD_INTEGER" "hp_regen_amp" "30" } "08" { "var_type" "FIELD_INTEGER" "mana_regen_multiplier" "30" } "09" { "var_type" "FIELD_INTEGER" "spell_amp" "30" } "10" { "var_type" "FIELD_INTEGER" "magic_damage_attack" "30" } } } //================================================================================================================= // //================================================================================================================= "item_demonicon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "370" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "80.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_intellect" "30" } "03" { "var_type" "FIELD_FLOAT" "summon_duration" "75" } } } //================================================================================================================= // Recipe: Fallen Sky //================================================================================================================= "item_recipe_fallen_sky" { // General //------------------------------------------------------------------------------------------------------------- "ID" "317" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1" "ItemShopTags" "" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "IsObsolete" "1" "Model" "models/props_gameplay/neutral_box.vmdl" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_fallen_sky" "ItemRequirements" { "01" "item_blink;item_meteor_hammer;" } } //================================================================================================================= // //================================================================================================================= "item_fallen_sky" { // General //------------------------------------------------------------------------------------------------------------- "ID" "371" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1200" "AbilityCooldown" "15.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4751" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "15" "bonus_intellect" "15" "bonus_health_regen" "15.0" "bonus_mana_regen" "10.0" "burn_dps_buildings" "60" "burn_dps_units" "60" "burn_duration" "6" "stun_duration" "2.0" "burn_interval" "1.0" "land_time" "1" "impact_radius" "315" "max_duration" "2.5" "impact_damage_buildings" "75" "impact_damage_units" "150" "blink_damage_cooldown" "3.0" } } //================================================================================================================= // //================================================================================================================= "item_pirate_hat" { // General //------------------------------------------------------------------------------------------------------------- "ID" "372" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_IGNORE_BACKSWING" "AbilityCastAnimation" "ACT_DOTA_GENERIC_CHANNEL_1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCooldown" "40.0" "AbilityCastPoint" "0.1" "AbilityChannelTime" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_attack_speed" "150" "bonus_ms" "15" } } //================================================================================================================= // //================================================================================================================= "item_dimensional_doorway" { // General //------------------------------------------------------------------------------------------------------------- "ID" "373" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "90.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" "Model" "models/props_gameplay/neutral_box.vmdl" } //================================================================================================================= // //================================================================================================================= "item_ex_machina" { // General //------------------------------------------------------------------------------------------------------------- "ID" "374" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" "AbilityManaCost" "350" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "20" } } } //================================================================================================================= // //================================================================================================================= "item_faded_broach" { // General //------------------------------------------------------------------------------------------------------------- "ID" "375" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana" "200" } "02" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "20" } } } //================================================================================================================= // //================================================================================================================= "item_paladin_sword" { // General //------------------------------------------------------------------------------------------------------------- "ID" "376" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "16" "bonus_lifesteal" "16" "bonus_spell_lifesteal" "8" "bonus_amp" "14" "creep_lifesteal_reduction_pct" "50" } } //================================================================================================================= // //================================================================================================================= "item_minotaur_horn" { // General //------------------------------------------------------------------------------------------------------------- "ID" "377" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "20" } "02" { "var_type" "FIELD_FLOAT" "duration" "2" } } } //================================================================================================================= // Orb of Destruction //================================================================================================================= "item_orb_of_destruction" { // General //------------------------------------------------------------------------------------------------------------- "ID" "378" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "armor_reduction" "4" } "02" { "var_type" "FIELD_INTEGER" "slow_melee" "25" } "03" { "var_type" "FIELD_INTEGER" "slow_range" "15" } "04" { "var_type" "FIELD_FLOAT" "duration" "4" } } } //================================================================================================================= // //================================================================================================================= "item_the_leveller" { // General //------------------------------------------------------------------------------------------------------------- "ID" "379" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_attack_speed" "40" "bonus_armor" "5" "demolish" "25" } } //================================================================================================================= // //================================================================================================================= "item_arcane_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "349" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_intelligence" "8" "bonus_armor" "2" "mana_restore" "75" "radius" "1200" } } //================================================================================================================= // //================================================================================================================= "item_titan_sliver" { // General //------------------------------------------------------------------------------------------------------------- "ID" "381" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "base_attack_damage" "20" } "02" { "var_type" "FIELD_INTEGER" "magic_resistance" "16" } "03" { "var_type" "FIELD_INTEGER" "status_resistance" "12" } } } //================================================================================================================= // //================================================================================================================= "item_chipped_vest" { // General //------------------------------------------------------------------------------------------------------------- "ID" "565" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "hp_regen" "4" } "02" { "var_type" "FIELD_INTEGER" "damage_return_hero" "30" } "03" { "var_type" "FIELD_INTEGER" "damage_return_creep" "20" } } } //================================================================================================================= // //================================================================================================================= "item_wizard_glass" { // General //------------------------------------------------------------------------------------------------------------- "ID" "566" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "15.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "debuff_amp" "10" } "02" { "var_type" "FIELD_INTEGER" "cooldown_reduction" "8" } "03" { "var_type" "FIELD_INTEGER" "damage" "125" } "04" { "var_type" "FIELD_INTEGER" "radius" "700" } "05" { "var_type" "FIELD_INTEGER" "count" "2" } } } //================================================================================================================= // //================================================================================================================= "item_gloves_of_travel" { // General //------------------------------------------------------------------------------------------------------------- "ID" "570" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "attack_speed" "20" } "02" { "var_type" "FIELD_INTEGER" "tp_cooldown_reduction" "20" } } } //================================================================================================================= // //================================================================================================================= "item_elven_tunic" { // General //------------------------------------------------------------------------------------------------------------- "ID" "573" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "attack_speed" "26" } "02" { "var_type" "FIELD_INTEGER" "evasion" "16" } "03" { "var_type" "FIELD_INTEGER" "movment" "7" } } } //================================================================================================================= // //================================================================================================================= "item_cloak_of_flames" { // General //------------------------------------------------------------------------------------------------------------- "ID" "574" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "armor" "4" } "02" { "var_type" "FIELD_INTEGER" "magic_resistance" "10" } "03" { "var_type" "FIELD_INTEGER" "damage" "45" } "04" { "var_type" "FIELD_INTEGER" "radius" "375" } "05" { "var_type" "FIELD_INTEGER" "damage_illusions" "30" } } } //================================================================================================================= // //================================================================================================================= "item_venom_gland" { // General //------------------------------------------------------------------------------------------------------------- "ID" "575" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "primary_attribute" "10" } "02" { "var_type" "FIELD_INTEGER" "debuff_amp" "12" } "03" { "var_type" "FIELD_INTEGER" "damage" "25" } "04" { "var_type" "FIELD_INTEGER" "degen" "25" } "05" { "var_type" "FIELD_FLOAT" "duration" "6" } } } //================================================================================================================= // //================================================================================================================= "item_trickster_cloak" { // General //------------------------------------------------------------------------------------------------------------- "ID" "571" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "evasion" "20" } "02" { "var_type" "FIELD_INTEGER" "magic_resistance" "20" } "03" { "var_type" "FIELD_FLOAT" "duration" "6" } } } //================================================================================================================= // //================================================================================================================= "item_gladiator_helm" { // General //------------------------------------------------------------------------------------------------------------- "ID" "576" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage" "18" } "02" { "var_type" "FIELD_INTEGER" "armor" "5" } "03" { "var_type" "FIELD_INTEGER" "movement_speed" "15" } "04" { "var_type" "FIELD_FLOAT" "duration" "7" } } } //================================================================================================================= // //================================================================================================================= "item_possessed_mask" { // General //------------------------------------------------------------------------------------------------------------- "ID" "577" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "primary_attribute" "7" } "02" { "var_type" "FIELD_INTEGER" "lifesteal" "7" } } } //================================================================================================================= // //================================================================================================================= "item_ancient_perseverance" { // General //------------------------------------------------------------------------------------------------------------- "ID" "578" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage" "10" } "02" { "var_type" "FIELD_INTEGER" "hp_regen" "7" } "03" { "var_type" "FIELD_INTEGER" "mana_regen_amp" "50" } } } //================================================================================================================= // //================================================================================================================= "item_star_mace" { // General //------------------------------------------------------------------------------------------------------------- "ID" "637" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "movement_speed_pct" "10" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "1" } "03" { "var_type" "FIELD_INTEGER" "cleave_damage_percent" "20" } "04" { "var_type" "FIELD_INTEGER" "cleave_starting_width" "150" } "05" { "var_type" "FIELD_INTEGER" "cleave_ending_width" "360" } "06" { "var_type" "FIELD_INTEGER" "cleave_distance" "650" } } } //================================================================================================================= // //================================================================================================================= "item_penta_edged_sword" { // General //------------------------------------------------------------------------------------------------------------- "ID" "638" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage" "45" } "02" { "var_type" "FIELD_INTEGER" "melee_attack_range" "100" } "03" { "var_type" "FIELD_INTEGER" "maim_chance" "25" } "04" { "var_type" "FIELD_INTEGER" "maim_slow_movement" "20" } "05" { "var_type" "FIELD_INTEGER" "maim_slow_attack" "60" } "06" { "var_type" "FIELD_FLOAT" "maim_duration" "3" } } } //================================================================================================================= // //================================================================================================================= "item_oakheart" { // General //------------------------------------------------------------------------------------------------------------- "ID" "582" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityManaCost" "75" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "18.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "strength" "15" } "02" { "var_type" "FIELD_INTEGER" "heal" "480" } "03" { "var_type" "FIELD_FLOAT" "duration" "12" } } } //================================================================================================================= // //================================================================================================================= "item_warhammer" { // General //------------------------------------------------------------------------------------------------------------- "ID" "674" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "750" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "02" { "var_type" "FIELD_INTEGER" "armor_reduction" "3" } "03" { "var_type" "FIELD_FLOAT" "duration" "6" } "04" { "var_type" "FIELD_INTEGER" "damage" "75" } } } //================================================================================================================= // //================================================================================================================= "item_bullwhip" { // General //------------------------------------------------------------------------------------------------------------- "ID" "680" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "850" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "11.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_health_regen" "3" } "02" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "2.5" } "03" { "var_type" "FIELD_FLOAT" "duration" "4" } "04" { "var_type" "FIELD_INTEGER" "speed" "18" } "05" { "var_type" "FIELD_FLOAT" "bullwhip_delay_time" "0.3" } } } //================================================================================================================= // //================================================================================================================= "item_psychic_headband" { // General //------------------------------------------------------------------------------------------------------------- "ID" "675" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "intelligence_pct" "15" "cast_range" "100" "push_length" "400" "push_duration" "0.3" } } //================================================================================================================= // //================================================================================================================= "item_ceremonial_robe" { // General //------------------------------------------------------------------------------------------------------------- "ID" "676" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_mana" "250" "aura_radius" "1200" "status_resistance" "10" "magic_resistance" "10" } } //================================================================================================================= // //================================================================================================================= "item_quicksilver_amulet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "686" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "base_movement" "4" "base_attack" "10" "bonus_movement" "3" "bonus_attack" "20" "anim_increase" "40" "projectile_increase" "40" } } //================================================================================================================= // //================================================================================================================= "item_book_of_shadows" { // General //------------------------------------------------------------------------------------------------------------- "ID" "677" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "8.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_all_stats" "13" "night_vision" "400" "duration" "4" } } //================================================================================================================= // Giant's Ring //================================================================================================================= "item_giants_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "678" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "35" } "02" { "var_type" "FIELD_INTEGER" "movement_speed" "50" } "03" { "var_type" "FIELD_INTEGER" "model_scale" "60" } "04" { "var_type" "FIELD_INTEGER" "pct_str_damage_per_second" "100" } "05" { "var_type" "FIELD_INTEGER" "damage_radius" "100" } } } //================================================================================================================= // //================================================================================================================= "item_vengeances_shadow" { // General //------------------------------------------------------------------------------------------------------------- "ID" "679" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "500" } "02" { "var_type" "FIELD_INTEGER" "damage_return" "20" } "03" { "var_type" "FIELD_FLOAT" "illusion_duration" "30" } "04" { "var_type" "FIELD_INTEGER" "illusion_outgoing_damage" "100" } "05" { "var_type" "FIELD_INTEGER" "illusion_incoming_damage" "150" } } } //================================================================================================================= // //================================================================================================================= "item_stormcrafter" { // General //------------------------------------------------------------------------------------------------------------- "ID" "585" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" "AbilityManaCost" "50" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "range" "700" } "02" { "var_type" "FIELD_INTEGER" "damage" "200" } "03" { "var_type" "FIELD_FLOAT" "interval" "3" } "04" { "var_type" "FIELD_INTEGER" "slow" "40" } "05" { "var_type" "FIELD_FLOAT" "slow_duration" "0.3" } "06" { "var_type" "FIELD_FLOAT" "cyclone_duration" "0.75" } "07" { "var_type" "FIELD_FLOAT" "bonus_mana_regen" "4" } } } //================================================================================================================= // //================================================================================================================= "item_overflowing_elixir" { // General //------------------------------------------------------------------------------------------------------------- "ID" "588" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health" "500" } "02" { "var_type" "FIELD_INTEGER" "mana" "200" } "03" { "var_type" "FIELD_FLOAT" "duration" "4" } } } //================================================================================================================= // Fairy's Trinket //================================================================================================================= "item_mysterious_hat" { // General //------------------------------------------------------------------------------------------------------------- "ID" "589" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "8.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "75" } "02" { "var_type" "FIELD_INTEGER" "spell_amp" "5" } "03" { "var_type" "FIELD_INTEGER" "manacost_reduction" "5" } } } "item_assassins_dagger" { // General //------------------------------------------------------------------------------------------------------------- "ID" "824" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "debuff_duration" "1" } "02" { "var_type" "FIELD_FLOAT" "bonus_damage" "30" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "10" } } } "item_ascetic_cap" { // General //------------------------------------------------------------------------------------------------------------- "ID" "825" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" "AbilityManaCost" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "status_resistance" "40" "bonus_health" "250" "duration" "3" "hp_regen" "15" } } "item_sample_picker" { // General //------------------------------------------------------------------------------------------------------------- "ID" "826" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "15.0" "AbilityManaCost" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "base_gold" "20" } "02" { "var_type" "FIELD_INTEGER" "gold_per_level" "10" } "03" { "var_type" "FIELD_FLOAT" "strength_penalty" "5" } } } "item_icarus_wings" { // General //------------------------------------------------------------------------------------------------------------- "ID" "827" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "AbilityManaCost" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration" "5" } "02" { "var_type" "FIELD_FLOAT" "slow" "50" } "03" { "var_type" "FIELD_FLOAT" "slow_duration" "4" } "04" { "var_type" "FIELD_FLOAT" "move_speed" "20" } "05" { "var_type" "FIELD_FLOAT" "bonus_move_speed" "0" } } } ////////////////////// // Brigand's Blade ///////////////////// "item_misericorde" { // General //------------------------------------------------------------------------------------------------------------- "ID" "828" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_damage" "10" "missing_hp" "10" "damage" "10" "aspd" "10" } } //================================================================================================================= // Light Robes //================================================================================================================= "item_light_robes" { // General //------------------------------------------------------------------------------------------------------------- "ID" "836" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_penalty" "175" } "02" { "var_type" "FIELD_FLOAT" "attack_speed" "35" } } } //================================================================================================================= // Witchbane //================================================================================================================= "item_heavy_blade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "837" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_BOTH" "SpellImmunityType" "SPELL_IMMUNITY_ENEMIES_NO" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "AbilitySound" "Brewmaster_Storm.DispelMagic" "AbilityCastRange" "500 500 500 500" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20" "AbilityCastPoint" "0" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75 75 75 75" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "radius" "300" "damage" "4" "attack_speed" "20" } } //================================================================================================================= // Unstable Wand //================================================================================================================= "item_unstable_wand" { // General //------------------------------------------------------------------------------------------------------------- "ID" "838" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET" "AbilityCooldown" "25.0" "AbilityManaCost" "50" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration" "4" } "02" { "var_type" "FIELD_INTEGER" "all_stats" "6" } } } //================================================================================================================= // //================================================================================================================= "item_fortitude_ring" { // General //------------------------------------------------------------------------------------------------------------- "ID" "839" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" "AbilityManaCost" "100" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_FLOAT" "hp_regen" "8" } "03" { "var_type" "FIELD_INTEGER" "damage_reduction" "50" } "04" { "var_type" "FIELD_INTEGER" "damage_reduction_duration" "3" } } } //================================================================================================================= // Light Robes //================================================================================================================= "item_pogo_stick" { // General //------------------------------------------------------------------------------------------------------------- "ID" "840" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "15.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "leap_distance" "300" "leap_speed" "1300.0" "leap_acceleration" "20000.0" "bonus_mana" "200" } } //================================================================================================================= // paintball (Fae Grenade) //================================================================================================================= "item_paintball" { // General //------------------------------------------------------------------------------------------------------------- "ID" "835" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" "AbilityCastRange" "900" "AbilityManaCost" "25" "AbilityCastPoint" "0.2" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "movespeed" "20" "dps" "40" "duration" "7" } } //================================================================================================================= // Seeds of Serenity //================================================================================================================= "item_seeds_of_serenity" { // General //------------------------------------------------------------------------------------------------------------- "ID" "945" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" "AbilityCastRange" "350" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_health" "100" "aura_health_regen" "8" "radius" "350" "duration" "14" } } "item_lance_of_pursuit" { // General //------------------------------------------------------------------------------------------------------------- "ID" "946" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_mana" "200" "bonus_strength" "0" "slow_duration" "1" "backstab_damage" "15" "backstab_angle" "90" "slow_pct_melee" "12" "slow_pct_ranged" "6" } } "item_occult_bracelet" { // General //------------------------------------------------------------------------------------------------------------- "ID" "947" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_all_stats" "3" "mana_regen" "0.5" "stack_limit" "5" "stack_duration" "10" } } "item_tome_of_omniscience" { // General //------------------------------------------------------------------------------------------------------------- "ID" "948" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_mana" "200" "bonus_xpm" "100" "bonus_armor" "-5" } } "item_ogre_seal_totem" { // General //------------------------------------------------------------------------------------------------------------- "ID" "949" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_ROOT_DISABLES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityCastPoint" "0.3" "AbilityCooldown" "40.0" "AbilityManaCost" "75" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "bonus_strength" "10" "leap_distance" "400" "leap_speed" "800.0" "leap_acceleration" "1250.0" "radius" "225" "flop_damage" "150" "slow_duration" "1.0" "slow" "-100" "max_bounces" "2" } } "item_wand_of_the_brine" { // General //------------------------------------------------------------------------------------------------------------- "ID" "940" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_MOVEMENT" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "Model" "models/props_gameplay/neutral_box.vmdl" "AbilityCastRange" "550" "AbilityCooldown" "35.0" "AbilityManaCost" "90" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "heal_increase" "15" "duration" "3" "movement_speed" "50" "damage_reduction" "50" "heal" "40" "interval" "0.5" } } "item_slime_vial" { // General //------------------------------------------------------------------------------------------------------------- "ID" "938" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" "FightRecapLevel" "1" "SpellDispellableType" "SPELL_DISPELLABLE_YES" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "27" "AbilityCastRange" "550" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "health_regen" "12" "spill_damage" "125" "spill_debuff_duration" "4.0" "spill_radius" "550" "spill_speed" "350" "spill_movement_speed" "35" "spill_attack_speed" "30" "spill_self_bonus_armor" "15" } } "item_harpoon" { // General //------------------------------------------------------------------------------------------------------------- "ID" "939" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "10.0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "pull_duration" "0.3" "pull_distance_pct" "40" "crit_multiplier" "175" "attack_range_bonus" "200" "bonus_damage" "35" "movement_slow" "30" "slow_duration" "4" "min_distance" "400" "max_distance" "500" } } "item_guardian_shell" { // General //------------------------------------------------------------------------------------------------------------- "ID" "950" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "4" "all_stats" "15" } } "item_arcane_scout" { // General //------------------------------------------------------------------------------------------------------------- "ID" "968" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_IGNORE_CHANNEL" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "20" "magic_resist" "15" "vision_bonus" "150" "self_vision_duration" "5" "scout_movespeed" "350" "sight_range" "300" } } "item_barricade" { // General //------------------------------------------------------------------------------------------------------------- "ID" "969" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "AbilityCastRange" "300" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "8" "width" "50" "length" "300" "bonus_health" "300" "bonus_armor" "5" "max_hits" "5" } } "item_eye_of_the_vizier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "990" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "cast_range_bonus" "125" "mana_reduction_pct" "15" } } "item_manacles_of_power" { // General //------------------------------------------------------------------------------------------------------------- "ID" "998" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityCastRange" "300" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "AbilityCooldown" "20.0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "4" "bonus_strength" "30" "bonus_strength_per_kill" "5" "leash_distance" "300" "leash_limit_multiplier" "1.3" } } //================================================================================================================= // Bottle //================================================================================================================= "item_bottomless_chalice" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1000" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_OPTIONAL_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_SUPPRESS_ASSOCIATED_CONSUMABLE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.5" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" "ItemInitialCharges" "6" "ItemDisplayCharges" "1" "IsTempestDoubleClonable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "duration" "3" "stored_rune_duration" "90" "health" "200" "mana" "70" "max_charges_per_kill" "1" "recharge_time" "10" "movement_speed" "30" "bonus_intellect" "40" } } //================================================================================================================= // Wand of Sanctity //================================================================================================================= "item_wand_of_sanctitude" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1017" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" "AbilityCastRange" "350" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "radius" "450" "duration" "6" "tick_rate" "1.5" "duration_per_charge" "1.5" "all_stats" "15" "bonus_cast_range" "200" } } //================================================================================================================= // Mechanical Release //================================================================================================================= "item_specialists_array" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1076" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "12.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "all_stats" "5" "bonus_damage" "10" "count" "2" } } //================================================================================================================= // Mechanical Release //================================================================================================================= "item_dagger_of_ristul" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1077" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemIsNeutralDrop" "1" "ItemPurchasable" "0" "Model" "models/props_gameplay/neutral_box.vmdl" // Special //------------------------------------------------------------------------------------------------------------- "AbilityValues" { "aspd" "15" "bonus_damage" "40" "duration" "8" "health_sacrifice" "100" } } }