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.
45 lines
1.0 KiB
45 lines
1.0 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Ormorok the Tree-Shaper", 576, 620)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(26794)
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
47981, -- Spell Reflection
|
|
48017, -- Frenzy
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "SpellReflection", 47981)
|
|
self:Log("SPELL_AURA_REMOVED", "SpellReflectionRemoved", 47981)
|
|
self:Log("SPELL_CAST_SUCCESS", "Frenzy", 48017, 57086)
|
|
|
|
self:Death("Win", 26794)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:SpellReflection(args)
|
|
self:MessageOld(args.spellId, "yellow")
|
|
self:Bar(args.spellId, 15)
|
|
end
|
|
|
|
function mod:SpellReflectionRemoved(args)
|
|
self:StopBar(args.spellName)
|
|
end
|
|
|
|
function mod:Frenzy()
|
|
self:MessageOld(48017, "red")
|
|
end
|
|
|
|
|