From 64da3ca6dd3a708e1034628041b8fd00a33d40cf Mon Sep 17 00:00:00 2001 From: Florian Berthold Date: Mon, 25 May 2026 00:58:45 +0200 Subject: [PATCH] fix(Witch Doctor/Tinker): swap Aroy NPC totems for actual class dispels, bump 1.1.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous 1.1.5 commit added 'Aroy Cleansing Totem' (608170) and 'Aroy Tremor Totem' (608143) — both wrong. 'Aroy' is an NPC prefix (npc 75001/75002 'Aroy Grappling Hook'), not a player-castable totem, and neither id appears on /class/witch-doctor or /class/tinker. Replaced with the real player-cast spells: COA_CLEANSING_IDOL 504840 Witch Doctor Disease + Poison AoE — drops an idol that pulses 1 disease and 1 poison effect off allies within 30 yds every 3 sec for 1 min. IsBest=0 (AoE, can't direct- target via click). COA_NANOBOT_CLEANSER 502537 Tinker (Invention) Disease + Poison Single-target 40yd channel — sends nanobots to one ally and removes 1 disease + 1 poison every 3 sec for 15 sec. IsBest=1 (Decursive can direct-target via click). Neither class has a Fear/Charm/Sleep dispel, so the Tremor Totem entry is dropped entirely. Bumps .toc Version: Asc-1.1.5-coa → Asc-1.1.6-coa. --- Decursive/DCR_init.lua | 8 ++++---- Decursive/Decursive.toc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Decursive/DCR_init.lua b/Decursive/DCR_init.lua index 65d9da3..902b6d1 100644 --- a/Decursive/DCR_init.lua +++ b/Decursive/DCR_init.lua @@ -513,8 +513,8 @@ function D:OnInitialize() -- Called on ADDON_LOADED -- {{{ DC.SpellsToUse[DS["COA_SANCTIFY"]] = { Types = {DC.MAGIC, DC.DISEASE, DC.POISON}, IsBest = 1, Pet = false, } -- Sun Cleric DC.SpellsToUse[DS["COA_SOOTHING_TOUCH"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 1, Pet = false, } -- Primalist DC.SpellsToUse[DS["COA_SOOTHING_TOUCH_MOA"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 1, Pet = false, } -- Primalist MoA - DC.SpellsToUse[DS["COA_CLEANSING_TOTEM"]] = { Types = {DC.DISEASE, DC.POISON}, IsBest = 0, Pet = false, } -- Witchdoctor/Tinker — Aroy Cleansing Totem (AoE, IsBest=0 since click-cast doesn't direct-target) - DC.SpellsToUse[DS["COA_TREMOR_TOTEM"]] = { Types = {DC.CHARMED}, IsBest = 0, Pet = false, } -- Witchdoctor/Tinker — Aroy Tremor Totem (Fear/Charm/Sleep) + 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) end -- }}} @@ -1185,8 +1185,8 @@ function D:GetSpellsTranslations(FromDIAG) ["COA_MENDING_TOUCH"] = { 524971, }, -- Primalist passive (Soothing Touch +Poison +Disease, Neutralizing Touch self-heal on Magic dispel) ["COA_SOOTHING_TOUCH"] = { 801439, }, -- Primalist (Poison, Disease — DBC type "Magic" doesn't fire; trust gameplay) ["COA_SOOTHING_TOUCH_MOA"] = { 520841, }, -- Primalist MoA (Poison, Disease — same Soothing-Touch variant pattern as Venomancer's Antivenom/Blight pair) - ["COA_CLEANSING_TOTEM"] = { 608170, }, -- Witchdoctor/Tinker — Aroy Cleansing Totem (Disease, Poison; AoE totem) - ["COA_TREMOR_TOTEM"] = { 608143, }, -- Witchdoctor/Tinker — Aroy Tremor Totem (Fear/Charm/Sleep; AoE totem) + ["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) } for k,v in pairs(customSpells) do Spells[k] = v end end diff --git a/Decursive/Decursive.toc b/Decursive/Decursive.toc index 5f0ed92..5093101 100644 --- a/Decursive/Decursive.toc +++ b/Decursive/Decursive.toc @@ -18,7 +18,7 @@ ## SavedVariables: DecursiveDB -## Version: Asc-1.1.5-coa (orig 2.5.1-6-gd3885c5) +## Version: Asc-1.1.6-coa (orig 2.5.1-6-gd3885c5) ## Author: Archarodim ## X-License: All Rights Reserved