From 1399b52876cbc7aec293ffe032b097695a3ff2c3 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Thu, 7 Aug 2025 19:19:34 +1000 Subject: [PATCH] Fix Poion Conc of Bouncing not counting Chains towards DPS (#8924) Poisonous Concoction of Bouncing gains DPS from extra chains as the projectiles keep chaining to the same target Co-authored-by: LocalIdentity --- src/Data/Skills/act_dex.lua | 3 +++ src/Export/Skills/act_dex.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index ec57ea13..33d21821 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -17504,6 +17504,9 @@ skills["PoisonousConcoctionAltX"] = { mod("ChaosPerLifeFlaskPercent", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, }, + baseMods = { + mod("DPS", "MORE", 100, 0, 0, { type = "PerStat", stat = "ChainMax" }), + }, baseFlags = { attack = true, area = true, diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index 5378ff67..72151cdd 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -3393,6 +3393,7 @@ local skills, mod, flag, skill = ... mod("ChaosPerLifeFlaskPercent", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, }, +#baseMod mod("DPS", "MORE", 100, 0, 0, { type = "PerStat", stat = "ChainMax" }) #mods #skill Snipe