Skip to content
Snippets Groups Projects
Commit 9ce9b671 authored by DarkGod's avatar DarkGod
Browse files

Fixed Uttercold piercing

parent 4dd00a05
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ newTalent{
tactical = { BUFF = 2 },
getColdDamageIncrease = function(self, t) return self:getTalentLevelRaw(t) * 2 end,
getResistPenalty = function(self, t) return self:combatTalentLimit(t, 100, 17, 50) end, -- Limit < 100
getPierce = function(self, t) return math.max(100, self:getTalentLevelRaw(t) * 20) end,
getPierce = function(self, t) return math.min(100, self:getTalentLevelRaw(t) * 20) end,
activate = function(self, t)
game:playSoundNear(self, "talents/ice")
......
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