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.
55 lines
1.4 KiB
55 lines
1.4 KiB
-------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Grandmaster Vorpil", 555, 546)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(18732)
|
|
-- mod.engageId = 1911 -- no boss frames
|
|
-- mod.respawnTime = 0 -- resets, doesn't respawn
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
-5267, -- Draw Shadows
|
|
38791, -- Banish
|
|
},{
|
|
[-5267] = "general",
|
|
[38791] = "heroic",
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_SUCCESS", "DrawShadows", 33563)
|
|
self:Log("SPELL_AURA_APPLIED", "Banish", 38791)
|
|
self:Log("SPELL_AURA_REMOVED", "BanishRemoved", 38791)
|
|
|
|
self:RegisterEvent("PLAYER_REGEN_DISABLED", "CheckForEngage")
|
|
self:Death("Win", 18732)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
self:RegisterEvent("PLAYER_REGEN_ENABLED", "CheckForWipe")
|
|
self:CDBar(-5267, 44) -- Draw Shadows
|
|
end
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:DrawShadows()
|
|
self:MessageOld(-5267, "orange")
|
|
self:CDBar(-5267, 41)
|
|
end
|
|
|
|
function mod:Banish(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "red")
|
|
self:TargetBar(args.spellId, 8, args.destName)
|
|
end
|
|
|
|
function mod:BanishRemoved(args)
|
|
self:StopBar(args.spellName, args.destName)
|
|
end
|
|
|