From ded56c9dc9ba33bc4b6707d6d5870683d0a4877a Mon Sep 17 00:00:00 2001 From: Florian Berthold Date: Wed, 27 May 2026 18:59:29 +0200 Subject: [PATCH] fix(Pyromancer): register Cauterize (Magic/Poison), bump 1.1.7 Cauterize (560749) clears Magic + Poison via a dummy script effect and removes 1 bleed via Dispel Mechanic. Decursive has no bleed type so only the magic/poison part is wired; bleed dispel is silently dropped. --- Decursive/DCR_init.lua | 2 ++ Decursive/Decursive.toc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Decursive/DCR_init.lua b/Decursive/DCR_init.lua index 902b6d1..d825ffb 100644 --- a/Decursive/DCR_init.lua +++ b/Decursive/DCR_init.lua @@ -515,6 +515,7 @@ function D:OnInitialize() -- Called on ADDON_LOADED -- {{{ DC.SpellsToUse[DS["COA_SOOTHING_TOUCH_MOA"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 1, Pet = false, } -- Primalist MoA DC.SpellsToUse[DS["COA_CLEANSING_IDOL"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 0, Pet = false, } -- Witch Doctor — Cleansing Idol (AoE, can't direct-target via click) DC.SpellsToUse[DS["COA_NANOBOT_CLEANSER"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 1, Pet = false, } -- Tinker — Nanobot Cleanser (single-target, direct-castable) + DC.SpellsToUse[DS["COA_CAUTERIZE"]] = { Types = {DC.MAGIC, DC.POISON}, IsBest = 1, Pet = false, } -- Pyromancer — Cauterize (upgraded Burn Impurities; bleed dispel not exposed to Decursive) end -- }}} @@ -1187,6 +1188,7 @@ function D:GetSpellsTranslations(FromDIAG) ["COA_SOOTHING_TOUCH_MOA"] = { 520841, }, -- Primalist MoA (Poison, Disease — same Soothing-Touch variant pattern as Venomancer's Antivenom/Blight pair) ["COA_CLEANSING_IDOL"] = { 504840, }, -- Witch Doctor (Disease, Poison — AoE idol, 30yd, ticks every 3s) ["COA_NANOBOT_CLEANSER"] = { 502537, }, -- Tinker / Invention (Disease, Poison — single-target, 40yd, ticks every 3s for 15s) + ["COA_CAUTERIZE"] = { 560749, }, -- Pyromancer (Magic + Poison via dummy script; also removes 1 bleed via Dispel Mechanic — bleed not modelled by Decursive) } for k,v in pairs(customSpells) do Spells[k] = v end end diff --git a/Decursive/Decursive.toc b/Decursive/Decursive.toc index 5093101..96c0a27 100644 --- a/Decursive/Decursive.toc +++ b/Decursive/Decursive.toc @@ -18,7 +18,7 @@ ## SavedVariables: DecursiveDB -## Version: Asc-1.1.6-coa (orig 2.5.1-6-gd3885c5) +## Version: Asc-1.1.7-coa (orig 2.5.1-6-gd3885c5) ## Author: Archarodim ## X-License: All Rights Reserved