Skip to content
Snippets Groups Projects
Commit 09083cd6 authored by Sheila's avatar Sheila
Browse files

plop

parent 085593fc
No related branches found
No related tags found
1 merge request!596Thalore racial 1 buffs/tweaks
......@@ -318,14 +318,15 @@ newTalent{
tactical = { HEAL = 2 },
on_pre_use = function(self, t) return not self:hasEffect(self.EFF_REGENERATION) end,
getHealMod = function(self, t) return self:combatTalentLimit(t, 50, 10, 30) end,
getHealing = function(self, t) return 6 + math.max(self:getWil(), self:getCon()) * 0.6 end,
action = function(self, t)
self:setEffect(self.EFF_REGENERATION, 8, {power=5 + math.max(self:getWil(), self:getCon()) * 0.5})
self:setEffect(self.EFF_REGENERATION, 8, {power=t.getHealing(self, t)})
self:setEffect(self.EFF_GIFT_WOODS, 8, {power=t.getHealMod(self, t) / 100})
return true
end,
info = function(self, t)
return ([[Call upon nature to regenerate your body for %d life every turn and increase healing mod by %d%% for 8 turns.
The life healed will increase with your Willpower or Constitution (whichever is higher).]]):format(5 + math.max(self:getWil(), self:getCon()) * 0.5, t.getHealMod(self, t))
The life healed will increase with your Willpower or Constitution (whichever is higher).]]):format(t.getHealing(self, t), t.getHealMod(self, t))
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