Skip to content
Snippets Groups Projects
Commit bbf92430 authored by dg's avatar dg
Browse files

Pacification hex will now check for saving throw each time it applies the daze...

Pacification hex will now check for saving throw each time it applies the daze (it wont prevent applying the daze this time but if it fails it will remove the remaining hex)


git-svn-id: http://svn.net-core.org/repos/t-engine4@3816 51575b47-30f0-44d4-a5cc-537603b46e54
parent 747edbdb
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ newTalent{
local target = game.level.map(tx, ty, Map.ACTOR)
if not target or target == self then return end
if target:checkHit(self:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) then
target:setEffect(target.EFF_PACIFICATION_HEX, 20, {chance=self:combatTalentSpellDamage(t, 30, 50)})
target:setEffect(target.EFF_PACIFICATION_HEX, 20, {power=self:combatSpellpower(), chance=self:combatTalentSpellDamage(t, 30, 50)})
end
end)
game:playSoundNear(self, "talents/slime")
......
......@@ -1767,12 +1767,15 @@ newEffect{
long_desc = function(self, eff) return ("The target is hexed, granting it %d%% chance each turn to be dazed for 3 turns."):format(eff.chance) end,
type = "hex",
status = "detrimental",
parameters = {chance=10},
parameters = {chance=10, power=10},
on_gain = function(self, err) return "#Target# is hexed!", "+Pacification Hex" end,
on_lose = function(self, err) return "#Target# is free from the hex.", "-Pacification Hex" end,
-- Damage each turn
on_timeout = function(self, eff)
if not self:hasEffect(self.EFF_DAZED) and rng.percent(eff.chance) then self:setEffect(self.EFF_DAZED, 3, {}) end
if not self:hasEffect(self.EFF_DAZED) and rng.percent(eff.chance) then
self:setEffect(self.EFF_DAZED, 3, {})
if not self:checkHit(eff.power, self:combatSpellResist(), 0, 95, 15) then eff.dur = 0 end
end
end,
activate = function(self, eff)
self:setEffect(self.EFF_DAZED, 3, {})
......
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