// 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCastPoint" "0.0" "AbilityCooldown" "12.0" "AbilityManaCost" "0" // 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" // 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" } } } //================================================================================================================= // 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" "420" "ItemShopTags" "damage;tutorial" "ItemQuality" "component" "ItemAliases" "blades of attack" "SideShop" "1" // 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" "1200" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "broadsword" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "18" } } } //================================================================================================================= // 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" "5" } } } //================================================================================================================= // 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" "1400" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "claymore" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "21" } } } //================================================================================================================= // 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" "950" "ItemShopTags" "armor;regen_health" "ItemQuality" "component" "ItemAliases" "helm of iron will" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "02" { "var_type" "FIELD_INTEGER" "bonus_regen" "3" } } } //================================================================================================================= // 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" "1500" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "javelin" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "21" } "02" { "var_type" "FIELD_INTEGER" "bonus_chance" "20" } "03" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "40" } } } //================================================================================================================= // 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" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_speed" "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" "5.0" "Model" "models/props_gameplay/quelling_blade.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "225" "ItemShopTags" "damage" "ItemQuality" "component" "ItemAliases" "quelling blade" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage_bonus" "140" } "02" { "var_type" "FIELD_INTEGER" "damage_bonus_ranged" "115" } "03" { "var_type" "FIELD_INTEGER" "quelling_range_tooltip" "350" } "04" { "var_type" "FIELD_INTEGER" "cast_range_ward" "450" } } } //================================================================================================================= // 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" "200" "ItemShopTags" "armor" "ItemQuality" "component" "ItemAliases" "rop;ring of protection" "SideShop" "0" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "bonus_armor" "3" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "block" "ItemQuality" "component" "ItemAliases" "stout shield" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "damage_block_melee" "16" } "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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "300" "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" "4300" "ItemShopTags" "attack_speed" "ItemQuality" "common" "ItemAliases" "moon shard" "SideShop" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "120" } "02" { "var_type" "FIELD_INTEGER" "bonus_night_vision" "250" } "03" { "var_type" "FIELD_INTEGER" "consumed_bonus" "60" } } } //================================================================================================================= // 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" "150" "ItemShopTags" "str" "ItemQuality" "component" "ItemAliases" "gauntlets of strength" // 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" "150" "ItemShopTags" "agi" "ItemQuality" "component" "ItemAliases" "slippers of agility" "SideShop" "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" "150" "ItemShopTags" "int" "ItemQuality" "component" "ItemAliases" "mantle of intelligence" "SideShop" "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_PASSIVE" "Model" "models/props_gameplay/branch.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "agi;int;str" "ItemQuality" "component" "ItemAliases" "gg branch;iron branch" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "1" } } } //================================================================================================================= // 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" "165" "ItemShopTags" "agi;int;str" "ItemQuality" "component" "ItemAliases" "circlet" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } } } //================================================================================================================= // 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" "2100" "ItemShopTags" "agi;int;str" "ItemQuality" "secret_shop" "ItemAliases" "ultimate orb" "SideShop" "1" "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" "500" "ItemShopTags" "attack_speed" "ItemQuality" "component" "ItemAliases" "gloves of haste" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "20" } } } //================================================================================================================= // 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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "lifesteal_percent" "15" } } } //================================================================================================================= // 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" "350" "ItemShopTags" "regen_health" "ItemQuality" "component" "ItemAliases" "ring of regen" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" "SideShop" "1" "ItemAliases" "ror" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "2" } } } //================================================================================================================= // 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" "325" "ItemShopTags" "regen_mana" "ItemQuality" "component" "ItemAliases" "sage's mask" "SideShop" "1" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "50" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "450" "ItemShopTags" "move_speed" "ItemQuality" "component" "ItemAliases" "boots of speed" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "50" } } } //================================================================================================================= // 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_PASSIVE" "Model" "models/props_gameplay/gem01.mdl" "Effect" "dropped_gem" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "see_invis" "ItemQuality" "component" "ItemAliases" "gem of true sight" "ItemSellable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemStockMax" "1" "ItemStockTime" "600.0" "ItemSupport" "1" "ItemKillable" "0" "ItemContributesToNetWorthWhenDropped" "0" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "radius" "1100" } } } //================================================================================================================= // 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" "550" "ItemShopTags" "magic_resist" "ItemQuality" "component" "ItemAliases" "cloak" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "20" } "02" { "var_type" "FIELD_INTEGER" "tooltip_resist" "20" } } } //================================================================================================================= // 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" "1800" "ItemShopTags" "evasion" "ItemQuality" "secret_shop" "ItemAliases" "talisman of evasion" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_evasion" "25" } } } //================================================================================================================= // 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.mdl" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "40.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" "ItemQuality" "epic" "ItemPurchasable" "0" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemContributesToNetWorthWhenDropped" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_restore" "2500" } "02" { "var_type" "FIELD_INTEGER" "mana_restore" "1000" } } } //================================================================================================================= // 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.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilitySharedCooldown" "magicwand" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana" "ItemQuality" "component" "ItemAliases" "magic stick" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "SideShop" "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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_magic_wand" "ItemRequirements" { "01" "item_circlet;item_branches;item_branches;item_magic_stick" } } //================================================================================================================= // 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.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "13.0" "AbilitySharedCooldown" "magicwand" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "465" "ItemShopTags" "regen_health;regen_mana;boost_health;boost_mana;int;agi;str" "ItemQuality" "common" "ItemAliases" "magic wand" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "max_charges" "17" } "02" { "var_type" "FIELD_INTEGER" "charge_radius" "1200" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "4" } "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" "30.0" "AbilitySharedCooldown" "ethereal" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1500" "ItemShopTags" "int;agi;str;hard_to_tag" "ItemQuality" "component" "ItemAliases" "ghost scepter" // 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" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/clarity.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "50" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "clarity" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "1" "SideShop" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "total_mana" "170" } "02" { "var_type" "FIELD_INTEGER" "buff_duration" "45" } } } //================================================================================================================= // 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_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/mango.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "150" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "enchanted mango" "ItemStackable" "0" "ItemPermanent" "0" "ItemInitialCharges" "1" "SideShop" "0" "ItemHideCharges" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "hp_regen" "1.0" } "02" { "var_type" "FIELD_INTEGER" "replenish_amount" "150" } } } //================================================================================================================= // 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" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/salve.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "250" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "110" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "healing salve" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "8" } "02" { "var_type" "FIELD_INTEGER" "total_health" "400" } } } //================================================================================================================= // 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.mdl" "Effect" "dropped_dust" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "5" "ItemCost" "180" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "dust of appearance" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration" "12" } "02" { "var_type" "FIELD_INTEGER" "radius" "1050" } "03" { "var_type" "FIELD_INTEGER" "movespeed" "-20" } } } //================================================================================================================= // 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" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "Model" "models/props_gameplay/bottle_blue.mdl" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.5" "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "bottle" "ItemStackable" "0" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" "ItemPermanent" "1" "ItemInitialCharges" "3" "ItemDisplayCharges" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_restore" "135" } "02" { "var_type" "FIELD_INTEGER" "mana_restore" "70" } "03" { "var_type" "FIELD_INTEGER" "restore_time" "3" } "04" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "-30" } } } //================================================================================================================= // 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_OPTIONAL_UNIT_TARGET" "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.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.0" "AbilityCooldown" "1.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "75" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "observer ward" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemStockMax" "4" "ItemStockInitial" "2" "ItemStockTime" "180.0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "lifetime" "420" } "02" { "var_type" "FIELD_INTEGER" "vision_range" "1600" } "03" { "var_type" "FIELD_INTEGER" "health" "200" } "04" { "var_type" "FIELD_INTEGER" "duration_minutes_tooltip" "7" } } } //================================================================================================================= // 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_OPTIONAL_UNIT_TARGET" "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.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.0" "AbilityCooldown" "1.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "sentry ward" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" "ItemSupport" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "lifetime" "240" } "02" { "var_type" "FIELD_INTEGER" "vision_range" "0" } "03" { "var_type" "FIELD_INTEGER" "true_sight_range" "850" } "04" { "var_type" "FIELD_INTEGER" "health" "200" } "05" { "var_type" "FIELD_INTEGER" "duration_minutes_tooltip" "4" } } } //================================================================================================================= // 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.mdl" // 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_OPTIONAL_UNIT_TARGET" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_NOT_CREEP_HERO" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "275" "ItemQuality" "common" "ItemAliases" "ward" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPurchasable" "0" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCooldown" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "100" } "02" { "var_type" "FIELD_INTEGER" "observer_cost" "75" } "03" { "var_type" "FIELD_INTEGER" "sentry_cost" "100" } "04" { "var_type" "FIELD_INTEGER" "lifetime_observer" "420" } "05" { "var_type" "FIELD_INTEGER" "lifetime_sentry" "240" } "06" { "var_type" "FIELD_FLOAT" "creation_delay" "0" } "07" { "var_type" "FIELD_INTEGER" "observer_vision_range_tooltip" "1600" } "08" { "var_type" "FIELD_INTEGER" "observer_duration_minutes_tooltip" "7" } "09" { "var_type" "FIELD_INTEGER" "true_sight_range" "850" } "10" { "var_type" "FIELD_INTEGER" "sentry_duration_minutes_tooltip" "4" } } } //================================================================================================================= // 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" "Model" "models/props_gameplay/tango.mdl" "Effect" "dropped_tango" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "165" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "125" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "tango" "ItemStackable" "1" "ItemPermanent" "0" "ItemInitialCharges" "4" "SideShop" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "total_heal" "115" } "02" { "var_type" "FIELD_INTEGER" "total_heal_ward_tooltip" "230" } "03" { "var_type" "FIELD_INTEGER" "cast_range_ward" "450" } "04" { "var_type" "FIELD_FLOAT" "buff_duration" "16.0" } } } //================================================================================================================= // 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.mdl" "Effect" "dropped_tango" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_TREE | DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "165" "AbilityCastPoint" "0.0" "AbilityCooldown" "60.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "30" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "0" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemSellable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "total_heal" "115" } "02" { "var_type" "FIELD_INTEGER" "total_heal_ward_tooltip" "230" } "03" { "var_type" "FIELD_INTEGER" "cast_range_ward" "450" } "04" { "var_type" "FIELD_FLOAT" "buff_duration" "16.0" } } } //================================================================================================================= // 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" "120" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "donkey;chicken;animal courier" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemStockMax" "1" "ItemStockTime" "7.0" "ItemSupport" "1" } //================================================================================================================= // 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_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_NOASSIST | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_BUILDING" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" "Model" "models/props_gameplay/tpscroll01.mdl" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCooldown" "70.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" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "minimun_distance" "70" } "02" { "var_type" "FIELD_INTEGER" "maximum_distance" "575" } "03" { "var_type" "FIELD_INTEGER" "vision_radius" "200" } } } //================================================================================================================= // 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.mdl" // 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.mdl" // 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_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP | DOTA_UNIT_TARGET_MECHANICAL | DOTA_UNIT_TARGET_BUILDING" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "AbilitySharedCooldown" "teleport" "AbilityChannelTime" "3.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "4450" "ItemShopTags" "teleport;move_speed" "ItemQuality" "common" "ItemAliases" "bot;boots of travel" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "UpgradesItems" "item_travel_boots" "UpgradeRecipe" "item_recipe_travel_boots" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "100" } } } //================================================================================================================= // 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_POINT | DOTA_ABILITY_BEHAVIOR_CHANNELLED | DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_CREEP | DOTA_UNIT_TARGET_MECHANICAL | DOTA_UNIT_TARGET_BUILDING" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "45.0" "AbilitySharedCooldown" "teleport" "AbilityChannelTime" "3.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "2450" "ItemShopTags" "teleport;move_speed" "ItemQuality" "common" "ItemAliases" "bot;boots of travel" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "MaxUpgradeLevel" "2" "ItemBaseLevel" "2" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "100" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_phase_boots" "ItemRequirements" { "01" "item_boots;item_blades_of_attack;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" "1290" "ItemShopTags" "damage;move_speed;hard_to_tag" "ItemQuality" "common" "ItemAliases" "phase boots" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "50" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "03" { "var_type" "FIELD_INTEGER" "phase_movement_speed" "16" } "04" { "var_type" "FIELD_FLOAT" "phase_duration" "3.6" } } } //================================================================================================================= // 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" "2400" "ItemShopTags" "damage" "ItemQuality" "secret_shop" "ItemAliases" "demon edge" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "46" } } } //================================================================================================================= // 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" "3200" "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" "3000" "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" "3800" "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" "55" } } } //================================================================================================================= // 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" "875" "ItemShopTags" "regen_health" "ItemQuality" "component" "ItemAliases" "roh;ring of health" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" "SideShop" "1" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "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" "875" "ItemShopTags" "regen_mana" "ItemQuality" "component" "ItemAliases" "void stone" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "100" } } } //================================================================================================================= // 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" "2700" "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" "900" "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" "150" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "200" } } } //================================================================================================================= // 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" "1100" "ItemShopTags" "health_pool" "ItemQuality" "secret_shop" "ItemAliases" "vitality booster" "SecretShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_power_treads" "ItemRequirements" { "01" "item_boots;item_gloves;item_belt_of_strength" "02" "item_boots;item_gloves;item_robe" "03" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "50" } "02" { "var_type" "FIELD_INTEGER" "bonus_stat" "9" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1550" "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" "100.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "2050" "ItemShopTags" "attack_speed;hard_to_tag" "ItemQuality" "common" "ItemAliases" "hand of midas" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "02" { "var_type" "FIELD_FLOAT" "xp_multiplier" "2.5" } "03" { "var_type" "FIELD_INTEGER" "bonus_gold" "190" } "04" { "var_type" "FIELD_INTEGER" "transmute_cast_range_tooltip" "600" } } } //================================================================================================================= // 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.mdl" // 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" "1650" "ItemShopTags" "damage;int;attack_speed;regen_mana" "ItemQuality" "common" "ItemAliases" "oblivion staff" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "15" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "75" } } } //================================================================================================================= // 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.mdl" // 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" "1750" "ItemShopTags" "regen_health;regen_mana" "ItemQuality" "common" "ItemAliases" "perseverance" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemShareability" "ITEM_PARTIALLY_SHAREABLE" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "5" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "125" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_poor_mans_shield" "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. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "ItemShopTags" "agi;block" "ItemQuality" "common" "ItemAliases" "pms;poor man's shield" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "6" } "02" { "var_type" "FIELD_INTEGER" "damage_block_melee" "20" } "03" { "var_type" "FIELD_INTEGER" "damage_block_ranged" "10" } "04" { "var_type" "FIELD_INTEGER" "block_chance" "53" } "05" { "var_type" "FIELD_INTEGER" "block_chance_hero" "100" } } } //================================================================================================================= // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "525" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "bracer" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "3" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "3" } } } //================================================================================================================= // 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" "170" "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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "485" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "wraith band" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "3" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "3" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "3" } } } //================================================================================================================= // 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" "155" "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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "470" "ItemShopTags" "damage;int;agi;str" "ItemQuality" "common" "ItemAliases" "null talisman" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "3" } "02" { "var_type" "FIELD_INTEGER" "bonus_agility" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "6" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "3" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mekansm" "ItemRequirements" { "01" "item_headdress;item_buckler" } } //================================================================================================================= // 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" "65.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "225" "ItemCost" "2300" "ItemShopTags" "agi;int;str;armor;boost_health" "ItemQuality" "rare" "ItemAliases" "mechanism;mekansm" "ItemAlertable" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "04" { "var_type" "FIELD_INTEGER" "aura_health_regen" "4" } "05" { "var_type" "FIELD_INTEGER" "heal_amount" "250" } "06" { "var_type" "FIELD_INTEGER" "heal_bonus_armor" "2" } "07" { "var_type" "FIELD_INTEGER" "heal_armor_duration" "25" } "08" { "var_type" "FIELD_INTEGER" "heal_radius" "900" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_vladmir" "ItemRequirements" { "01" "item_headdress;item_ring_of_basilius;item_lifesteal" } } //================================================================================================================= // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2325" "ItemShopTags" "lifesteal;damage;armor;regen_mana" "ItemQuality" "rare" "ItemAliases" "vladmir's offering;vlads" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "02" { "var_type" "FIELD_INTEGER" "hp_regen" "3" } "03" { "var_type" "FIELD_FLOAT" "mana_regen_aura" "0.8" } "04" { "var_type" "FIELD_INTEGER" "armor_aura" "5" } "05" { "var_type" "FIELD_INTEGER" "damage_aura" "15" } "06" { "var_type" "FIELD_INTEGER" "vampiric_aura" "15" } "07" { "var_type" "FIELD_INTEGER" "vampiric_aura_ranged" "10" } "08" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } } } //================================================================================================================= // Flying Courier //================================================================================================================= "item_flying_courier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "84" // unique ID number for this item. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_PASSIVE" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "220" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "crow;flying courier" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemStockMax" "1" "ItemStockInitial" "0" "ItemStockTime" "270.0" "ItemSupport" "1" } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_buckler" "ItemRequirements" { "01" "item_chainmail;item_branches" } } //================================================================================================================= // Buckler //================================================================================================================= "item_buckler" { // General //------------------------------------------------------------------------------------------------------------- "ID" "86" // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "10" "ItemCost" "800" "ItemShopTags" "armor;boost_armor" "ItemQuality" "rare" "ItemAliases" "buckler" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "03" { "var_type" "FIELD_INTEGER" "bonus_aoe_radius" "900" } "04" { "var_type" "FIELD_INTEGER" "bonus_aoe_armor" "2" } "05" { "var_type" "FIELD_FLOAT" "bonus_aoe_duration" "30.0" } "06" { "var_type" "FIELD_FLOAT" "bonus_aoe_duration_hero" "25.0" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ring_of_basilius" "ItemRequirements" { "01" "item_sobi_mask;item_ring_of_protection" } } //================================================================================================================= // 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_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_TOGGLE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "525" "ItemShopTags" "damage;regen_mana;armor" "ItemQuality" "rare" "ItemAliases" "rob;ring of basilius" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "1" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "04" { "var_type" "FIELD_FLOAT" "aura_mana_regen" "0.65" } "05" { "var_type" "FIELD_INTEGER" "aura_bonus_armor" "2" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3525" "ItemShopTags" "regen_health;boost_magic_resist" "ItemQuality" "rare" "ItemAliases" "pipe of insight" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemAlertable" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_regen" "9" } "02" { "var_type" "FIELD_INTEGER" "magic_resistance" "30" } "03" { "var_type" "FIELD_FLOAT" "barrier_debuff_duration" "50.0" } "04" { "var_type" "FIELD_INTEGER" "tooltip_resist" "30" } "05" { "var_type" "FIELD_INTEGER" "aura_health_regen" "4" } "06" { "var_type" "FIELD_INTEGER" "magic_resistance_aura" "10" } "07" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "08" { "var_type" "FIELD_INTEGER" "barrier_block" "400" } "09" { "var_type" "FIELD_INTEGER" "barrier_duration" "12.0" } "10" { "var_type" "FIELD_INTEGER" "barrier_radius" "900" } "11" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "0" } "12" { "var_type" "FIELD_INTEGER" "barrier_block_creep" "400" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_urn_of_shadows" "ItemRequirements" { "01" "item_sobi_mask;item_gauntlets;item_gauntlets" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "950" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" // Items //------------------------------------------------------------------------------------------------------------- "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "ItemStackable" "0" "ItemPermanent" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "875" "ItemShopTags" "regen_mana;str;boost_health" "ItemQuality" "rare" "ItemAliases" "urn of shadows" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "mana_regen" "50" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "6" } "03" { "var_type" "FIELD_INTEGER" "soul_radius" "1400" } "04" { "var_type" "FIELD_INTEGER" "soul_initial_charge" "2" } "05" { "var_type" "FIELD_INTEGER" "soul_additional_charges" "1" } "06" { "var_type" "FIELD_FLOAT" "soul_heal_interval" "0.25" } "07" { "var_type" "FIELD_INTEGER" "soul_heal_amount" "400" } "08" { "var_type" "FIELD_INTEGER" "soul_damage_amount" "150" } "09" { "var_type" "FIELD_FLOAT" "soul_heal_duration" "8.0" } "10" { "var_type" "FIELD_FLOAT" "soul_damage_duration" "8.0" } "11" { "var_type" "FIELD_INTEGER" "soul_release_range_tooltip" "950" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "200" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_headdress" "ItemRequirements" { "01" "item_ring_of_regen;item_branches" } } //================================================================================================================= // 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" "600" "ItemShopTags" "str;int;agi;regen_health" "ItemQuality" "rare" "ItemAliases" "headdress" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "02" { "var_type" "FIELD_INTEGER" "aura_health_regen" "3" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } } } //================================================================================================================= // 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.mdl" // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "35.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "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" // 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_INTEGER" "bonus_mana_regen" "150" } "05" { "var_type" "FIELD_FLOAT" "sheep_duration" "3.5" } "06" { "var_type" "FIELD_FLOAT" "sheep_movement_speed" "140" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "775" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_orchid" "ItemRequirements" { "01" "item_oblivion_staff;item_oblivion_staff" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "900" "AbilityCastPoint" "0.0" "AbilityCooldown" "18.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "4075" "ItemShopTags" "int;attack_speed;damage;regen_mana;damage;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "orchid malevolence" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "30" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "150" } "05" { "var_type" "FIELD_FLOAT" "silence_damage_percent" "30" } "06" { "var_type" "FIELD_FLOAT" "silence_duration" "5" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_cyclone" "ItemRequirements" { "01" "item_sobi_mask;item_staff_of_wizardry;item_void_stone" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "700" "AbilityCastPoint" "0.0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "23.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "175" "ItemCost" "2850" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "150" } "03" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "40" } "04" { "var_type" "FIELD_FLOAT" "cyclone_duration" "2.5" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_force_staff" "ItemRequirements" { "01" "item_staff_of_wizardry;item_ring_of_regen" } } //================================================================================================================= // 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_MECHANICAL | DOTA_UNIT_TARGET_CUSTOM" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "20.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "25" "ItemCost" "2250" "ItemShopTags" "int;damage;attack_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "fs;force staff" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "4" } "03" { "var_type" "FIELD_INTEGER" "push_length" "600" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_dagon" "ItemRequirements" { "01" "item_staff_of_wizardry;item_null_talisman" } } "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.mdl" // 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.mdl" // 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.mdl" // 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.mdl" // 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" "600 650 700 750 800" "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" "180" "ItemCost" "2720" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "13 16 19 22 25" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_INTEGER" "range_tooltip" "600 650 700 750 800" } "06" { "var_type" "FIELD_FLOAT" "damage_delay" "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" "600 650 700 750 800" "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" "180" "ItemCost" "3970" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "13 16 19 22 25" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_INTEGER" "range_tooltip" "600 650 700 750 800" } "06" { "var_type" "FIELD_FLOAT" "damage_delay" "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" "600 650 700 750 800" "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" "180" "ItemCost" "5220" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 3" "UpgradesItems" "item_dagon_3;item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "13 16 19 22 25" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_INTEGER" "range_tooltip" "600 650 700 750 800" } "06" { "var_type" "FIELD_FLOAT" "damage_delay" "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" "600 650 700 750 800" "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" "180" "ItemCost" "6470" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 4" "UpgradesItems" "item_dagon_4" "UpgradeRecipe" "item_recipe_dagon" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "13 16 19 22 25" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_INTEGER" "range_tooltip" "600 650 700 750 800" } "06" { "var_type" "FIELD_FLOAT" "damage_delay" "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" "600 650 700 750 800" "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" "180" "ItemCost" "7720" "ItemShopTags" "damage;int;str;agi;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "dagon 5" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "13 16 19 22 25" } "02" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "04" { "var_type" "FIELD_INTEGER" "damage" "400 500 600 700 800" } "05" { "var_type" "FIELD_INTEGER" "range_tooltip" "600 650 700 750 800" } "06" { "var_type" "FIELD_FLOAT" "damage_delay" "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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1250" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_necronomicon" "ItemRequirements" { "01" "item_staff_of_wizardry;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" // 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" // 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" "95.0" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "2700" "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_intellect" "15 21 24" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "8 12 16" } "03" { "var_type" "FIELD_INTEGER" "summon_duration" "40" } "04" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "600 700 800" } "05" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "45 60 75" } "06" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "20 50 75" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "25 50 75" } "08" { "var_type" "FIELD_INTEGER" "explosion" "550 675 800" } "09" { "var_type" "FIELD_INTEGER" "warrior_truesight" "1000" } "10" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "600 700 800" } "11" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "60 90 120" } "12" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "13" { "var_type" "FIELD_INTEGER" "archer_attack_speed_radius" "400" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "900" } "15" { "var_type" "FIELD_INTEGER" "archer_attack_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" "95.0" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "3950" "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_intellect" "15 21 24" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "8 12 16" } "03" { "var_type" "FIELD_INTEGER" "summon_duration" "40" } "04" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "600 700 800" } "05" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "45 60 75" } "06" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "20 50 75" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "25 50 75" } "08" { "var_type" "FIELD_INTEGER" "explosion" "550 675 800" } "09" { "var_type" "FIELD_INTEGER" "warrior_truesight" "1000" } "10" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "600 700 800" } "11" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "60 90 120" } "12" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "13" { "var_type" "FIELD_INTEGER" "archer_attack_speed_radius" "400" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "900" } "15" { "var_type" "FIELD_INTEGER" "archer_attack_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" "95.0" "AbilitySharedCooldown" "necronomicon" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "5200" "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_intellect" "15 21 24" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "8 12 16" } "03" { "var_type" "FIELD_INTEGER" "summon_duration" "40" } "04" { "var_type" "FIELD_INTEGER" "warrior_health_tooltip" "600 700 800" } "05" { "var_type" "FIELD_INTEGER" "warrior_damage_tooltip" "45 60 75" } "06" { "var_type" "FIELD_INTEGER" "warrior_mana_feedback" "20 50 75" } "07" { "var_type" "FIELD_INTEGER" "warrior_mana_break_tooltip" "25 50 75" } "08" { "var_type" "FIELD_INTEGER" "explosion" "550 675 800" } "09" { "var_type" "FIELD_INTEGER" "warrior_truesight" "1000" } "10" { "var_type" "FIELD_INTEGER" "archer_health_tooltip" "600 700 800" } "11" { "var_type" "FIELD_INTEGER" "archer_damage_tooltip" "60 90 120" } "12" { "var_type" "FIELD_INTEGER" "archer_mana_burn" "125 175 225" } "13" { "var_type" "FIELD_INTEGER" "archer_attack_speed_radius" "400" } "14" { "var_type" "FIELD_INTEGER" "archer_aura_radius_tooltip" "900" } "15" { "var_type" "FIELD_INTEGER" "archer_attack_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" "ultimate;aghanim's scepter" //"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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "200" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana" "150" } } } //================================================================================================================= // 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.mdl" "FightRecapLevel" "2" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1800" "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_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastPoint" "0.0" "AbilityCooldown" "195.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "375" "ItemCost" "5300" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "250" } "03" { "var_type" "FIELD_INTEGER" "bonus_damage" "20" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_assault" "ItemRequirements" { "01" "item_platemail;item_hyperstone;item_chainmail" } } //================================================================================================================= // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5250" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "35" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "03" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "04" { "var_type" "FIELD_INTEGER" "aura_attack_speed" "20" } "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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_heart" "ItemRequirements" { "01" "item_reaver;item_vitality_booster" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "7.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5500" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "40" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "300" } "03" { "var_type" "FIELD_FLOAT" "health_regen_rate" "3.25" } "04" { "var_type" "FIELD_INTEGER" "cooldown_melee" "5" } "05" { "var_type" "FIELD_INTEGER" "cooldown_ranged_tooltip" "7" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1375" "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" "80 75 70 65 60 55" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3975" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "03" { "var_type" "FIELD_FLOAT" "duration" "10.0 9.0 8.0 7.0 6.0 5.0" } "04" { "var_type" "FIELD_INTEGER" "max_level" "6" } "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.mdl" "FightRecapLevel" "2" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" "ItemQuality" "artifact" // Items //------------------------------------------------------------------------------------------------------------- "ItemPurchasable" "0" "ItemDroppable" "0" "ItemSellable" "0" "ItemKillable" "1" "ItemContributesToNetWorthWhenDropped" "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" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "600" "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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "4700" "ItemShopTags" "int;armor;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "shiva's guard" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // 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" "900" } "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" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_bloodstone" "ItemRequirements" { "01" "item_soul_ring;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_POINT" "FightRecapLevel" "2" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "150" "AbilityCastPoint" "0.0" "AbilityCooldown" "300.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4900" "ItemShopTags" "regen_health;regen_mana;mana_pool;health_pool" "ItemQuality" "epic" "ItemAliases" "bs;bloodstone" "ItemInitialCharges" "8" "ItemDisplayCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "500" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "400" } "03" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "9" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "200" } "05" { "var_type" "FIELD_INTEGER" "charge_range" "1600" } "06" { "var_type" "FIELD_INTEGER" "heal_on_death_range" "1675" } "07" { "var_type" "FIELD_INTEGER" "heal_on_death_base" "500" } "08" { "var_type" "FIELD_INTEGER" "heal_on_death_per_charge" "30" } "09" { "var_type" "FIELD_INTEGER" "vision_on_death_radius" "1800" } "10" { "var_type" "FIELD_FLOAT" "respawn_time_reduction" "4.0" } "11" { "var_type" "FIELD_INTEGER" "death_gold_reduction" "25" } "12" { "var_type" "FIELD_FLOAT" "on_death_removal" "0.67" //33% gone } "13" { "var_type" "FIELD_INTEGER" "bonus_damage" "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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1325" "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" "16.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5175" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "15" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "150" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } "05" { "var_type" "FIELD_FLOAT" "block_cooldown" "16.0" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_lotus_orb" "ItemRequirements" { "01" "item_pers;item_platemail" } } //================================================================================================================= // 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" "17.0" "AbilityCastRange" "900" "AbilityManaCost" "100" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4050" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "5" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "125" } "05" { "var_type" "FIELD_FLOAT" "active_duration" "6" } "06" { "var_type" "FIELD_FLOAT" "cast_range_tooltip" "900" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_vanguard" "ItemRequirements" { "01" "item_ring_of_health;item_vitality_booster;item_stout_shield" } } //================================================================================================================= // 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" "2175" "ItemShopTags" "regen_health;block;health_pool" "ItemQuality" "epic" "ItemAliases" "vanguard" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "6" } "03" { "var_type" "FIELD_INTEGER" "block_chance" "75" } "04" { "var_type" "FIELD_INTEGER" "block_damage_melee" "40" } "05" { "var_type" "FIELD_INTEGER" "block_damage_ranged" "20" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "825" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_crimson_guard" "ItemRequirements" { "01" "item_vanguard;item_buckler" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "70.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3800" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "2" } "04" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "05" { "var_type" "FIELD_INTEGER" "block_chance" "75" } "06" { "var_type" "FIELD_INTEGER" "block_damage_melee" "40" } "07" { "var_type" "FIELD_INTEGER" "block_damage_ranged" "20" } "08" { "var_type" "FIELD_INTEGER" "bonus_aoe_armor" "2" } "09" { "var_type" "FIELD_INTEGER" "duration" "10" } "10" { "var_type" "FIELD_INTEGER" "bonus_aoe_radius" "900" } "11" { "var_type" "FIELD_INTEGER" "block_damage_melee_active" "55" } "12" { "var_type" "FIELD_INTEGER" "block_damage_ranged_active" "55" } "13" { "var_type" "FIELD_INTEGER" "block_chance_active" "100" } } } //================================================================================================================= // 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.mdl" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_blade_mail" "ItemRequirements" { "01" "item_broadsword;item_chainmail;item_robe" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "15.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "25" "ItemCost" "2200" "ItemShopTags" "damage;armor;int;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "blade mail" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "22" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "04" { "var_type" "FIELD_FLOAT" "duration" "4.5" } } } //================================================================================================================= // 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" } } //================================================================================================================= // Soul 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" "3200" "ItemShopTags" "regen_health;regen_mana;health_pool;mana_pool" "ItemQuality" "epic" "ItemAliases" "soul booster" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health" "450" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "400" } "03" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "4" } "04" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "100" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_hood_of_defiance" "ItemRequirements" { "01" "item_ring_of_health;item_cloak;item_ring_of_regen;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_PASSIVE" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2125" "ItemShopTags" "regen_health;magic_resist" "ItemQuality" "epic" "ItemAliases" "hood of defiance" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_spell_resist" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "9" } "03" { "var_type" "FIELD_INTEGER" "tooltip_resist" "30" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "6200" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "330" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_monkey_king_bar" "ItemRequirements" { "01" "item_demon_edge;item_javelin;item_javelin" } } //================================================================================================================= // 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" "5400" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "88" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "15" } "03" { "var_type" "FIELD_INTEGER" "bash_chance" "35" } "04" { "var_type" "FIELD_INTEGER" "bash_damage" "100" } "05" { "var_type" "FIELD_FLOAT" "bash_stun" "0.01" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1425" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_radiance" "ItemRequirements" { "01" "item_relic" } } //================================================================================================================= // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5225" "ItemShopTags" "damage" "ItemQuality" "epic" "ItemAliases" "radiance" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "65" } "02" { "var_type" "FIELD_INTEGER" "aura_damage" "50" } "03" { "var_type" "FIELD_INTEGER" "blind_pct" "17" } "04" { "var_type" "FIELD_INTEGER" "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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "35.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5875" "ItemShopTags" "agi;damage;evasion;attack_speed" "ItemQuality" "epic" "ItemAliases" "bfly;butterfly" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "30" } "03" { "var_type" "FIELD_INTEGER" "bonus_evasion" "35" } "04" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "05" { "var_type" "FIELD_INTEGER" "bonus_move_speed" "25" } "06" { "var_type" "FIELD_FLOAT" "duration" "6" } } } //================================================================================================================= // 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.mdl" // 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" "5520" "ItemShopTags" "damage;crit" "ItemQuality" "epic" "ItemAliases" "daedalus" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "81" } "02" { "var_type" "FIELD_INTEGER" "crit_chance" "25" } "03" { "var_type" "FIELD_INTEGER" "crit_multiplier" "240" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1000" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_basher" "ItemRequirements" { "01" "item_belt_of_strength;item_javelin" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.3" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "2950" "ItemShopTags" "damage;str;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "skull basher" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "8" } "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.4" } "06" { "var_type" "FIELD_FLOAT" "bash_cooldown" "2.3" } "07" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "60" } } } //================================================================================================================= // 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" "5.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "4575" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "55" } "02" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "150" } "04" { "var_type" "FIELD_INTEGER" "cleave_damage_percent" "35" } "05" { "var_type" "FIELD_INTEGER" "quelling_bonus" "160" } "06" { "var_type" "FIELD_INTEGER" "quelling_bonus_ranged" "125" } "07" { "var_type" "FIELD_INTEGER" "cleave_radius" "280" } "08" { "var_type" "FIELD_INTEGER" "cast_range_tooltip" "350" } "09" { "var_type" "FIELD_INTEGER" "cast_range_ward" "450" } } } //================================================================================================================= // 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.mdl" "FightRecapLevel" "1" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "800" "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" "50.0" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "165" "ItemCost" "4950" "ItemShopTags" "agi;str;int;attack_speed;move_speed;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "manta style" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // 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" "15" } "05" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "10" } "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_melee" "250" } "11" { "var_type" "FIELD_INTEGER" "tooltip_damage_incoming_melee_total_pct" "350" } "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_INTEGER" "images_take_damage_percent_ranged" "300" } "15" { "var_type" "FIELD_INTEGER" "tooltip_damage_incoming_ranged_total_pct" "400" } "16" { "var_type" "FIELD_FLOAT" "cooldown_melee" "35.0" } "17" { "var_type" "FIELD_INTEGER" "cooldown_ranged_tooltip" "50" } "18" { "var_type" "FIELD_FLOAT" "invuln_duration" "0.1" } "19" { "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.mdl" // 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" "2120" "ItemShopTags" "damage;crit" "ItemQuality" "epic" "ItemAliases" "crystalys" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "30" } "02" { "var_type" "FIELD_INTEGER" "crit_chance" "20" } "03" { "var_type" "FIELD_INTEGER" "crit_multiplier" "175" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "500" "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" "2370" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "25" } "03" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "04" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "7" } "05" { "var_type" "FIELD_INTEGER" "unholy_bonus_damage" "31" } "06" { "var_type" "FIELD_INTEGER" "unholy_bonus_attack_speed" "0" } "07" { "var_type" "FIELD_INTEGER" "unholy_bonus_strength" "25" } "08" { "var_type" "FIELD_INTEGER" "unholy_health_drain_per_tick" "4" } "09" { "var_type" "FIELD_INTEGER" "unholy_health_drain_per_second_tooltip" "40" } "10" { "var_type" "FIELD_FLOAT" "toggle_cooldown" "0.036f" } } } //================================================================================================================= // 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_claymore" } } //================================================================================================================= // 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" "28.0" "AbilitySharedCooldown" "shadow_blade" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "2800" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "22" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "03" { "var_type" "FIELD_FLOAT" "windwalk_duration" "14.0" } "04" { "var_type" "FIELD_INTEGER" "windwalk_movement_speed" "20" } "05" { "var_type" "FIELD_FLOAT" "windwalk_fade_time" "0.3" } "06" { "var_type" "FIELD_INTEGER" "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" "600" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_silver_edge" "ItemRequirements" { "01" "item_invis_sword;item_sange" } } //================================================================================================================= // 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" "24.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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "32" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "30" } "03" { "var_type" "FIELD_INTEGER" "bonus_strength" "16" } "04" { "var_type" "FIELD_INTEGER" "maim_chance" "15" } "05" { "var_type" "FIELD_INTEGER" "maim_movement_speed" "-20" } "06" { "var_type" "FIELD_INTEGER" "maim_attack_speed" "-20" } "07" { "var_type" "FIELD_FLOAT" "maim_duration" "4.0" } "08" { "var_type" "FIELD_FLOAT" "windwalk_duration" "14.0" } "09" { "var_type" "FIELD_INTEGER" "windwalk_movement_speed" "20" } "10" { "var_type" "FIELD_FLOAT" "windwalk_fade_time" "0.3" } "11" { "var_type" "FIELD_INTEGER" "windwalk_bonus_damage" "225" } "12" { "var_type" "FIELD_INTEGER" "backstab_slow" "0" } "13" { "var_type" "FIELD_INTEGER" "backstab_reduction" "-40" } "14" { "var_type" "FIELD_FLOAT" "backstab_duration" "5" } "15" { "var_type" "FIELD_FLOAT" "backstab_duration_range" "5" } } } //================================================================================================================= // 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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "16" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "16" } "03" { "var_type" "FIELD_INTEGER" "bonus_agility" "16" } "04" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "16" } "05" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "16" } "06" { "var_type" "FIELD_INTEGER" "maim_chance" "16" } "07" { "var_type" "FIELD_INTEGER" "maim_slow_movement" "-32" } "08" { "var_type" "FIELD_INTEGER" "maim_slow_attack" "-32" } "09" { "var_type" "FIELD_FLOAT" "maim_duration" "5.0" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_satanic" "ItemRequirements" { "01" "item_reaver;item_helm_of_the_dominator" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "35.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "5950" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "20" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "25" } "03" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "04" { "var_type" "FIELD_INTEGER" "lifesteal_percent" "25" } "05" { "var_type" "FIELD_INTEGER" "unholy_lifesteal_percent" "175" } "06" { "var_type" "FIELD_INTEGER" "unholy_lifesteal_total_tooltip" "200" } "07" { "var_type" "FIELD_FLOAT" "unholy_duration" "4" } } } //================================================================================================================= // 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.mdl" // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "35.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "5700" "ItemShopTags" "damage;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "mjollnir" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "80" } "03" { "var_type" "FIELD_FLOAT" "static_duration" "15.0" } "04" { "var_type" "FIELD_INTEGER" "static_chance" "20" } "05" { "var_type" "FIELD_INTEGER" "static_strikes" "4" } "06" { "var_type" "FIELD_INTEGER" "static_damage" "200" } "07" { "var_type" "FIELD_INTEGER" "static_primary_radius" "600" } "08" { "var_type" "FIELD_INTEGER" "static_seconary_radius" "900" } "09" { "var_type" "FIELD_INTEGER" "static_radius" "900" } "10" { "var_type" "FIELD_FLOAT" "static_cooldown" "1.0" } "11" { "var_type" "FIELD_INTEGER" "chain_chance" "25" } "12" { "var_type" "FIELD_INTEGER" "chain_damage" "150" } "13" { "var_type" "FIELD_INTEGER" "chain_strikes" "8" } "14" { "var_type" "FIELD_INTEGER" "chain_radius" "900" } "15" { "var_type" "FIELD_FLOAT" "chain_delay" "0.25" } } } //================================================================================================================= // 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;item_orb_of_venom" } } //================================================================================================================= // 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" "5675" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "250" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } "04" { "var_type" "FIELD_INTEGER" "cold_movement_speed" "-35" } "05" { "var_type" "FIELD_INTEGER" "cold_attack_speed" "-45" } "06" { "var_type" "FIELD_FLOAT" "cold_duration_melee" "5.0" } "07" { "var_type" "FIELD_FLOAT" "cold_duration_ranged" "2.5" } } } //================================================================================================================= // 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.mdl" // 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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "16" } "03" { "var_type" "FIELD_INTEGER" "maim_chance" "15" } "04" { "var_type" "FIELD_INTEGER" "maim_movement_speed" "-20" } "05" { "var_type" "FIELD_INTEGER" "maim_attack_speed" "-20" } "06" { "var_type" "FIELD_FLOAT" "maim_duration" "4.0" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_helm_of_the_dominator" "ItemRequirements" { "01" "item_lifesteal;item_helm_of_iron_will" } } //================================================================================================================= // 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" "60.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "75" "ItemCost" "1850" "ItemShopTags" "damage;armor;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "hotd;helm of the dominator" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "20" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "03" { "var_type" "FIELD_INTEGER" "bonus_regen" "3" } "04" { "var_type" "FIELD_INTEGER" "lifesteal_percent" "15" } "05" { "var_type" "FIELD_FLOAT" "dominate_duration" "1200.0" } "06" { "var_type" "FIELD_INTEGER" "health_bonus" "500" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_maelstrom" "ItemRequirements" { "01" "item_mithril_hammer;item_gloves" } } //================================================================================================================= // 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" "2800" "ItemShopTags" "damage;attack_speed;unique" "ItemQuality" "artifact" "ItemAliases" "maelstrom" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "24" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "25" } "03" { "var_type" "FIELD_INTEGER" "chain_chance" "25" } "04" { "var_type" "FIELD_INTEGER" "chain_damage" "120" } "05" { "var_type" "FIELD_INTEGER" "chain_strikes" "4" } "06" { "var_type" "FIELD_INTEGER" "chain_radius" "900" } "07" { "var_type" "FIELD_FLOAT" "chain_delay" "0.25" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "300" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_desolator" "ItemRequirements" { "01" "item_mithril_hammer;item_mithril_hammer" } } //================================================================================================================= // 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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "50" } "02" { "var_type" "FIELD_INTEGER" "corruption_armor" "-7" } "03" { "var_type" "FIELD_FLOAT" "corruption_duration" "15.0" } } } //================================================================================================================= // 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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "16" } "02" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "15" } "03" { "var_type" "FIELD_INTEGER" "movement_speed_percent_bonus" "10" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "900" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_mask_of_madness" "ItemRequirements" { "01" "item_lifesteal" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "25.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "25" "ItemCost" "1800" "ItemShopTags" "unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "mom;mask of madness" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "lifesteal_percent" "20" } "02" { "var_type" "FIELD_INTEGER" "berserk_bonus_attack_speed" "100" } "03" { "var_type" "FIELD_INTEGER" "berserk_bonus_movement_speed" "17" } "04" { "var_type" "FIELD_INTEGER" "berserk_extra_damage" "30" } "05" { "var_type" "FIELD_FLOAT" "berserk_duration" "12.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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "700" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_diffusal_blade" "ItemRequirements" { "01" "item_blade_of_alacrity;item_blade_of_alacrity;item_robe" } } "item_recipe_diffusal_blade_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "195" // 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_diffusal_blade_2" "ItemRequirements" { "01" "item_diffusal_blade;item_recipe_diffusal_blade" } } //================================================================================================================= // 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_BOTH" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCastPoint" "0.0" "AbilityCooldown" "8.0" "AbilitySharedCooldown" "diffusal" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "3150" "ItemShopTags" "agi;int;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "diffusal blade 1" "ItemBaseLevel" "1" "ItemPermanent" "1" "ItemInitialCharges" "8" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "MaxUpgradeLevel" "2" "ItemBaseLevel" "1" "UpgradesItems" "item_diffusal_blade" "UpgradeRecipe" "item_recipe_diffusal_blade" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "20 35" } "02" { "var_type" "FIELD_INTEGER" "bonus_intellect" "6 10" } "03" { "var_type" "FIELD_INTEGER" "initial_charges" "8" } "04" { "var_type" "FIELD_INTEGER" "feedback_mana_burn" "25" } "05" { "var_type" "FIELD_INTEGER" "feedback_mana_burn_ranged" "25" } "06" { "var_type" "FIELD_INTEGER" "purge_summoned_damage" "99999" } "07" { "var_type" "FIELD_INTEGER" "purge_rate" "5" } "08" { "var_type" "FIELD_FLOAT" "purge_root_duration" "3.0" } "09" { "var_type" "FIELD_FLOAT" "purge_slow_duration" "4.0" } "10" { "var_type" "FIELD_FLOAT" "damage_per_burn" "1.0" } "11" { "var_type" "FIELD_INTEGER" "cast_range_tooltip" "600" } } } "item_diffusal_blade_2" { // General //------------------------------------------------------------------------------------------------------------- "ID" "196" // 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" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "600" "AbilityCastPoint" "0.0" "AbilityCooldown" "8.0" "AbilitySharedCooldown" "diffusal" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_NEVER" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "3850" "ItemShopTags" "agi;int;unique;hard_to_tag" "ItemQuality" "artifact" "ItemAliases" "diffusal blade 2" "ItemPermanent" "1" "ItemInitialCharges" "8" "ItemRequiresCharges" "1" "ItemDisplayCharges" "1" "MaxUpgradeLevel" "2" "ItemBaseLevel" "2" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "20 35" } "02" { "var_type" "FIELD_INTEGER" "bonus_intellect" "6 10" } "03" { "var_type" "FIELD_INTEGER" "initial_charges" "8" } "04" { "var_type" "FIELD_INTEGER" "feedback_mana_burn" "25" } "05" { "var_type" "FIELD_INTEGER" "feedback_mana_burn_ranged" "25" } "06" { "var_type" "FIELD_INTEGER" "purge_summoned_damage" "99999" } "07" { "var_type" "FIELD_INTEGER" "purge_rate" "5" } "08" { "var_type" "FIELD_FLOAT" "purge_root_duration" "3.0" } "09" { "var_type" "FIELD_FLOAT" "purge_slow_duration" "4.0" } "10" { "var_type" "FIELD_FLOAT" "damage_per_burn" "1.0" } "11" { "var_type" "FIELD_INTEGER" "cast_range_tooltip" "600" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ethereal_blade" "ItemRequirements" { "01" "item_eagle;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" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "800" "AbilityCastPoint" "0.0" "AbilityCooldown" "30.0" "AbilitySharedCooldown" "ethereal" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "150" "ItemCost" "4700" "ItemShopTags" "agi;str;int;hard_to_tag" "ItemQuality" "epic" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemAliases" "eb;ethereal blade" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_agility" "40" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "10" } "03" { "var_type" "FIELD_INTEGER" "bonus_intellect" "10" } "04" { "var_type" "FIELD_INTEGER" "blast_movement_slow" "-80" } "05" { "var_type" "FIELD_FLOAT" "duration" "3.0" } "06" { "var_type" "FIELD_FLOAT" "blast_agility_multiplier" "2.0" } "07" { "var_type" "FIELD_INTEGER" "blast_damage_base" "75" } "08" { "var_type" "FIELD_FLOAT" "duration_ally" "4.0" } "09" { "var_type" "FIELD_INTEGER" "ethereal_damage_bonus" "-40" } "10" { "var_type" "FIELD_INTEGER" "projectile_speed" "1200" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "125" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_soul_ring" "ItemRequirements" { "01" "item_ring_of_regen;item_sobi_mask" } } //================================================================================================================= // 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" "30.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "800" "ItemShopTags" "regen_health;boost_mana" "ItemQuality" "common" "ItemAliases" "soul ring" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "health_regen" "3" } "02" { "var_type" "FIELD_INTEGER" "mana_regen" "50" } "03" { "var_type" "FIELD_INTEGER" "health_sacrifice" "150" } "04" { "var_type" "FIELD_INTEGER" "mana_gain" "150" } "05" { "var_type" "FIELD_INTEGER" "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" "1350" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement" "55" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } "03" { "var_type" "FIELD_INTEGER" "replenish_amount" "135" } "04" { "var_type" "FIELD_INTEGER" "replenish_radius" "900" } } } //================================================================================================================= // 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_mystic_staff;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" "5900" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intelligence" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "450" } "03" { "var_type" "FIELD_INTEGER" "bonus_mana" "400" } "04" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "4" } "05" { "var_type" "FIELD_INTEGER" "bonus_mana_regen" "100" } "06" { "var_type" "FIELD_INTEGER" "bonus_cooldown" "25" } "07" { "var_type" "FIELD_FLOAT" "hero_lifesteal" "25" } "08" { "var_type" "FIELD_FLOAT" "creep_lifesteal" "5" } "09" { "var_type" "FIELD_INTEGER" "active_duration" "7" } } } //================================================================================================================= // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "275" "ItemShopTags" "hard_to_tag" "ItemQuality" "component" "ItemAliases" "orb of venom" "SideShop" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "poison_damage" "3.0" } "02" { "var_type" "FIELD_INTEGER" "poison_movement_speed_melee" "-12" } "03" { "var_type" "FIELD_INTEGER" "poison_movement_speed_range" "-4" } "04" { "var_type" "FIELD_FLOAT" "poison_duration" "4.0" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "875" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_ancient_janggo" "ItemRequirements" { "01" "item_robe;item_bracer" "02" "item_ancient_janggo" } } //================================================================================================================= // 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" "ItemPermanent" "1" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "30.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1850" "ItemShopTags" "str;agi;int;damage;move_speed;attack_speed;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "drum of endurance" "ItemInitialCharges" "6" "ItemDisplayCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_stats" "9" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_aura_attack_speed_pct" "5" } "04" { "var_type" "FIELD_INTEGER" "bonus_aura_movement_speed_pct" "5" } "05" { "var_type" "FIELD_INTEGER" "bonus_attack_speed_pct" "20" } "06" { "var_type" "FIELD_INTEGER" "bonus_movement_speed_pct" "10" } "07" { "var_type" "FIELD_INTEGER" "duration" "6" } "08" { "var_type" "FIELD_INTEGER" "radius" "900" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "325" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_medallion_of_courage" "ItemRequirements" { "01" "item_chainmail;item_sobi_mask" } } //================================================================================================================= // 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 | DOTA_UNIT_TARGET_MECHANICAL" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1000" "AbilityCooldown" "7.0" "AbilitySharedCooldown" "medallion" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1200" "ItemShopTags" "armor;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "medallion of courage" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "7" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana_regen_pct" "50" } "03" { "var_type" "FIELD_INTEGER" "armor_reduction" "-7" } "04" { "var_type" "FIELD_INTEGER" "duration" "7" } "05" { "var_type" "FIELD_INTEGER" "valor_cast_range_tooltip" "1000" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_solar_crest" "ItemRequirements" { "01" "item_medallion_of_courage;item_talisman_of_evasion" } } //================================================================================================================= // 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 | DOTA_UNIT_TARGET_MECHANICAL" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1000" "AbilityCooldown" "7.0" "AbilitySharedCooldown" "medallion" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "3000" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemShopTags" "armor;regen_mana;hard_to_tag" "ItemQuality" "rare" "ItemAliases" "solar crest" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_armor" "10" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana_regen_pct" "75" } "03" { "var_type" "FIELD_INTEGER" "bonus_evasion" "30" } "04" { "var_type" "FIELD_INTEGER" "allied_armor" "10" } "05" { "var_type" "FIELD_INTEGER" "allied_evasion" "30" } "06" { "var_type" "FIELD_INTEGER" "armor_reduction" "-10" } "07" { "var_type" "FIELD_INTEGER" "enemy_armor_reduction_tooltip" "10" } "08" { "var_type" "FIELD_INTEGER" "miss_chance" "30" } "09" { "var_type" "FIELD_INTEGER" "duration" "7" } "10" { "var_type" "FIELD_INTEGER" "valor_cast_range_tooltip" "1000" } } } //================================================================================================================= // 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.mdl" "Effect" "dropped_smoke" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "90.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "100" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemAliases" "smoke of deceit" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemDisplayCharges" "1" "ItemStockMax" "3" "ItemStockTime" "720.0" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_TO_SPECTATORS" "ItemSupport" "1" "ItemAlertable" "1" // 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" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1100" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_veil_of_discord" "ItemRequirements" { "01" "item_helm_of_iron_will;item_null_talisman" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20" "AbilityCastRange" "1000" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "2520" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "6" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "6" } "03" { "var_type" "FIELD_INTEGER" "bonus_stats" "6" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "6" } "05" { "var_type" "FIELD_INTEGER" "resist_debuff" "-25" } "06" { "var_type" "FIELD_INTEGER" "debuff_radius" "600" } "07" { "var_type" "FIELD_FLOAT" "resist_debuff_duration" "16.0" } } } //================================================================================================================= // 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.mdl" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1650" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_guardian_greaves" "ItemRequirements" { "01" "item_mekansm;item_arcane_boots" } } //================================================================================================================= // 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" "45" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" "ItemCost" "5300" "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" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement" "55" } "02" { "var_type" "FIELD_INTEGER" "bonus_mana" "250" } "03" { "var_type" "FIELD_INTEGER" "bonus_all_stats" "5" } "04" { "var_type" "FIELD_INTEGER" "bonus_armor" "5" } "05" { "var_type" "FIELD_INTEGER" "aura_health_regen" "4" } "06" { "var_type" "FIELD_INTEGER" "aura_armor" "2" } "07" { "var_type" "FIELD_INTEGER" "aura_health_regen_bonus" "15" } "08" { "var_type" "FIELD_INTEGER" "aura_armor_bonus" "15" } "09" { "var_type" "FIELD_INTEGER" "aura_bonus_threshold" "20" } "10" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "11" { "var_type" "FIELD_INTEGER" "replenish_health" "250" } "12" { "var_type" "FIELD_INTEGER" "replenish_mana" "160" } "13" { "var_type" "FIELD_INTEGER" "replenish_radius" "900" } "14" { "var_type" "FIELD_FLOAT" "stack_duration_limit" "45" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_rod_of_atos" "ItemRequirements" { "01" "item_vitality_booster;item_staff_of_wizardry;item_staff_of_wizardry" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "10" "AbilityCastRange" "1200" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "50" "ItemCost" "3100" "ItemShopTags" "int;regen_health" "ItemQuality" "rare" "ItemAliases" "rod of atos" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_intellect" "30" } "02" { "var_type" "FIELD_INTEGER" "bonus_health" "350" } "03" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "0" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage" "0" } "05" { "var_type" "FIELD_INTEGER" "slow" "60" } "06" { "var_type" "FIELD_FLOAT" "duration" "4.0" } } } //================================================================================================================= // 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" "0" "ItemShopTags" "" // Recipe //------------------------------------------------------------------------------------------------------------- "ItemRecipe" "1" "ItemResult" "item_abyssal_blade" "ItemRequirements" { "01" "item_basher;item_relic" } } //================================================================================================================= // 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" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "60" "AbilityCastRange" "140" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "150" "ItemCost" "6750" "ItemShopTags" "damage;str;hard_to_tag" "ItemQuality" "epic" "ItemAliases" "abyssal blade" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "85" } "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.4" } "06" { "var_type" "FIELD_INTEGER" "bonus_chance_damage" "60" } "07" { "var_type" "FIELD_FLOAT" "bash_cooldown" "2.3" } "08" { "var_type" "FIELD_FLOAT" "stun_duration" "2" } } } //================================================================================================================= // 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" "0" "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" "30" "AbilityCastRange" "600" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "100" "ItemCost" "3850" "ItemShopTags" "str;damage;evasion" "ItemQuality" "artifact" "ItemAliases" "heaven's halberd" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_evasion" "25" } "02" { "var_type" "FIELD_INTEGER" "bonus_damage" "25" } "03" { "var_type" "FIELD_INTEGER" "bonus_strength" "20" } "04" { "var_type" "FIELD_INTEGER" "maim_chance" "15" } "05" { "var_type" "FIELD_INTEGER" "maim_movement_speed" "-20" } "06" { "var_type" "FIELD_INTEGER" "maim_attack_speed" "-20" } "07" { "var_type" "FIELD_FLOAT" "maim_duration" "4.0" } "08" { "var_type" "FIELD_FLOAT" "disarm_range" "4.5" } "09" { "var_type" "FIELD_FLOAT" "disarm_melee" "3.0" } "10" { "var_type" "FIELD_INTEGER" "disarm_cast_range_tooltip" "600" } } } //================================================================================================================= // 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" "" // 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" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1010" "ItemShopTags" "" "ItemQuality" "rare" "ItemAliases" "roa;ring of aquila" "ItemShareability" "" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpRingShop" "UIDropSound" "Item.DropRingShop" "WorldDropSound" "Item.DropRingWorld" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "9" } "02" { "var_type" "FIELD_INTEGER" "bonus_strength" "3" } "03" { "var_type" "FIELD_INTEGER" "bonus_agility" "9" } "04" { "var_type" "FIELD_INTEGER" "bonus_intellect" "3" } "05" { "var_type" "FIELD_INTEGER" "bonus_armor" "1" } "06" { "var_type" "FIELD_INTEGER" "aura_radius" "900" } "07" { "var_type" "FIELD_FLOAT" "aura_mana_regen" "0.65" } "08" { "var_type" "FIELD_INTEGER" "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_ring_of_protection;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" "1000" "ItemShopTags" "move_speed;regen_health;armor" "ItemQuality" "rare" "ItemAliases" "tranquil boots" "ItemHideCharges" "1" "ItemDeclarations" "DECLARE_PURCHASES_TO_SPECTATORS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "90" } "02" { "var_type" "FIELD_INTEGER" "bonus_armor" "4" } "03" { "var_type" "FIELD_INTEGER" "bonus_health_regen" "12" } "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" "60" } } } //================================================================================================================= // 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" "10.0" "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1400" "ItemShopTags" "" "ItemAliases" "shadow amulet" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "20" } "02" { "var_type" "FIELD_FLOAT" "fade_time" "1.5" } } } //================================================================================================================= // 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" "0" "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" "FightRecapLevel" "1" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "900" "AbilityCooldown" "16.0" "AbilityManaCost" "130" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "1950" "ItemShopTags" "" "ItemQuality" "rare" "ItemAliases" "glimmer cape" "ItemDisassembleRule" "DOTA_ITEM_DISASSEMBLE_ALWAYS" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_attack_speed" "20" } "02" { "var_type" "FIELD_INTEGER" "bonus_magical_armor" "20" } "03" { "var_type" "FIELD_FLOAT" "fade_delay" "0.4" } "04" { "var_type" "FIELD_INTEGER" "active_magical_armor" "55" } "05" { "var_type" "FIELD_FLOAT" "duration" "5" } } } // next free ID: who knows, if this is a real item find a number below 255 that hasn't been used //================================================================================================================ //================================================================================================================ // SPECIAL EVENT ITEMS WITH ITEM IDS GREATER THAN 255 GO BELOW HERE // THESE WILL NOT SHOW UP PROPERLY IN THE MATCH HISTORY DATABASE //================================================================================================================ //================================================================================================================ //================================================================================================================ // Halloween Candy Corn //================================================================================================================= "item_halloween_candy_corn" { // 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_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_DONT_RESUME_ATTACK" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_FRIENDLY | DOTA_UNIT_TARGET_TEAM_ENEMY" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_HERO | DOTA_UNIT_TARGET_BASIC | DOTA_UNIT_TARGET_BUILDING" "AbilityUnitTargetFlags" "DOTA_UNIT_TARGET_FLAG_INVULNERABLE" "Model" "models/props_gameplay/halloween_candy.mdl" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { } } //================================================================================================================= // Mystery Rune Meat Hook //================================================================================================================= "item_mystery_hook" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1001" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT" "AbilityUnitDamageType" "DAMAGE_TYPE_PURE" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1300" "AbilityCastPoint" "0.3" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "11.0" // Damage. //------------------------------------------------------------------------------------------------------------- "AbilityDamage" "360" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "140" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "hook_speed" "1600.0" } "02" { "var_type" "FIELD_INTEGER" "hook_width" "100" } "03" { "var_type" "FIELD_INTEGER" "hook_distance" "1300" } "04" { "var_type" "FIELD_INTEGER" "vision_radius" "500" } "05" { "var_type" "FIELD_FLOAT" "vision_duration" "4.0" } } } //================================================================================================================= // Mystery Rune Mirana Arrow //================================================================================================================= "item_mystery_arrow" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1002" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_DIRECTIONAL | DOTA_ABILITY_BEHAVIOR_POINT" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "3000" "AbilityCastPoint" "0.5" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.0" "AbilityDuration" "3.11" // Damage. //------------------------------------------------------------------------------------------------------------- "AbilityDamage" "360" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "arrow_speed" "857.0" } "02" { "var_type" "FIELD_INTEGER" "arrow_width" "115" } "03" { "var_type" "FIELD_INTEGER" "arrow_range" "3000" } "04" { "var_type" "FIELD_INTEGER" "arrow_max_stunrange" "1500" } "05" { "var_type" "FIELD_FLOAT" "arrow_min_stun" "0.5" } "06" { "var_type" "FIELD_FLOAT" "arrow_max_stun" "5.0" } } } //================================================================================================================= // Mystery Missile //================================================================================================================= "item_mystery_missile" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1003" // unique ID number for this ability. 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" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1050" "AbilityCastPoint" "0.3" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "20.0" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" // Damage. //------------------------------------------------------------------------------------------------------------- "AbilityDamage" "440" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "stun_duration" "2.5" } "02" { "var_type" "FIELD_INTEGER" "attack_speed_bonus_pct" "400" } "03" { "var_type" "FIELD_INTEGER" "min_damage" "50" } "04" { "var_type" "FIELD_INTEGER" "max_distance" "2000" } "05" { "var_type" "FIELD_INTEGER" "pre_flight_time" "3" } "06" { "var_type" "FIELD_INTEGER" "hero_damage" "34" } "07" { "var_type" "FIELD_FLOAT" "speed" "340" } "08" { "var_type" "FIELD_INTEGER" "acceleration" "20" } "09" { "var_type" "FIELD_INTEGER" "enemy_vision_time" "4" } } } //================================================================================================================= // Mystery Toss //================================================================================================================= "item_mystery_toss" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1004" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_UNIT_TARGET | DOTA_ABILITY_BEHAVIOR_AOE" "AbilityUnitTargetTeam" "DOTA_UNIT_TARGET_TEAM_CUSTOM" "AbilityUnitTargetType" "DOTA_UNIT_TARGET_CUSTOM" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "1300" "AbilityCastPoint" "0.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.0" // Damage. //------------------------------------------------------------------------------------------------------------- "AbilityDamage" "300" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityModifierSupportValue" "0.25" // generally used for damage only // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration" "1.0" } "02" { "var_type" "FIELD_INTEGER" "grab_radius" "250" } "03" { "var_type" "FIELD_INTEGER" "radius" "275" } "04" { "var_type" "FIELD_INTEGER" "bonus_damage_pct" "20" } "05" { "var_type" "FIELD_INTEGER" "grow_bonus_damage_pct" "80" } "06" { "var_type" "FIELD_INTEGER" "tooltip_range" "1300" } "07" { "var_type" "FIELD_INTEGER" "toss_damage" "300" } } } //================================================================================================================= // Mystery Vacuum //================================================================================================================= "item_mystery_vacuum" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1005" // unique ID number for this ability. Do not change this once established or it will invalidate collected stats. "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_POINT | DOTA_ABILITY_BEHAVIOR_AOE" "AbilityUnitDamageType" "DAMAGE_TYPE_MAGICAL" // Casting //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "500" "AbilityCastPoint" "0.4" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.0" // Cost //------------------------------------------------------------------------------------------------------------- "AbilityManaCost" "0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "radius" "550" } "02" { "var_type" "FIELD_FLOAT" "duration" "0.4" } "03" { "var_type" "FIELD_INTEGER" "damage" "160" } "04" { "var_type" "FIELD_INTEGER" "radius_tree" "275" } } } //================================================================================================================= // Halloween Rapier //================================================================================================================= "item_halloween_rapier" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1006" // 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" "6200" "ItemShopTags" "damage" "ItemQuality" "epic" "ItemShareability" "ITEM_NOT_SHAREABLE" "ItemDeclarations" "DECLARE_PURCHASES_TO_TEAMMATES | DECLARE_PURCHASES_IN_SPEECH | DECLARE_PURCHASES_TO_SPECTATORS" "ItemSellable" "0" "ItemKillable" "0" "ItemPurchasable" "0" "ItemInitialCharges" "3" "ItemPermanent" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_damage" "100" } } } //================================================================================================================ // //================================================================================================================= "item_greevil_whistle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1007" // 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_CHANNELLED" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCastPoint" "0.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "120.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "1" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "30" } "02" { "var_type" "FIELD_FLOAT" "transform_duration" "2" } } } //================================================================================================================ // Toggleable whistle //================================================================================================================= "item_greevil_whistle_toggle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1008" "AbilityBehavior" "DOTA_ABILITY_BEHAVIOR_NO_TARGET | DOTA_ABILITY_BEHAVIOR_CHANNELLED" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "0" "AbilityCastPoint" "0.0" "AbilityChannelTime" "2.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "2.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "1" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_FLOAT" "duration" "30" } "02" { "var_type" "FIELD_FLOAT" "transform_duration" "2" } } } //================================================================================================================ // XMas present //================================================================================================================= "item_present" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1009" // 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_winter/present.mdl" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" "ItemCastOnPickup" "1" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { } } //================================================================================================================ // Xmas Stocking //================================================================================================================= "item_winter_stocking" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1010" // 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" // Sound //------------------------------------------------------------------------------------------------------------- "UIPickupSound" "Item.PickUpGemShop" "UIDropSound" "Item.DropGemShop" "WorldDropSound" "Item.DropGemWorld" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "350" "AbilityCastPoint" "0.0" // Time //------------------------------------------------------------------------------------------------------------- "AbilityCooldown" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { } } //================================================================================================================= // XMas Skates //================================================================================================================= "item_winter_skates" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1011" // 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" "ItemShopTags" "move_speed" "ItemQuality" "component" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "bonus_movement_speed" "100" } } } //================================================================================================================= // Winter Cake //================================================================================================================= "item_winter_cake" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1012" // 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" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "5" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "8" } "02" { "var_type" "FIELD_INTEGER" "total_health" "400" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "50" } } } //================================================================================================================= // Winter Cookie //================================================================================================================= "item_winter_cookie" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1013" // 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" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "5" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "11" } "02" { "var_type" "FIELD_INTEGER" "total_health" "350" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "100" } } } //================================================================================================================= // Winter Coco //================================================================================================================= "item_winter_coco" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1014" // 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" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "5" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "14" } "02" { "var_type" "FIELD_INTEGER" "total_health" "300" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "150" } } } //================================================================================================================= // Winter Ham //================================================================================================================= "item_winter_ham" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1015" // 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" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "5" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "2" } "02" { "var_type" "FIELD_INTEGER" "total_health" "300" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "75" } } } //================================================================================================================= // Winter Kringle //================================================================================================================= "item_winter_kringle" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1016" // 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" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "5" "ItemPurchasable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "17" } "02" { "var_type" "FIELD_INTEGER" "total_health" "250" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "200" } } } //================================================================================================================= // Greevil Mushroom //================================================================================================================= "item_winter_mushroom" { // 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_IMMEDIATE | DOTA_ABILITY_BEHAVIOR_NO_TARGET" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { } } //================================================================================================================= // Greevil Treat //================================================================================================================= "item_winter_greevil_treat" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1018" // 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 //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "duration" "10" } } } //================================================================================================================= // Greevil Chow //================================================================================================================= "item_winter_greevil_garbage" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1019" // 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 //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "150" "AbilityCastPoint" "0.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "1" "ItemShareability" "ITEM_FULLY_SHAREABLE" "ItemPermanent" "0" "ItemInitialCharges" "2" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { "01" { "var_type" "FIELD_INTEGER" "buff_duration" "5" } "02" { "var_type" "FIELD_INTEGER" "total_health" "400" } "03" { "var_type" "FIELD_INTEGER" "total_mana" "150" } } } //================================================================================================================= // Greevil Blink dagger //================================================================================================================= "item_winter_greevil_chewy" { // General //------------------------------------------------------------------------------------------------------------- "ID" "1020" // 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_ROOT_DISABLES | DOTA_ABILITY_BEHAVIOR_CHANNELLED" // Stats //------------------------------------------------------------------------------------------------------------- "AbilityCastRange" "400" "AbilityCastPoint" "0.0" "AbilityCooldown" "10.0" "AbilityManaCost" "0" "AbilityChannelTime" "2.0" // Item Info //------------------------------------------------------------------------------------------------------------- "ItemCost" "0" "ItemShopTags" "consumable" "ItemQuality" "consumable" "ItemStackable" "0" "ItemShareability" "ITEM_FULLY_SHAREABLE_STACKING" "ItemPermanent" "1" "ItemInitialCharges" "1" "ItemPurchasable" "0" "ItemKillable" "0" "ItemDroppable" "0" "ItemSellable" "0" // Special //------------------------------------------------------------------------------------------------------------- "AbilitySpecial" { } } // next free ID: 1021 }