Skip to content
Snippets Groups Projects
Commit 01a193a6 authored by DarkGod's avatar DarkGod
Browse files

Buffed Mind Parasite

parent 6021c046
No related branches found
No related tags found
No related merge requests found
......@@ -88,9 +88,9 @@ newTalent{
target = function(self, t) return {type="bolt", range=self:getTalentRange(t), talent=t, display={particle="bolt_slime", trail="slimetrail"}} end,
tactical = { DISABLE = 2 },
requires_target = true,
getChance = function(self, t) return math.min(100, 20 + self:combatTalentMindDamage(t, 10, 70)) end,
getNb = function(self, t) if self:getTalentLevel(t) <= 4 then return 1 else return 2 end end,
getTurns = function(self, t) if self:getTalentLevel(t) <= 3 then return 2 else return 3 end end,
getChance = function(self, t) return math.min(100, 30 + self:combatTalentMindDamage(t, 10, 70)) end,
getNb = function(self, t) return math.ceil(self:combatTalentLimit(t, 4, 1, 2)) end,
getTurns = function(self, t) return math.ceil(self:combatTalentLimit(t, 20, 2, 12)) end,
action = function(self, t)
local tg = self:getTalentTarget(t)
local x, y = self:getTarget(tg)
......
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