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.
47 lines
1.1 KiB
47 lines
1.1 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Overlord Mathias Shaw", 2213)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(158157, 158315) -- Overlord Mathias Shaw, Eye of Chaos
|
|
mod:SetAllowWin(true)
|
|
mod.engageId = 2376
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Localization
|
|
--
|
|
|
|
local L = mod:GetLocale()
|
|
if L then
|
|
L.overlord_mathias_shaw = "Overlord Mathias Shaw"
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
308669, -- Dark Gaze
|
|
}
|
|
end
|
|
|
|
function mod:OnRegister()
|
|
self.displayName = L.overlord_mathias_shaw
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "DarkGaze", 308669)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:DarkGaze(args)
|
|
self:Message(args.spellId, "red")
|
|
self:PlaySound(args.spellId, "alarm")
|
|
self:CDBar(args.spellId, 12)
|
|
end
|
|
|