/Tukui/modules/nameplates/blacklist.lua
Lua | 34 lines | 26 code | 4 blank | 4 comment | 0 complexity | 14f9dc6534e27cb7a61bbf4af6fb6a38 MD5 | raw file
1local T, C, L, DB = unpack(select(2, ...)) -- Import Functions/Constants, Config, Locales 2 3local function SpellName(id) 4 local name, _, _, _, _, _, _, _, _ = GetSpellInfo(id) 5 return name 6end 7 8--Nameplates we do NOT want to see 9T.PlateBlacklist = { 10 --Shaman Totems (Ones that don't matter) 11 ["Earth Elemental Totem"] = true, 12 ["Fire Elemental Totem"] = true, 13 ["Fire Resistance Totem"] = true, 14 ["Flametongue Totem"] = true, 15 ["Frost Resistance Totem"] = true, 16 ["Healing Stream Totem"] = true, 17 ["Magma Totem"] = true, 18 ["Mana Spring Totem"] = true, 19 ["Nature Resistance Totem"] = true, 20 ["Searing Totem"] = true, 21 ["Stoneclaw Totem"] = true, 22 ["Stoneskin Totem"] = true, 23 ["Strength of Earth Totem"] = true, 24 ["Windfury Totem"] = true, 25 ["Totem of Wrath"] = true, 26 ["Wrath of Air Totem"] = true, 27 28 --Army of the Dead 29 ["Army of the Dead Ghoul"] = true, 30 31 --Hunter Trap 32 ["Venomous Snake"] = true, 33 ["Viper"] = true, 34}