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.
35 lines
798 B
35 lines
798 B
|
4 years ago
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Module declaration
|
||
|
|
--
|
||
|
|
|
||
|
|
local mod, CL = BigWigs:NewBoss("Loken", 602, 600)
|
||
|
|
if not mod then return end
|
||
|
|
mod:RegisterEnableMob(28923)
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Initialization
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:GetOptions()
|
||
|
|
return {
|
||
|
|
59835, -- Lightning Nova
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnBossEnable()
|
||
|
|
self:Log("SPELL_CAST_START", "LightningNova", 52960, 59835) -- normal, heroic
|
||
|
|
|
||
|
|
self:Death("Win", 28923)
|
||
|
|
end
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Event Handlers
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:LightningNova(args)
|
||
|
|
self:MessageOld(59835, "orange", "alert")
|
||
|
|
self:Bar(59835, args.spellId == 59835 and 4 or 5)
|
||
|
|
end
|
||
|
|
|