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
Jay
VuhDo
Commits
c41928aa
Commit
c41928aa
authored
4 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Added debuff absorb tracking for Shadowlands dungeon encounters
parent
41bfad95
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
2 deletions
+50
-2
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoConstSpells.lua
VuhDoConstSpells.lua
+3
-0
VuhDoDefaults.lua
VuhDoDefaults.lua
+12
-0
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
VuhDoShieldAbsorb.lua
VuhDoShieldAbsorb.lua
+11
-0
changelog.txt
changelog.txt
+22
-0
No files found.
VuhDo.toc
View file @
c41928aa
## Interface: 90002
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
8
## Version: 3.11
9
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO
_
CONFIG, VUHDO
_
PANEL
_
SETUP, VUHDO
_
SPELL
_
ASSIGNMENTS, VUHDO
_
HOSTILE
_
SPELL
_
ASSIGNMENTS, VUHDO
_
MM
_
SETTINGS, VUHDO
_
PLAYER
_
TARGETS, VUHDO
_
MAINTANK
_
NAMES, VUHDO
_
BUFF
_
SETTINGS, VUHDO
_
POWER
_
TYPE
_
COLORS, VUHDO
_
SPELLS
_
KEYBOARD, VUHDO
_
SPELL
_
CONFIG, VUHDO
_
BUFF
_
ORDER, VUHDO
_
SPEC
_
LAYOUTS, VUHDO
_
GROUP
_
SIZE, VUHDO
_
RAID, VUHDO
_
INDICATOR
_
CONFIG
## SavedVariables: VUHDO
_
DEFAULT
_
LAYOUT, VUHDO
_
DEFAULT
_
PROFILE, VUHDO
_
PROFILES, VUHDO
_
MANUAL
_
ROLES, VUHDO
_
SPELL
_
LAYOUTS, VUHDO
_
USER
_
CLASS
_
COLORS, VUHDO
_
DEBUFF
_
BLACKLIST, VUHDO
_
BOUQUETS, VUHDO
_
COMBAT
_
LOG
_
TRACE, VUHDO
_
GLOBAL
_
CONFIG, VUHDO
_
DEBUG
...
...
This diff is collapsed.
Click to expand it.
VuhDoConstSpells.lua
View file @
c41928aa
...
...
@@ -319,6 +319,9 @@ VUHDO_SPELL_ID.DEBUFF_DECAYING_MIND = VUHDO_getSpellInfo(278961);
VUHDO_SPELL_ID
.
DEBUFF_UMBRAL_SHELL
=
VUHDO_getSpellInfo
(
284722
);
VUHDO_SPELL_ID
.
DEBUFF_UNLEASHED_VOID
=
VUHDO_getSpellInfo
(
306184
);
VUHDO_SPELL_ID
.
DEBUFF_CLOAK_OF_FLAMES
=
VUHDO_getSpellInfo
(
338600
);
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
);
...
...
This diff is collapsed.
Click to expand it.
VuhDoDefaults.lua
View file @
c41928aa
...
...
@@ -2092,6 +2092,18 @@ function VUHDO_loadDefaultConfig()
327992
-- Desolation (ground damage)
);
-- 9.0.2 - Shadowlands
VUHDO_addCustomSpellIds
(
49
,
-- [[ Necrotic Wake ]]
320462
,
-- Necrotic Bolt
320170
,
-- Necrotic Bolt
-- [[ Theater of Pain ]]
330784
,
-- Necrotic Bolt
330868
,
-- Necrotic Bolt Volley
-- Death Knight player ability
223929
-- Necrotic Wound
);
local
debuffRemovalList
=
{};
for
tIndex
,
tName
in
pairs
(
VUHDO_CONFIG
[
"CUSTOM_DEBUFF"
][
"STORED"
])
do
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoOptions.toc
View file @
c41928aa
## Interface: 90002
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
8
## Version: 3.11
9
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
VuhDoShieldAbsorb.lua
View file @
c41928aa
...
...
@@ -82,6 +82,17 @@ local VUHDO_ABSORB_DEBUFFS = {
[
343026
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_CLOAK_OF_FLAMES
)),
10
*
60
;
end
,
-- Cloak of Flames
[
337859
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_CLOAK_OF_FLAMES
)),
10
*
60
;
end
,
-- Cloak of Flames
-- Patch 9.0.2 - Shadowlands - Necrotic Wake
[
320462
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_BOLT
)),
1
*
60
;
end
,
-- Necrotic Bolt
[
320170
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_BOLT
)),
2
*
60
;
end
,
-- Necrotic Bolt
-- Patch 9.0.2 - Shadowlands - Theater of Pain
[
330784
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_BOLT
)),
1
*
60
;
end
,
-- Necrotic Bolt
[
330868
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_NECROTIC_BOLT_VOLLEY
)),
1
*
60
;
end
,
-- Necrotic Bolt Volley
-- 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
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
c41928aa
Version 3.119
Known issues:
-- Shadowlands stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
Bugfixes:
Improvements:
-- Added Necrotic Wake 'Necrotic Bolt' debuff absorb tracking
-- Added Theater of Pain 'Necrotic Bolt' debuff absorb tracking
-- Added Theater of Pain 'Necrotic Bolt Volley' debuff absorb tracking
-- Added Death Knight ability 'Necrotic Wound' debuff absorb tracking
--------------------------------------------------------------
Version 3.118
...
...
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