Skip to content
Snippets Groups Projects
Commit a1439a53 authored by Chris Davidson's avatar Chris Davidson
Browse files

Nerf Wraith Form duration above player TLs

Infinitely hiding in walls is an excellent gameplay feature and this commit is really bad.
parent f9fe5bee
No related branches found
No related tags found
1 merge request!5891.6.1 misc
......@@ -26,7 +26,7 @@ newTalent{
cooldown = 30,
no_energy = true,
tactical = { DEFEND = 1, ESCAPE = 1, CLOSEIN = 1 },
getDuration = function(self, t) return math.floor(self:combatTalentLimit(t, 30, 5, 9)) end, -- Limit < 30 (make sure they can't hide forever)
getDuration = function(self, t) return math.floor(self:combatTalentLimit(t, 15, 5, 9)) end, -- Limit < 30 (make sure they can't hide forever)
getDefs = function(self, t) return self:combatTalentScale(t, 5, 20), self:combatTalentScale(t, 5, 16) end,
action = function(self, t)
local def, armor = t.getDefs(self, 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