+-- PaladinIndicators.lua
+local pairs = pairs;
+
+local indSize = OmaRFSettings.IndSize;
+local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb";
+
+local M = {};
+OmaRFIndicators.Class["SHAMAN"] = M;
+M.Auras = {
+ [61295] = "TOPRIGHT", -- Riptide
+}
+
+function M.Setup(base)
+ local inds = {};
+ inds["TOPRIGHT"] = base:CreateTexture(nil, "OVERLAY");
+ inds["TOPRIGHT"]:SetPoint("TOPRIGHT", base, "TOPRIGHT");
+ inds["TOPRIGHT"]:SetWidth(indSize);
+ inds["TOPRIGHT"]:SetHeight(indSize);
+ inds["TOPRIGHT"]:SetTexture(rhomb);
+ inds["TOPRIGHT"]:SetVertexColor(0, 0.5, 1);
+ inds["TOPRIGHT"]:Hide();
+ inds["TOPRIGHT"].text = base:CreateFontString(nil, "OVERLAY", "GameFontHighlight");
+ inds["TOPRIGHT"].text:SetPoint("BOTTOMRIGHT", inds["TOPRIGHT"], "BOTTOMRIGHT");
+ inds["TOPRIGHT"].text:Hide();
+ return inds;
+end