/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

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