Commit cb1dec71 authored by JoyJ's avatar JoyJ

fix underlord; add alchemist

parent 22d65b13
...@@ -278,7 +278,8 @@ function X.ConsiderW() ...@@ -278,7 +278,8 @@ function X.ConsiderW()
local nCastPoint = abilityW:GetCastPoint() + 0.5 local nCastPoint = abilityW:GetCastPoint() + 0.5
local nManaCost = abilityW:GetManaCost() local nManaCost = abilityW:GetManaCost()
local nDamageType = DAMAGE_TYPE_MAGICAL local nDamageType = DAMAGE_TYPE_MAGICAL
local nRadius = abilityW:GetSpecialValueInt( "light_strike_array_aoe" ) local nRadius = 400
if nLV >= 27 then nRadius = 475 end
local nInRangeEnemyList = bot:GetNearbyHeroes( nCastRange + nRadius * 0.5, true, BOT_MODE_NONE ) local nInRangeEnemyList = bot:GetNearbyHeroes( nCastRange + nRadius * 0.5, true, BOT_MODE_NONE )
......
This diff is collapsed.
...@@ -174,6 +174,7 @@ local sHasDevelopmentHeroList = { ...@@ -174,6 +174,7 @@ local sHasDevelopmentHeroList = {
"npc_dota_hero_abaddon", "npc_dota_hero_abaddon",
"npc_dota_hero_abyssal_underlord", "npc_dota_hero_abyssal_underlord",
"npc_dota_hero_alchemist",
"npc_dota_hero_silencer", "npc_dota_hero_silencer",
"npc_dota_hero_warlock", "npc_dota_hero_warlock",
"npc_dota_hero_necrolyte", "npc_dota_hero_necrolyte",
...@@ -237,6 +238,7 @@ local sHasDevelopmentHeroList = { ...@@ -237,6 +238,7 @@ local sHasDevelopmentHeroList = {
local sFirstList = { local sFirstList = {
"npc_dota_hero_silencer", "npc_dota_hero_silencer",
"npc_dota_hero_alchemist",
"npc_dota_hero_warlock", "npc_dota_hero_warlock",
"npc_dota_hero_necrolyte", "npc_dota_hero_necrolyte",
"npc_dota_hero_oracle", "npc_dota_hero_oracle",
...@@ -372,6 +374,7 @@ local sMageList = { ...@@ -372,6 +374,7 @@ local sMageList = {
local sCarryList = { local sCarryList = {
"npc_dota_hero_antimage", "npc_dota_hero_antimage",
"npc_dota_hero_alchemist",
"npc_dota_hero_arc_warden", "npc_dota_hero_arc_warden",
"npc_dota_hero_bloodseeker", "npc_dota_hero_bloodseeker",
"npc_dota_hero_bristleback", "npc_dota_hero_bristleback",
...@@ -412,6 +415,7 @@ local sCarryList = { ...@@ -412,6 +415,7 @@ local sCarryList = {
local sTankList = { local sTankList = {
"npc_dota_hero_abaddon", "npc_dota_hero_abaddon",
"npc_dota_hero_alchemist",
"npc_dota_hero_bristleback", "npc_dota_hero_bristleback",
"npc_dota_hero_abyssal_underlord", "npc_dota_hero_abyssal_underlord",
"npc_dota_hero_chaos_knight", "npc_dota_hero_chaos_knight",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment