["Gazden"] = {1, 2, 3, 4,},
["Gedran"] = {1, 2, 3, 4,},
["Iled"] = {1, 2, 3, 4,},
+ ["Gilden"] = {1, 2, 3, 4,},
},
};
Indicators.lua
DruidIndicators.lua
PaladinIndicators.lua
+PriestIndicators.lua
ShamanIndicators.lua
Events.lua
RaidFrame.lua
--- /dev/null
+-- PriestIndicators.lua
+local indSize = OmaRFSettings.IndSize;
+local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb";
+
+local M = {};
+OmaRFIndicators.Class["PRIEST"] = M;
+M.Auras = {
+ [194384] = "BOTTOMRIGHT", -- Atonement
+}
+
+function M.Setup(base)
+ local inds = {};
+ inds["BOTTOMRIGHT"] = base:CreateTexture(nil, "OVERLAY");
+ inds["BOTTOMRIGHT"]:SetPoint("BOTTOMRIGHT", base, "BOTTOMRIGHT");
+ inds["BOTTOMRIGHT"]:SetWidth(indSize);
+ inds["BOTTOMRIGHT"]:SetHeight(indSize);
+ inds["BOTTOMRIGHT"]:SetTexture(rhomb);
+ inds["BOTTOMRIGHT"]:SetVertexColor(1, 0.8, 0);
+ inds["BOTTOMRIGHT"]:Hide();
+ inds["BOTTOMRIGHT"].text = base:CreateFontString(nil, "OVERLAY", "GameFontHighlight");
+ inds["BOTTOMRIGHT"].text:SetPoint("BOTTOMRIGHT", inds["BOTTOMRIGHT"], "BOTTOMRIGHT");
+ inds["BOTTOMRIGHT"].text:Hide();
+ return inds;
+end
["ctrl-spell1"] = "Purify Spirit",
},
},
+ ["Gilden"] = {
+ AnchorX = 0,
+ AnchorY = -330,
+ Clickheal = {
+ ["type1"] = "spell",
+ ["type2"] = "spell",
+ ["shift-type1"] = "spell",
+ ["shift-type2"] = "spell",
+ ["ctrl-type1"] = "spell",
+ ["spell1"] = "Power Word: Shield",
+ ["spell2"] = "Penance",
+ ["shift-spell1"] = "Shadow Mend",
+ ["shift-spell2"] = "Shadow Covenant",
+ ["ctrl-spell1"] = "Purify",
+ },
+ },
["Gedran"] = {
AnchorX = 0,
AnchorY = -330,
["alt-spell2"] = "Rebirth",
},
},
+ ["Gilden"] = {
+ AnchorX = 0,
+ AnchorY = -330,
+ Clickheal = {
+ ["type1"] = "spell",
+ ["type2"] = "spell",
+ ["shift-type1"] = "spell",
+ ["shift-type2"] = "spell",
+ ["ctrl-type1"] = "spell",
+ ["spell1"] = "Power Word: Shield",
+ ["spell2"] = "Penance",
+ ["shift-spell1"] = "Shadow Mend",
+ ["shift-spell2"] = "Shadow Covenant",
+ ["ctrl-spell1"] = "Purify",
+ },
+ },
},
};