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.
39 lines
933 B
39 lines
933 B
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("High Priestess Azil", 725, 113)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(42333)
|
|
mod.engageId = 1057
|
|
mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
79345, -- Curse of Blood
|
|
79050, -- Energy Shield
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "CurseOfBlood", 79345)
|
|
self:Log("SPELL_CAST_START", "EnergyShield", 79050, 82858)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:CurseOfBlood(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "yellow")
|
|
end
|
|
|
|
function mod:EnergyShield()
|
|
self:MessageOld(79050, "red", "alert")
|
|
end
|
|
|
|
|