/Tukui/modules/nameplates/blacklist.lua
http://github.com/Asphyxia/Tukui · Lua · 34 lines · 26 code · 4 blank · 4 comment · 0 complexity · 14f9dc6534e27cb7a61bbf4af6fb6a38 MD5 · raw file
- local T, C, L, DB = unpack(select(2, ...)) -- Import Functions/Constants, Config, Locales
- local function SpellName(id)
- local name, _, _, _, _, _, _, _, _ = GetSpellInfo(id)
- return name
- end
- --Nameplates we do NOT want to see
- T.PlateBlacklist = {
- --Shaman Totems (Ones that don't matter)
- ["Earth Elemental Totem"] = true,
- ["Fire Elemental Totem"] = true,
- ["Fire Resistance Totem"] = true,
- ["Flametongue Totem"] = true,
- ["Frost Resistance Totem"] = true,
- ["Healing Stream Totem"] = true,
- ["Magma Totem"] = true,
- ["Mana Spring Totem"] = true,
- ["Nature Resistance Totem"] = true,
- ["Searing Totem"] = true,
- ["Stoneclaw Totem"] = true,
- ["Stoneskin Totem"] = true,
- ["Strength of Earth Totem"] = true,
- ["Windfury Totem"] = true,
- ["Totem of Wrath"] = true,
- ["Wrath of Air Totem"] = true,
- --Army of the Dead
- ["Army of the Dead Ghoul"] = true,
- --Hunter Trap
- ["Venomous Snake"] = true,
- ["Viper"] = true,
- }