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
Justin Piper
VuhDo
Commits
bd6e9fbe
Commit
bd6e9fbe
authored
7 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Added debuff absorption tracking for ToS 'Embrace of the Eclipse'
parent
9d6a2a4f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
VuhDoConstSpells.lua
VuhDoConstSpells.lua
+1
-0
VuhDoShieldAbsorb.lua
VuhDoShieldAbsorb.lua
+3
-0
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoConstSpells.lua
View file @
bd6e9fbe
...
...
@@ -363,6 +363,7 @@ VUHDO_SPELL_ID.DEBUFF_OVERFLOW = VUHDO_getSpellInfo(221772);
VUHDO_SPELL_ID
.
DEBUFF_SHADOW_LICK
=
VUHDO_getSpellInfo
(
228253
);
VUHDO_SPELL_ID
.
DEBUFF_CORRUPTED_AXION
=
VUHDO_getSpellInfo
(
232450
);
VUHDO_SPELL_ID
.
DEBUFF_TIME_RELEASE
=
VUHDO_getSpellInfo
(
206609
);
VUHDO_SPELL_ID
.
DEBUFF_EMBRACE_OF_THE_ECLIPSE
=
VUHDO_getSpellInfo
(
233263
);
--
...
...
This diff is collapsed.
Click to expand it.
VuhDoShieldAbsorb.lua
View file @
bd6e9fbe
...
...
@@ -57,6 +57,9 @@ local VUHDO_ABSORB_DEBUFFS = {
[
219965
]
=
function
(
aUnit
)
return
select
(
17
,
UnitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_TIME_RELEASE
)),
10
*
60
;
end
,
-- Chronomatic Anomaly Time Release Yellow
[
219966
]
=
function
(
aUnit
)
return
select
(
17
,
UnitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_TIME_RELEASE
)),
10
*
60
;
end
,
-- Chronomatic Anomaly Time Release Red
-- Patch 7.2.5 - Legion - Tomb of Sargeras
[
233263
]
=
function
(
aUnit
)
return
select
(
17
,
UnitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_EMBRACE_OF_THE_ECLIPSE
)),
10
*
60
;
end
,
-- Sisters Embrace of the Eclipse
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
bd6e9fbe
...
...
@@ -19,6 +19,7 @@ Bugfixes:
Improvements:
-- Added default custom debuffs for Tomb of Sargeras raid encounters
-- Added debuff absorption tracking for ToS 'Embrace of the Eclipse'
--------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
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