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.1 KiB

4 years ago
--------------------------------------------------------------------------------
-- Module declaration
--
local mod, CL = BigWigs:NewBoss("Warbringer O'mrogg", 540, 568)
if not mod then return end
mod:RegisterEnableMob(16809)
mod.engageId = 1937
-- mod.respawnTime = 0 -- resets, doesn't respawn
--------------------------------------------------------------------------------
-- Initialization
--
function mod:GetOptions()
return {
{-5894, "SAY", "FLASH"}, -- Beatdown
}
end
function mod:OnBossEnable()
self:RegisterUnitEvent("UNIT_SPELLCAST_SUCCEEDED", nil, "boss1")
end
--------------------------------------------------------------------------------
-- Event Handlers
--
do
local function announce(self, target, guid)
if self:Me(guid) then
self:Say(-5894)
self:Flash(-5894)
end
self:TargetMessageOld(-5894, target, "yellow", "warning", nil, nil, true)
end
function mod:UNIT_SPELLCAST_SUCCEEDED(_, unit, _, spellId)
if spellId == 30618 then -- Beatdown
self:GetBossTarget(announce, 0.4, self:UnitGUID(unit))
end
end
end