063c936 - Add shaman settings to TMW and frames
authorAleksi Blinnikka <aleksi.blinnikka@gmail.com>
Sun, 3 Nov 2019 00:31:47 +0000
committerAleksi Blinnikka <aleksi.blinnikka@gmail.com>
Sun, 3 Nov 2019 00:31:47 +0000
OmaTMW/TellMeWhen.lua
kehys/auras.lua
kehys/kehys.toc
kehys/shaman.lua [new file with mode: 0644]

index 4b538c4..f625683 100644 (file)
@@ -159,6 +159,15 @@ local chars = {
                 width = 40,
                 height = 40,
             },
                 width = 40,
                 height = 40,
             },
+            {
+                unit = "player",
+                auras = {"Unleash Life"},
+                auraFilter = "PLAYER HELPFUL",
+                x = 740,
+                y = 440,
+                width = 40,
+                height = 40,
+            },
         },
     },
 };
         },
     },
 };
index d0c59e3..42afc12 100644 (file)
@@ -19,6 +19,7 @@ local watchedAuras = {
     --[262513] = {bar=false}, -- Azerite Heartseeker
     [287280] = {1, "buff1"}, -- Glimmer of Light
     [194384] = {1, "buff1"}, -- Atonement
     --[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
     -- Tank defensives
     [6940] = {1, "tankcd"}, -- Blessing of Sacrifice
     [33206] = {1, "tankcd"}, -- Pain Suppression
index 474be2c..cf1c4bf 100644 (file)
@@ -8,6 +8,7 @@ hideblizz.lua
 setup.lua
 paladin.lua
 priest.lua
 setup.lua
 paladin.lua
 priest.lua
+shaman.lua
 updater.lua
 events.lua
 frame.lua
 updater.lua
 events.lua
 frame.lua
diff --git a/kehys/shaman.lua b/kehys/shaman.lua
new file mode 100644 (file)
index 0000000..8852917
--- /dev/null
@@ -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",
+};