51 lines
1.3 KiB
Lua
51 lines
1.3 KiB
Lua
--CLEU
|
|
function(...)
|
|
local se = select(3, ...)
|
|
if se == "PARTY_KILL" then
|
|
local name = select(10, ...)
|
|
if aura_env.mobs[name] then
|
|
Garbage.baqcrap.count3 = Garbage.baqcrap.count3 + aura_env.mobs[name]
|
|
return true
|
|
end
|
|
end
|
|
end
|
|
|
|
--DISPLAY
|
|
function()
|
|
return Garbage.baqcrap.count3 .. "%"
|
|
end
|
|
|
|
--INIT
|
|
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
|
if not Garbage.baqcrap.count3 then Garbage.baqcrap.count3 = 0 end
|
|
aura_env.mobs =
|
|
{
|
|
["Barnacled Reefwalker"] = 1.6,
|
|
["Gloomchasm Reefwalker"] = 1.4,
|
|
["Whitewave Reefwalker"] = 1.2,
|
|
["Staghorn Reefwalker"] = 1.2,
|
|
["Deep Reefwalker"] = 1.2,
|
|
["Sunbleached Reefwalker"] = 1,
|
|
["Kelpwillow"] = 1,
|
|
["Anemonar"] = 0.9,
|
|
["Seashelf Reefwalker"] = 0.8,
|
|
["Murkbloom Reefwalker"] = 0.7,
|
|
["Oronu"] = 0.6,
|
|
["Urduu"] = 0.6,
|
|
["Emorneth"] = 0.5,
|
|
["Sandclaw Stoneshell"] = 6,
|
|
["Chitterspine Ambusher"] = 0.8,
|
|
["Chitterspine Crab"] = 0.5,
|
|
["Chitterspine Lurker"] = 0.5,
|
|
["Iridescent Glimmershell"] = 0.5,
|
|
["Needlespine"] = 0.5,
|
|
["Chitterspine Encroacher"] = 0.4,
|
|
["Glimmershell Crab"] = 0.4,
|
|
["Sandclaw Crab"] = 0.4,
|
|
["Chitterspine Ambusher"] = 0.4,
|
|
["Crackleclaw Crab"] = 0.3,
|
|
["Glimmershell Hulk"] = 0.3,
|
|
["Chitterspine Crab"] = 0.3,
|
|
["Braxicus"] = 0.3,
|
|
["Chitterspine Guillotine"] = 0.16,
|
|
} |