72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
--COMBAT_LOG_EVENT_UNFILTERED UNIT_AURA UNIT_HEALTH
 | 
						|
function(e, ...)
 | 
						|
    if e == "UNIT_AURA" then
 | 
						|
        
 | 
						|
    end
 | 
						|
    --for i = 1, 40 do
 | 
						|
    --local x = select(i, ...)
 | 
						|
    --if x then
 | 
						|
    --print(i, x)
 | 
						|
    --end
 | 
						|
    --end
 | 
						|
end
 | 
						|
 | 
						|
--INIT
 | 
						|
aura_env.bossList = {
 | 
						|
    --BRH
 | 
						|
    ["The Amalgam of Souls"] = true,
 | 
						|
    ["Illysanna Ravencrest"] = true,
 | 
						|
    ["Smashpite the Hateful"] = true,
 | 
						|
    ["Lord Kul'talos Ravencrest"] = true,
 | 
						|
    
 | 
						|
    --CoS
 | 
						|
    ["Patrol Captain Gerdo"] = true,
 | 
						|
    ["Talixae Flamewreath"] = true,
 | 
						|
    ["Advisor Melandrus"] = true,
 | 
						|
    
 | 
						|
    --DHT
 | 
						|
    ["Archdruid Gleidalis"] = true,
 | 
						|
    ["Oakheart"] = true,
 | 
						|
    ["Dresaron"] = true,
 | 
						|
    ["Shade of Xavius"] = true,
 | 
						|
    
 | 
						|
    --EoA
 | 
						|
    ["Warlord Parjesh"] = true,
 | 
						|
    ["Lady Hatecoil"] = true,
 | 
						|
    ["King Deepbeard"] = true,
 | 
						|
    ["Serpentrix"] = true,
 | 
						|
    ["Wrath of Azshara"] = true,
 | 
						|
    
 | 
						|
    --HoV
 | 
						|
    ["Hymdall"] = true,
 | 
						|
    ["Hyrja"] = true,
 | 
						|
    ["Fenryr"] = true,
 | 
						|
    ["God-King Skovald"] = true,
 | 
						|
    ["Odyn"] = true,
 | 
						|
    
 | 
						|
    --MoS
 | 
						|
    ["Ymiron, the Fallen King"] = true,
 | 
						|
    ["Harbaron"] = true,
 | 
						|
    ["Helya"] = true,
 | 
						|
    
 | 
						|
    --NL
 | 
						|
    ["Rokmora"] = true,
 | 
						|
    ["Ularogg Cragshaper"] = true,
 | 
						|
    ["Naraxas"] = true,
 | 
						|
    ["Dargul the Underking"] = true,
 | 
						|
    
 | 
						|
    --Arc
 | 
						|
    ["Ivanyr"] = true,
 | 
						|
    ["Corstilax"] = true,
 | 
						|
    ["General Xakal"] = true,
 | 
						|
    ["Nal'tira"] = true,
 | 
						|
    ["Advisor Vandros"] = true,
 | 
						|
    
 | 
						|
    --VoTW
 | 
						|
    ["Tirathon Saltheril"] = true,
 | 
						|
    ["Inquisitor Tormentorum"] = true,
 | 
						|
    ["Ash'golm"] = true,
 | 
						|
    ["Glazer"] = true,
 | 
						|
    ["Cordana Felsong"] = true,
 | 
						|
}
 |