Skip to content
Snippets Groups Projects
Commit c16224e9 authored by dg's avatar dg
Browse files

Aura of Silence do not apply on the user, to prevent brainlock

git-svn-id: http://svn.net-core.org/repos/t-engine4@5025 51575b47-30f0-44d4-a5cc-537603b46e54
parent a252ebcd
No related branches found
No related tags found
No related merge requests found
......@@ -1559,7 +1559,7 @@ function _M:createRandomBoss(base, data)
local t = b:getTalentFromId(tid)
if t then
print(" * talent", tid)
local max = (t.points == 1) and 1 or math.ceil(t.points * 1.6)
local max = (t.points == 1) and 1 or math.ceil(t.points * 1.4)
local step = max / 50
b.learn_tids[tid] = math.ceil(step * data.level)
end
......
......@@ -56,7 +56,7 @@ newTalent{
tactical = { DISABLE = { silence = 4 } },
radius = function(self, t) return 4 + self:getTalentLevel(t) * 1.5 end,
target = function(self, t)
return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), selffire=true, talent=t}
return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), selffire=false, talent=t}
end,
action = function(self, t)
local tg = self:getTalentTarget(t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment