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

Non-necromancers can gain the Lich quest if they spend 5 points in Blurred Mortality

parent ab6173d0
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -23,6 +23,13 @@ newTalent{
require = spells_req1,
mode = "passive",
points = 5,
no_unlearn_last = true,
on_levelup_close = function(self, t)
if self ~= game:getPlayer(true) then return end
if not game.state.birth.supports_lich_transform then return end
if self:getTalentLevelRaw(t) < 5 then return end
self:grantQuest(game.state.birth.supports_lich_transform)
end,
getLifeBonus = function(self, t)
return self:combatTalentStatDamage(t, "con", 30, 1000)
end,
......
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