WoWInterface SVN KnowItAll

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 74 to Rev 72
    Reverse comparison

Rev 74 → Rev 72

RespawnData.lua New file
0,0 → 1,46
--[[
Know-It-All
PvE Trash Respawn Timers
WIP - Ripped from NECB
 
Format: [Mob Name] = { Timer (0 = delete), Bar Name }
]]
 
local bboss = LibStub("LibBabble-Boss-3.0")
local BB = bboss:GetUnstrictLookupTable()
 
KnowItAll.respawnData = {
-- Kara
["Spectral Stallion"] = { 1500, BB["Attumen the Huntsman"] }
["Spectral Charger"] = { 1500, BB["Attumen the Huntsman"] }
BB["Attumen the Huntsman"] = { 0, BB["Attumen the Huntsman"] }
 
["Phantom Guest"] = { 3600, BB["Moroes"] }
BB["Moroes"] = { 0, BB["Moroes"] }
 
["Phantom Guardsman"] = { 3600, BB["Maiden of Virtue"] }
["Spectral Sentry"] = { 3600, BB["Maiden of Virtue"] }
BB["Maiden of Virtue"] = { 0, BB["Maiden of Virtue"] }
 
["Skeletal Usher"] = { 3600, "Theatre" }
BB["The Crone"] = { 0, "Theatre" }
BB["The Big Bad Wolf"] = { 0, "Theatre" }
["Ghostly Philanthropist"] = { 0, "Theatre" }
 
["Arcane Watchman"] = { 3600, BB["The Curator"] }
BB["The Curator"] = { 0, BB["The Curator"] }
 
["Arcane Protector"] = { 7200, BB["Shade of Aran"] }
BB["Shade of Aran"] = { 0, BB["Shade of Aran"] }
 
["Homunculus"] = { 7200, BB["Terestian Illhoof"] }
["Shadow Pillager"] = { 7200, BB["Terestian Illhoof"] }
BB["Terestian Illhoof"] = { 0, BB["Terestian Illhoof"] }
 
["Sorcerous Shade"] = { 7200, BB["Netherspite"] }
BB["Netherspite"] = { 0, BB["Netherspite"] }
 
["Fleshbeast"] = { 7200, BB["Prince Malchezaar"] }
["Greater Fleshbeast"] = { 7200, BB["Prince Malchezaar"] }
BB["Prince Malchezaar"] = { 0, BB["Prince Malchezaar"] }
}
\ No newline at end of file