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.

37 lines
1003 B

-------------------------------------------------------------------------------
-- Module Declaration
--
local mod, CL = BigWigs:NewBoss("Prince Keleseth", 574, 638)
if not mod then return end
mod:RegisterEnableMob(23953)
mod.engageId = 2026
-- mod.respawnTime = 0 -- resets, doesn't respawn
-------------------------------------------------------------------------------
-- Initialization
--
function mod:GetOptions()
return {
48400, -- Frost Tomb
}
end
function mod:OnBossEnable()
self:Log("SPELL_AURA_APPLIED", "FrostTomb", 48400)
self:Log("SPELL_AURA_REMOVED", "FrostTombRemoved", 48400)
end
-------------------------------------------------------------------------------
-- Event Handlers
--
function mod:FrostTomb(args)
self:TargetMessageOld(args.spellId, args.destName, "red", "warning", nil, nil, true)
self:TargetBar(args.spellId, 20, args.destName)
end
function mod:FrostTombRemoved(args)
self:StopBar(args.spellName, args.destName)
end