diff --git a/game/modules/tome/class/interface/Combat.lua b/game/modules/tome/class/interface/Combat.lua index 1364a8184b047c3e7f8d905751e158639abf84e0..c1aeba37bd5d2872984674e7b8fb9d111e75e808 100644 --- a/game/modules/tome/class/interface/Combat.lua +++ b/game/modules/tome/class/interface/Combat.lua @@ -310,6 +310,13 @@ function _M:attackTargetWith(target, weapon, damtype, mult, force_dam) DamageType:get(DamageType.TEMPORAL).projector(self, target.x, target.y, DamageType.TEMPORAL, dam) end + -- Ruin + if hitted and not target.dead and self:knowTalent(self.T_RUIN) and self:isTalentActive(self.T_RUIN) then + local t = self:getTalentFromId(self.T_RUIN) + local dam = t.getDamage(self, t) + DamageType:get(DamageType.DRAINLIFE).projector(self, target.x, target.y, DamageType.DRAINLIFE, dam) + end + -- Autospell cast if hitted and not target.dead and self:knowTalent(self.T_ARCANE_COMBAT) and self:isTalentActive(self.T_ARCANE_COMBAT) then local t = self:getTalentFromId(self.T_ARCANE_COMBAT) diff --git a/game/modules/tome/data/talents/corruptions/scourge.lua b/game/modules/tome/data/talents/corruptions/scourge.lua index 8bd34b0eaf8a3028ab0ed34c6b04eaf779047f7c..fff40c3bd6cba508bf840e634312f95251af1be4 100644 --- a/game/modules/tome/data/talents/corruptions/scourge.lua +++ b/game/modules/tome/data/talents/corruptions/scourge.lua @@ -76,19 +76,17 @@ newTalent{ sustain_vim = 40, cooldown = 30, tactical = { BUFF = 2 }, + getDamage = function(self, t) return self:combatTalentSpellDamage(t, 15, 40) end, activate = function(self, t) game:playSoundNear(self, "talents/slime") - local ret = { - per = self:addTemporaryValue("melee_project", {[DamageType.DRAINLIFE] = self:combatTalentSpellDamage(t, 15, 40)}), - } + local ret = {} return ret end, deactivate = function(self, t, p) - self:removeTemporaryValue("melee_project", p.per) return true end, info = function(self, t) - local dam = damDesc(self, DamageType.BLIGHT, self:combatTalentSpellDamage(t, 15, 40)) + local dam = damDesc(self, DamageType.BLIGHT, t.getDamage(self, t)) return ([[Concentrate on the corruption you bring, enhancing each of your melee strikes with %0.2f blight damage (which also heals you for %0.2f each hit). The damage will increase with your Magic stat.]]): format(dam, dam * 0.4)