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.
104 lines
3.0 KiB
104 lines
3.0 KiB
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
--TO DO List
|
|
--Timers work fine couldnt test Say mechanic stinging swarm due to rng targetting.
|
|
local mod, CL = BigWigs:NewBoss("Kurtalos Ravencrest", 1501, 1672)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(98965,98970)
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Locals
|
|
--
|
|
|
|
local shadowBoltCount = 1
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
{198635, "TANK"}, -- Unerring Sheer
|
|
198820, -- Dark Blast
|
|
198641, -- Whirling Blade
|
|
199193, -- Dreadlords Guise
|
|
202019, -- Shadow Bolt Volley
|
|
{201733, "SAY"}, -- Stinging Swarm
|
|
199143, -- Cloud of Hypnosis
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "DarkBlast", 198820)
|
|
self:Log("SPELL_CAST_START", "WhirlingBlade", 198641)
|
|
self:Log("SPELL_CAST_START", "ShadowBoltValley", 202019) -- First one only
|
|
self:Log("SPELL_CAST_START", "StingingSwarm", 201733)
|
|
self:Log("SPELL_CAST_SUCCESS", "CloudOfHypnosis", 199143)
|
|
self:Log("SPELL_CAST_START", "DreadlordsGuise", 199193)
|
|
self:Log("SPELL_AURA_APPLIED", "StingingSwarmApplied", 201733)
|
|
self:RegisterEvent("INSTANCE_ENCOUNTER_ENGAGE_UNIT", "CheckBossStatus")
|
|
self:Death("KurtalosDeath", 98965)
|
|
self:Death("Win", 98970)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
shadowBoltCount = 1
|
|
self:CDBar(198635, 5.5) -- Unerring Sheer
|
|
self:CDBar(198641, 11) -- Whirling Blade
|
|
self:CDBar(198820, 12) -- Dark Blast
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:DarkBlast(args)
|
|
self:MessageOld(args.spellId, "yellow", "warning", CL.incoming:format(args.spellName))
|
|
end
|
|
|
|
function mod:WhirlingBlade(args)
|
|
self:MessageOld(args.spellId, "yellow", "info", CL.incoming:format(args.spellName))
|
|
end
|
|
|
|
function mod:ShadowBoltValley(args)
|
|
if shadowBoltCount == 1 then
|
|
self:MessageOld(args.spellId, "red", "warning", CL.incoming:format(args.spellName))
|
|
else
|
|
self:MessageOld(args.spellId, "yellow", "info", CL.incoming:format(args.spellName))
|
|
end
|
|
self:Bar(args.spellId, 8.5)
|
|
shadowBoltCount = shadowBoltCount + 1
|
|
end
|
|
|
|
function mod:DreadlordsGuise(args)
|
|
self:StopBar(201733) -- Stinging Swarm
|
|
self:StopBar(198641) -- Whirling Blade
|
|
self:StopBar(202019) -- Shadow Bolt Volley
|
|
self:StopBar(199143) -- Cloud of Hypnosis
|
|
if mod:Mythic() then
|
|
self:Bar(args.spellId, 22) -- 27 on normal
|
|
self:ScheduleTimer("CDBar", 22, 201733, 5.5) -- Stinging Swarm
|
|
else
|
|
self:Bar(args.spellId, 27) -- longer than 23 on Norm/hc
|
|
end
|
|
end
|
|
|
|
function mod:CloudOfHypnosis(args)
|
|
self:Bar(args.spellId, 30.8)
|
|
end
|
|
|
|
function mod:StingingSwarm(args)
|
|
self:CDBar(args.spellId, 17)
|
|
end
|
|
|
|
function mod:StingingSwarmApplied(args)
|
|
if self:Me(args.destGUID) then
|
|
self:Say(args.spellId)
|
|
end
|
|
end
|
|
|
|
function mod:KurtalosDeath()
|
|
self:Bar(202019, 17.5) -- Shadow Bolt Volley
|
|
end
|
|
|