You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
747 B
34 lines
747 B
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Jedoga Shadowseeker", 619, 582)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(29310)
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
60029, -- Thunder Shock
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_SUCCESS", "Thundershock", 56926, 60029)
|
|
|
|
self:Death("Win", 29310)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:Thundershock()
|
|
self:MessageOld(60029, "red")
|
|
self:Bar(60029, 10)
|
|
end
|
|
|
|
|