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.
102 lines
2.7 KiB
102 lines
2.7 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Echelon", 2287, 2387)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(164185) -- Echelon
|
|
mod.engageId = 2380
|
|
--mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Locals
|
|
--
|
|
|
|
local stoneCallCount = 1
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
319733, -- Stone Call
|
|
328206, -- Curse of Stone
|
|
{319941, "SAY", "SAY_COUNTDOWN", "FLASH"}, -- Stone Shattering Leap
|
|
326389, -- Blood Torrent
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "StoneCall", 319733)
|
|
self:Log("SPELL_CAST_SUCCESS", "CurseofStone", 328206)
|
|
self:Log("SPELL_CAST_START", "StoneShatteringLeap", 319941)
|
|
self:Log("SPELL_CAST_SUCCESS", "BloodTorrent", 326389)
|
|
self:Log("SPELL_AURA_APPLIED", "BloodTorrentDamage", 319703)
|
|
self:Log("SPELL_PERIODIC_DAMAGE", "BloodTorrentDamage", 319703)
|
|
self:Log("SPELL_PERIODIC_MISSED", "BloodTorrentDamage", 319703)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
stoneCallCount = 1
|
|
|
|
self:CDBar(326389, 9.5) -- Blood Torrent
|
|
self:CDBar(319733, 15.5) -- Stone Call
|
|
self:CDBar(328206, 22) -- Curse of Stone
|
|
self:CDBar(319941, 23.5) -- Stone Shattering Leap
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:StoneCall(args)
|
|
self:Message(args.spellId, "cyan")
|
|
self:PlaySound(args.spellId, "long")
|
|
stoneCallCount = stoneCallCount + 1
|
|
self:CDBar(args.spellId, stoneCallCount % 2 == 0 and 43.5 or 36.5)
|
|
end
|
|
|
|
function mod:CurseofStone(args)
|
|
self:Message(args.spellId, "yellow")
|
|
self:PlaySound(args.spellId, "info")
|
|
self:CDBar(args.spellId, 29)
|
|
end
|
|
|
|
do
|
|
local function printTarget(self, name, guid)
|
|
self:TargetMessage(319941, "orange", name) -- Sinlight Visions
|
|
if self:Me(guid) then
|
|
self:Flash(319941)
|
|
self:Say(319941)
|
|
self:SayCountdown(319941, 5)
|
|
self:PlaySound(319941, "warning") -- Sinlight Visions
|
|
end
|
|
end
|
|
|
|
function mod:StoneShatteringLeap(args)
|
|
self:GetBossTarget(printTarget, 0.4, args.sourceGUID)
|
|
self:Bar(args.spellId, 29)
|
|
end
|
|
end
|
|
|
|
function mod:BloodTorrent(args)
|
|
self:Message(args.spellId, "orange")
|
|
self:PlaySound(args.spellId, "alert")
|
|
self:CDBar(args.spellId, 17)
|
|
end
|
|
|
|
do
|
|
local prev = 0
|
|
function mod:BloodTorrentDamage(args)
|
|
if self:Me(args.destGUID) then
|
|
local t = args.time
|
|
if t-prev > 2 then
|
|
prev = t
|
|
self:PersonalMessage(326389, "underyou")
|
|
self:PlaySound(326389, "underyou")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|