From ba83ec79d5b6e0f08e4d367ecf4649f89aab9411 Mon Sep 17 00:00:00 2001 From: Hachem_Muche <Hachem_Muche@stanfordalumni.org> Date: Fri, 17 Feb 2017 16:10:30 -0800 Subject: [PATCH] Nerfed Toxic Death Radius slightly --- game/modules/tome/data/talents/cunning/poisons.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/modules/tome/data/talents/cunning/poisons.lua b/game/modules/tome/data/talents/cunning/poisons.lua index 81318221f7..c104db6b5a 100644 --- a/game/modules/tome/data/talents/cunning/poisons.lua +++ b/game/modules/tome/data/talents/cunning/poisons.lua @@ -107,7 +107,7 @@ newTalent{ points = 5, mode = "passive", require = cuns_req2, - getRadius = function(self, t) return math.floor(self:combatTalentLimit(t, 10, 1, 5)) end, + getRadius = function(self, t) return math.floor(self:combatTalentLimit(t, 10, 1.5, 3.5)) end, on_kill = function(self, t, target) local poisons = {} local to_spread = 0 @@ -119,6 +119,7 @@ newTalent{ to_spread = to_spread + 1 end end + -- Note: New effects functions are called in order: merge, on_gain, activate if to_spread > 0 then local tg = {type="ball", range = 10, radius=t.getRadius(self, t), selffire = false, friendlyfire = false, talent=t, stop_block=true} target.dead = false -- for combat log purposes -- GitLab