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

Reduced Slippery Moss fail chance a little

Reduced Slime Roots range


git-svn-id: http://svn.net-core.org/repos/t-engine4@6569 51575b47-30f0-44d4-a5cc-537603b46e54
parent ff2051bb
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ newTalent{
tactical = { ATTACKAREA = {NATURE=1}, DISABLE = {pin = 1} },
getDamage = function(self, t) return self:combatTalentMindDamage(t, 6, 40) end,
getDuration = function(self, t) return 3 + math.ceil(self:getTalentLevel(t)) end,
getFail = function(self, t) return 20 + math.ceil(self:getTalentLevel(t) * 6) end,
getFail = function(self, t) return math.min(50, 15 + math.ceil(self:getTalentLevel(t) * 4)) end,
range = 0,
radius = function(self, t)
return 2 + math.floor(self:getTalentLevelRaw(t)/2)
......
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