Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VuhDo
VuhDo
Commits
9e32c262
Commit
9e32c262
authored
Jun 20, 2021
by
Ivaria
Browse files
Added default custom debuffs for Sanctum of Domination raid encounters
parent
9f570244
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
0 deletions
+18
-0
VuhDoConstSpells.lua
VuhDoConstSpells.lua
+2
-0
VuhDoDefaults.lua
VuhDoDefaults.lua
+9
-0
VuhDoShieldAbsorb.lua
VuhDoShieldAbsorb.lua
+4
-0
changelog.txt
changelog.txt
+3
-0
No files found.
VuhDoConstSpells.lua
View file @
9e32c262
...
...
@@ -324,6 +324,8 @@ VUHDO_SPELL_ID.DEBUFF_NECROTIC_BOLT = VUHDO_getSpellInfo(320462);
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_BOLT_VOLLEY
=
VUHDO_getSpellInfo
(
330868
);
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_WOUND
=
VUHDO_getSpellInfo
(
223929
);
VUHDO_SPELL_ID
.
DEBUFF_FATIGUED
=
VUHDO_getSpellInfo
(
264689
);
VUHDO_SPELL_ID
.
DEBUFF_VEIL_OF_DARKNESS
=
VUHDO_getSpellInfo
(
347704
);
VUHDO_SPELL_ID
.
DEBUFF_DESTABILIZE
=
VUHDO_getSpellInfo
(
351091
);
...
...
VuhDoDefaults.lua
View file @
9e32c262
...
...
@@ -2138,6 +2138,15 @@ function VUHDO_loadDefaultConfig()
-- 334016 -- Unworthy
);
-- 9.1.0 - Shadowlands
VUHDO_addCustomSpellIds
(
51
,
-- [[ Sanctum of Domination ]]
-- Trash
351091
,
-- Destabilize (heal absorb)
-- Sylvanas Windrunner
347704
-- Veil of Darkness (heal absorb)
);
local
debuffRemovalList
=
{};
for
tIndex
,
tName
in
pairs
(
VUHDO_CONFIG
[
"CUSTOM_DEBUFF"
][
"STORED"
])
do
...
...
VuhDoShieldAbsorb.lua
View file @
9e32c262
...
...
@@ -92,6 +92,10 @@ local VUHDO_ABSORB_DEBUFFS = {
-- Patch 9.0.2 - Death Knight ability
[
223929
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_WOUND
)),
18
;
end
,
-- Necrotic Wound
-- Patch 9.1.0 - Shadowlands - Sanctum of Domination
[
347704
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_VEIL_OF_DARKNESS
)),
10
*
60
;
end
,
-- Sylvanas Veil of Darkness
[
351091
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_DESTABILIZE
)),
6
;
end
,
-- Mawsworn Hopebreaker Destabilize
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
...
...
changelog.txt
View file @
9e32c262
...
...
@@ -16,6 +16,9 @@ Bugfixes:
Improvements:
-- Added default custom debuffs for Sanctum of Domination raid encounters
-- Added Sylvanas 'Veil of Darkness' debuff absorb tracking
-- Added Hopebreaker 'Destabilize' debuff absorb tracking
--------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment