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
Valery Kornilovich
VuhDo
Commits
946242af
Commit
946242af
authored
5 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
-- Added Uu'nat Umbral Shell debuff absorb tracking
parent
84b00468
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
3 deletions
+36
-3
.pkgmeta
.pkgmeta
+1
-1
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoConstSpells.lua
VuhDoConstSpells.lua
+2
-0
VuhDoDefaults.lua
VuhDoDefaults.lua
+8
-0
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
VuhDoShieldAbsorb.lua
VuhDoShieldAbsorb.lua
+4
-0
changelog.txt
changelog.txt
+19
-0
No files found.
.pkgmeta
View file @
946242af
...
...
@@ -18,7 +18,7 @@ externals:
Libs/LibCompress: svn://svn.wowace.com/wow/libcompress/mainline/trunk
Libs/LibBase64-1.0: git://git.wowace.com/wow/libbase64-1-0/mainline.git
Libs/LibDBIcon-1.0: svn://svn.wowace.com/wow/libdbicon-1-0/mainline/trunk/LibDBIcon-1.0
Libs/LibCustomGlow-1.0:
git
://repos.curseforge.com/wow/libcustomglow
/mainline.git
Libs/LibCustomGlow-1.0:
https
://repos.curseforge.com/wow/libcustomglow
VuhDoOptions/Libs/ChatThrottleLib: svn://svn.wowace.com/wow/chatthrottlelib/mainline/trunk
...
...
This diff is collapsed.
Click to expand it.
VuhDo.toc
View file @
946242af
## Interface: 80100
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.10
1
## Version: 3.10
2
## 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 @
946242af
...
...
@@ -309,6 +309,8 @@ VUHDO_SPELL_ID.DEBUFF_EMBRACE_OF_THE_ECLIPSE = VUHDO_getSpellInfo(233263);
VUHDO_SPELL_ID
.
DEBUFF_CHILLED_BLOOD
=
VUHDO_getSpellInfo
(
245586
);
VUHDO_SPELL_ID
.
DEBUFF_IMMUNOSUPPRESSION
=
VUHDO_getSpellInfo
(
265206
);
VUHDO_SPELL_ID
.
DEBUFF_DECAYING_MIND
=
VUHDO_getSpellInfo
(
278961
);
VUHDO_SPELL_ID
.
DEBUFF_UMBRAL_SHELL
=
VUHDO_getSpellInfo
(
284722
);
--
...
...
This diff is collapsed.
Click to expand it.
VuhDoDefaults.lua
View file @
946242af
...
...
@@ -1894,6 +1894,14 @@ function VUHDO_loadDefaultConfig()
285367
-- Piercing Gaze of N'zoth
);
--- 8.1.5 - Battle for Azeroth - Crucible of Storms part 2
VUHDO_addCustomSpellIds
(
44
,
-- [[ Crucible of Storms ]]
-- Uu'nat
284722
,
-- Umbral Shell
286771
-- Umbral Shell
);
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 @
946242af
## Interface: 80100
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.10
1
## Version: 3.10
2
## 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 @
946242af
...
...
@@ -70,6 +70,10 @@ local VUHDO_ABSORB_DEBUFFS = {
-- Patch 8.0 - Battle for Azeroth - The Underrot
[
278961
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_DECAYING_MIND
)),
30
;
end
,
-- Diseased Lasher Decaying Mind
-- Patch 8.1.5 - Battle for Azeroth - Crucible of Storms
[
284722
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_UMBRAL_SHELL
)),
10
*
60
;
end
,
-- Uu'nat Umbral Shell
[
286771
]
=
function
(
aUnit
)
return
select
(
16
,
VUHDO_unitDebuff
(
aUnit
,
VUHDO_SPELL_ID
.
DEBUFF_UMBRAL_SHELL
)),
10
*
60
;
end
,
-- Uu'nat Umbral Shell
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
946242af
Version 3.102
Known issues:
-- BfA 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 Uu'nat Umbral Shell debuff absorb tracking
--------------------------------------------------------------
Version 3.101
...
...
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