Skip to content

Commit 292acee

Browse files
committed
[Statuses\Auras] Add Two New Shaman Spells
Blizzard Has Changed to also along with other spells before to not be secret any more. Ancestral Vigor Hydrobubble
1 parent db1de92 commit 292acee

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Statuses/Auras.lua

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ spell_names = {
162162
["Prayer of Mending"] = GetSpellName(41635),
163163
["Echo of Light"] = GetSpellName(77489),
164164
-- Shaman
165+
["Ancestral Vigor"] = GetSpellName(207400),
165166
["Earth Shield"] = GetSpellName(974),
167+
["Hydrobubble"] = GetSpellName(444490),
166168
["Riptide"] = GetSpellName(61295),
167169
["Earthliving Weapon"] = GetSpellName(382021),
168170
}
@@ -1032,13 +1034,35 @@ PlexusStatusAuras.defaultDB = {
10321034
---------------------
10331035
-- Shaman
10341036
---------------------
1037+
[PlexusStatusAuras:StatusForSpell("Ancestral Vigor", true)] = {
1038+
-- 207400
1039+
desc = format(L["Buff: %s"], spell_names["Ancestral Vigor"]),
1040+
buff = spell_names["Ancestral Vigor"],
1041+
text = PlexusStatusAuras:TextForSpell(spell_names["Ancestral Vigor"]),
1042+
color = { r = 0, g = 252, b = 0, a = 1 },
1043+
durationColorLow = { r = 1, g = 0, b = 0, a = 1 },
1044+
durationColorMiddle = { r = 0.28, g = 0, b = 0.56, a = 1 },
1045+
durationColorHigh = { r = 0.4, g = 0, b = 0.8, a = 1 },
1046+
mine = true,
1047+
},
10351048
[PlexusStatusAuras:StatusForSpell("Earth Shield", true)] = {
10361049
-- 204288
10371050
desc = format(L["Buff: %s"], spell_names["Earth Shield"]),
10381051
buff = spell_names["Earth Shield"],
10391052
text = PlexusStatusAuras:TextForSpell(spell_names["Earth Shield"]),
10401053
color = { r = 0, g = 252, b = 0, a = 1 },
10411054
},
1055+
[PlexusStatusAuras:StatusForSpell("Hydrobubble", true)] = {
1056+
-- 444490
1057+
desc = format(L["Buff: %s"], spell_names["Hydrobubble"]),
1058+
buff = spell_names["Hydrobubble"],
1059+
text = PlexusStatusAuras:TextForSpell(spell_names["Hydrobubble"]),
1060+
color = { r = 0, g = 252, b = 0, a = 1 },
1061+
durationColorLow = { r = 1, g = 0, b = 0, a = 1 },
1062+
durationColorMiddle = { r = 0.28, g = 0, b = 0.56, a = 1 },
1063+
durationColorHigh = { r = 0.4, g = 0, b = 0.8, a = 1 },
1064+
mine = true,
1065+
},
10421066
--[PlexusStatusAuras:StatusForSpell("Water Shield", true)] = {
10431067
-- -- 52127
10441068
-- desc = format(L["Buff: %s"], spell_names["Water Shield"]),

0 commit comments

Comments
 (0)