fb13e34 - Add 2 new aura types
[wowui.git] / kehys / paladin.lua
1 -- paladin.lua
2 local indSize = 14;
3 local rhomb = "Interface\\AddOns\\kuuttiRaid\\images\\rhomb";
4
5 local _, addon = ...;
6 local auras = {
7     [53563] = "TOPRIGHT", -- Beacon of Light
8     [156910] = "TOPRIGHT", -- Beacon of Faith
9     [200025] = "TOPRIGHT", -- Beacon of Virtue
10 }
11 addon.ClassAuras["PALADIN"] = auras;
12 addon.ClassIndicators["PALADIN"] = function(base)
13     local inds = {};
14     inds["TOPRIGHT"] = base:CreateTexture(nil, "OVERLAY");
15     inds["TOPRIGHT"]:SetPoint("TOPRIGHT", base, "TOPRIGHT");
16     inds["TOPRIGHT"]:SetWidth(indSize);
17     inds["TOPRIGHT"]:SetHeight(indSize);
18     inds["TOPRIGHT"]:SetTexture(rhomb);
19     inds["TOPRIGHT"]:SetVertexColor(1, 0, 0);
20     inds["TOPRIGHT"]:Hide();
21     return inds;
22 end
23 addon.Clickheal["PALADIN"] = {
24     ["type1"] = "spell",
25     ["type2"] = "spell",
26     ["shift-type1"] = "spell",
27     ["shift-type2"] = "spell",
28     ["ctrl-type1"] = "macro",
29     ["alt-type2"] = "spell",
30     ["alt-shift-type1"] = "spell",
31     ["alt-shift-type2"] = "spell",
32     ["spell1"] = "Holy Light",
33     ["spell2"] = "Bestow Faith",
34     ["shift-spell1"] = "Flash of Light",
35     ["shift-spell2"] = "Light of the Martyr",
36     ["ctrl-macro1"] = "Cleansing",
37     ["alt-spell2"] = "Lay on Hands",
38     ["alt-shift-spell1"] = "Beacon of Light",
39     ["alt-shift-spell2"] = "Beacon of Faith",
40 };