X-Git-Url: https://www.aleksib.fi/git/wowui.git/blobdiff_plain/61270762116163f0c05abee6e55a65595ee3e8b4..6fa986e49300a4cf1c9fc7d809ede512779c7664:/kehys/auras.lua diff --git a/kehys/auras.lua b/kehys/auras.lua index 2291aa1..f777e22 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -24,6 +24,7 @@ local watchedAuras = { [53563] = {1, "buff2"}, -- Beacon of Light [156910] = {1, "buff2"}, -- Beacon of Faith [200025] = {1, "buff2"}, -- Beacon of Virtue + [974] = {1, "buff2"}, -- Earth Shield -- Tank defensives [6940] = {1, "tankcd"}, -- Blessing of Sacrifice [33206] = {1, "tankcd"}, -- Pain Suppression @@ -31,6 +32,9 @@ local watchedAuras = { [102342] = {1, "tankcd"}, -- Ironbark [116849] = {1, "tankcd"}, -- Life Cocoon [196555] = {1, "tankcd"}, -- Netherwalk + --[124275] = {1, "stagger"}, -- Light Stagger (Monk) + --[124274] = {1, "stagger"}, -- Moderate Stagger (Monk) + [124273] = {1, "stagger"}, -- Heavy Stagger (Monk) -- M+ [209858] = {1, "stacks"}, -- Necrotic Wound (M+) [240559] = {1, "stacks"}, -- Grievous Wound (M+) @@ -88,6 +92,42 @@ local watchedAuras = { [316065] = {1, "alert"}, -- Corrupted Existence (Ra-den) [313364] = {1, "heal"}, -- Mental Decay (Carapace of N'zoth) [307044] = {4, "stacks"}, -- Nightmare Antibody (Carapace of N'zoth) + -- SL M+ + [323347] = {1, "stacks"}, -- Clinging Darkness (Necrotic Wake) + [338357] = {2, "stacks"}, -- Tenderize (Necrotic Wake) + [321038] = {1, "stacks"}, -- Wrack Soul (Sanguine Depths) + [331415] = {1, "stacks"}, -- Wicked Gash (Sanguine Depths) + [328737] = {1, "stacks"}, -- Fragment of Radiance (Sanguine Depths) + [326632] = {5, "stacks"}, -- Stony Veins (Halls of Atonement) + [344993] = {5, "stacks"}, -- Jagged Swipe (Halls of Atonement) + [323692] = {1, "stacks"}, -- Arcane Vulnerability (De Other Side) + [317661] = {1, "stacks"}, -- Insidious Venom (Spires of Ascension) + [327814] = {1, "heal"}, -- Wicked Gash (Gauntlet) (Sanguine Depths) + [323687] = {1, "heal"}, -- Arcane Lightning (De Other Side) + [324154] = {1, "heal"}, -- Dark Stride (Spires of Ascension) + [335305] = {1, "heal"}, -- Barbed Shackles (Sanguine Depths) + [336279] = {1, "heal"}, -- Explosive Anger (Sanguine Depths) + -- Castle Nathria + [346301] = {1, "stacks"}, -- Bloodlight (Shriekwing) + [328897] = {7, "alert"}, -- Exsanguinated (Shriekwing) + [335304] = {1, "heal"}, -- Sinseeker (Huntsman Altimor) + [334971] = {2, "stacks"}, -- Jagged Claws (Huntsman Altimor) + [325382] = {3, "stacks"}, -- Warped Desires (Lady Inerva Darkvein) + [332664] = {1, "heal"}, -- Anima Add (Lady Inerva Darkvein) + [340477] = {1, "heal"}, -- Anima Add (Lady Inerva Darkvein) + [339527] = {1, "heal"}, -- Anima Add (Lady Inerva Darkvein) + [342321] = {1, "heal"}, -- Anima Add (Lady Inerva Darkvein) + [342322] = {1, "heal"}, -- Anima Add (Lady Inerva Darkvein) + [324982] = {1, "heal"}, -- Shared Suffering (Lady Inerva Darkvein) + [324983] = {1, "heal"}, -- Shared Suffering (Lady Inerva Darkvein) + [340860] = {1, "heal", 14}, -- Withering Touch (Artificer Xy'mox) + [326302] = {1, "alert"}, -- Stasis Trap (Artificer Xy'mox) + [334771] = {1, "heal"}, -- Heart Hemorrhage (Stone Legion Generals) + [326699] = {1, "stacks"}, -- Burden of Sin (Sire Denathrius) + [329298] = {1, "alert"}, -- Gluttonous Miasma (Hungering Destroyer) + [334755] = {14, "heal"}, -- Essence Sap (Hungering Destroyer) + [343320] = {1, "alert"}, -- Curse of Caramain (Trash) + [333913] = {1, "stacks"}, -- Wicked Laceration (Stone Legion Generals) }; local playerGuid = nil; @@ -95,10 +135,13 @@ local auraEvents = {}; auraEvents.SPELL_AURA_APPLIED = function(frame, id, source, _, _, atype, amount) if (amount == nil and watchedAuras[id][1] == 1) or (amount ~= nil and amount >= watchedAuras[id][1]) then amount = amount or 1; - if atype == "BUFF" and source == playerGuid then + if atype == "BUFF" and (source == playerGuid or watchedAuras[id][2] == "tankcd") then frame[watchedAuras[id][2]][id] = amount; elseif atype == "DEBUFF" then frame[watchedAuras[id][2]][id] = amount; + if watchedAuras[id][3] ~= nil and frame.hits[id] == nil then + frame.hits[id] = watchedAuras[id][3]; + end end end end @@ -106,10 +149,13 @@ auraEvents.SPELL_AURA_APPLIED_DOSE = auraEvents.SPELL_AURA_APPLIED; auraEvents.SPELL_AURA_REFRESH = auraEvents.SPELL_AURA_APPLIED; auraEvents.SPELL_AURA_REMOVED = function(frame, id, source, _, _, atype, amount) if amount == nil or amount == 0 then - if atype == "BUFF" and source == playerGuid then + if atype == "BUFF" and (source == playerGuid or watchedAuras[id][2] == "tankcd") then frame[watchedAuras[id][2]][id] = nil; elseif atype == "DEBUFF" then frame[watchedAuras[id][2]][id] = nil; + if watchedAuras[id][3] ~= nil then + frame.hits[id] = nil; + end end end end @@ -118,6 +164,20 @@ auraEvents.SPELL_AURA_BROKEN = function(frame, id, source) return auraEvents.SPELL_AURA_REMOVED(frame, id, source, nil, nil, nil, 0); end auraEvents.SPELL_AURA_BROKEN_SPELL = auraEvents.SPELL_AURA_BROKEN; +auraEvents.SPELL_PERIODIC_DAMAGE = function(frame, id, source) + if watchedAuras[id][3] ~= nil then + if frame.hits[id] ~= nil and frame.hits[id] > 0 then + frame.hits[id] = frame.hits[id] - 1; + if frame.hits[id] == 0 then + frame.hits[id] = nil; + end + elseif frame.hits[id] ~= nil then + frame.hits[id] = nil; + end + end +end +auraEvents.SPELL_PERIODIC_ABSORBED = auraEvents.SPELL_PERIODIC_DAMAGE; +auraEvents.SPELL_PERIODIC_MISSED = auraEvents.SPELL_PERIODIC_DAMAGE; local counter = 0; local function clog(ts, event, _, source, _, _, _, dest, _, _, _, spellid, ...)