From: Aleksi Blinnikka Date: Sun, 3 Nov 2019 00:31:47 +0000 (+0200) Subject: Add shaman settings to TMW and frames X-Git-Url: https://www.aleksib.fi/git/wowui.git/commitdiff_plain/063c9364f0dc3835596c1cf8024f7404679bad8a?hp=7cf4c4bed7a60fcc31e10d62d8a5b349d8252bd9 Add shaman settings to TMW and frames --- diff --git a/OmaTMW/TellMeWhen.lua b/OmaTMW/TellMeWhen.lua index 4b538c4..f625683 100644 --- a/OmaTMW/TellMeWhen.lua +++ b/OmaTMW/TellMeWhen.lua @@ -159,6 +159,15 @@ local chars = { width = 40, height = 40, }, + { + unit = "player", + auras = {"Unleash Life"}, + auraFilter = "PLAYER HELPFUL", + x = 740, + y = 440, + width = 40, + height = 40, + }, }, }, }; diff --git a/kehys/auras.lua b/kehys/auras.lua index d0c59e3..42afc12 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -19,6 +19,7 @@ local watchedAuras = { --[262513] = {bar=false}, -- Azerite Heartseeker [287280] = {1, "buff1"}, -- Glimmer of Light [194384] = {1, "buff1"}, -- Atonement + [61295] = {1, "buff1"}, -- Riptide -- Tank defensives [6940] = {1, "tankcd"}, -- Blessing of Sacrifice [33206] = {1, "tankcd"}, -- Pain Suppression diff --git a/kehys/kehys.toc b/kehys/kehys.toc index 474be2c..cf1c4bf 100644 --- a/kehys/kehys.toc +++ b/kehys/kehys.toc @@ -8,6 +8,7 @@ hideblizz.lua setup.lua paladin.lua priest.lua +shaman.lua updater.lua events.lua frame.lua diff --git a/kehys/shaman.lua b/kehys/shaman.lua new file mode 100644 index 0000000..8852917 --- /dev/null +++ b/kehys/shaman.lua @@ -0,0 +1,14 @@ +-- shaman.lua +local _, addon = ...; +addon.Clickheal["SHAMAN"] = { + ["type1"] = "spell", + ["type2"] = "spell", + ["shift-type1"] = "spell", + ["shift-type2"] = "spell", + ["ctrl-type1"] = "spell", + ["spell1"] = "Healing Wave", + ["spell2"] = "Chain Heal", + ["shift-spell1"] = "Healing Surge", + ["shift-spell2"] = "Unleash Life", + ["ctrl-spell1"] = "Purify Spirit", +};