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

Merge branch 'thalore_buff' into 'master'

Thalore racial 1 buffs/tweaks

<br>
- Thalore regen duration down from 10 to 8 with scaling slightly increased to match old value. This means the regen is stronger each turn and over a shorter duration. Still long enough to keep the long duration, sustain thematic. Relatively small buff overall.

- Now additionally scales with higher of Wil OR Con. Some other racials already do similar things. Wil only feels a little restrictive, Con is more universally built/used, and is at least partially related to healmod/regen thematically.

- Changed the enhanced healmod buff to actually be a physical/natural with a new buff and use the racial 1 icon, it was previously magical and used BIL's icon, leftover from when it was Higher's.

- Updated some old code on the racial, thanks Bunny!

See merge request !596
parents f83e55c8 09083cd6
No related branches found
No related tags found
1 merge request!596Thalore racial 1 buffs/tweaks
Pipeline #
......@@ -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, 10, {power=5 + self:getWil() * 0.5})
self:setEffect(self.EFF_EMPOWERED_HEALING, 10, {power=t.getHealMod(self, t) / 100})
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 10 turns.
The life healed will increase with your Willpower.]]):format(5 + self:getWil() * 0.5, t.getHealMod(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(t.getHealing(self, t), t.getHealMod(self, t))
end,
}
......
......@@ -4291,4 +4291,20 @@ newEffect{
self:removeEffect(self.EFF_FORGONE_VISION)
end
end,
}
\ No newline at end of file
}
newEffect{
name = "GIFT_WOODS", image = "talents/thaloren_wrath.png",
desc = "Gift of the Woods",
long_desc = function(self, eff) return ("Increases the effectiveness of all healing the target receives by %d%%."):format(eff.power * 100) end,
type = "physical",
subtype = { nature=true },
status = "beneficial",
parameters = { power = 0.1 },
activate = function(self, eff)
eff.tmpid = self:addTemporaryValue("healing_factor", eff.power)
end,
deactivate = function(self, eff)
self:removeTemporaryValue("healing_factor", eff.tmpid)
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