73e3077 - Move extra action/zone ability again
[wowui.git] / OmaRF / PaladinIndicators.lua
1 -- PaladinIndicators.lua
2 local indSize = OmaRFSettings.IndSize;
3 local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb";
4
5 local M = {};
6 OmaRFIndicators.Class["PALADIN"] = M;
7 M.Auras = {
8     [53563] = "TOPRIGHT", -- Beacon of Light
9     [156910] = "TOPRIGHT", -- Beacon of Faith
10     [200025] = "TOPRIGHT", -- Beacon of Virtue
11 }
12
13 function M.Setup(base)
14     local inds = {};
15     inds["TOPRIGHT"] = base:CreateTexture(nil, "OVERLAY");
16     inds["TOPRIGHT"]:SetPoint("TOPRIGHT", base, "TOPRIGHT");
17     inds["TOPRIGHT"]:SetWidth(indSize);
18     inds["TOPRIGHT"]:SetHeight(indSize);
19     inds["TOPRIGHT"]:SetTexture(rhomb);
20     inds["TOPRIGHT"]:SetVertexColor(1, 0, 0);
21     inds["TOPRIGHT"]:Hide();
22     return inds;
23 end