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.
38 lines
971 B
38 lines
971 B
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Selin Fireheart", 585, 530)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(24723)
|
|
mod.engageId = 1897
|
|
-- mod.respawnTime = 0 -- resets, doesn't respawn
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
44320, -- Mana Rage
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "ManaRage", 44320)
|
|
self:Log("SPELL_AURA_REMOVED", "ManaRageEnd", 44320)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:ManaRage(args)
|
|
self:MessageOld(args.spellId, "red", "info", CL.casting:format(args.spellName))
|
|
self:CastBar(args.spellId, 10)
|
|
end
|
|
|
|
function mod:ManaRageEnd(args)
|
|
self:StopBar(CL.cast:format(args.spellName))
|
|
end
|
|
|