a7dd68b - priest and mage click action updates
authorAleksi Blinnikka <aleksi.blinnikka@iki.fi>
Fri, 3 Dec 2021 12:40:08 +0000
committerAleksi Blinnikka <aleksi.blinnikka@iki.fi>
Fri, 3 Dec 2021 12:40:08 +0000
kehys/kehys.toc
kehys/mage.lua [new file with mode: 0644]
kehys/priest.lua

index 6d251f3..a6d4eba 100644 (file)
@@ -9,6 +9,7 @@ setup.lua
 paladin.lua
 priest.lua
 shaman.lua
+mage.lua
 updater.lua
 events.lua
 frame.lua
diff --git a/kehys/mage.lua b/kehys/mage.lua
new file mode 100644 (file)
index 0000000..a43195b
--- /dev/null
@@ -0,0 +1,6 @@
+-- mage.lua
+local _, addon = ...;
+addon.Clickheal["MAGE"] = {
+    ["ctrl-type1"] = "spell",
+    ["ctrl-spell1"] = "Remove Curse",
+};
index 913fefb..f996e0e 100644 (file)
@@ -6,9 +6,11 @@ addon.Clickheal["PRIEST"] = {
     ["shift-type1"] = "macro",
     ["shift-type2"] = "macro",
     ["ctrl-type1"] = "spell",
+    ["ctrl-type2"] = "spell",
     ["macrotext1"] = "/cast [@mouseover,help,nodead,spec:2] Heal; [@mouseover,help,nodead] Power Word: Shield",
     ["macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Holy Word: Serenity; [@mouseover,help,nodead] Penance",
     ["shift-macrotext1"] = "/cast [@mouseover,help,nodead,spec:2] Flash Heal; [@mouseover,help,nodead] Shadow Mend",
-    ["shift-macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Prayer of Healing; [@mouseover,help,nodead] Shadow Covenant",
+    ["shift-macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Circle of Healing; [@mouseover,help,nodead] Shadow Covenant",
     ["ctrl-spell1"] = "Purify",
+    ["ctrl-spell2"] = "Power Infusion",
 };