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.
30 lines
981 B
30 lines
981 B
-------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
|
|
local mod, CL = BigWigs:NewBoss("Keli'dan the Breaker", 542, 557)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(17377)
|
|
-- mod.engageId = 1923 -- no boss frames, no ENCOUNTER_END on a wipe
|
|
-- mod.respawnTime = 0 -- resets, doesn't respawn
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- Initialization
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
-5388, -- Burning Nova
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_SUCCESS", "BurningNova", 30940) -- the buff that he applies to himself before casting the spell (37371) that does the damage
|
|
self:Death("Win", 17377)
|
|
end
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
|
|
function mod:BurningNova(args)
|
|
self:MessageOld(-5388, "red", nil, CL.casting:format(args.spellName))
|
|
self:CastBar(-5388, 6)
|
|
end
|
|
|