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.

109 lines
2.6 KiB

local mod = DBM:NewMod("z2684", "DBM-Delves-WarWithin")
local L = mod:GetLocalizedStrings()
mod:SetRevision("20240723000632")
mod:SetHotfixNoticeRev(20240422000000)
mod:SetMinSyncRevision(20240422000000)
mod:RegisterCombat("scenario", 2684)
mod:RegisterEventsInCombat(
"SPELL_CAST_START 448644 448634 448663",
-- "SPELL_CAST_SUCCESS",
-- "SPELL_AURA_APPLIED",
-- "SPELL_AURA_REMOVED",
-- "SPELL_PERIODIC_DAMAGE",
-- "UNIT_DIED",
"ENCOUNTER_START",
"ENCOUNTER_END"
)
local warnStingingSwarm = mod:NewSpellAnnounce(448663, 2)
local specWarnBurrowingTremors = mod:NewSpecialWarningDodge(448644, nil, nil, nil, 2, 2)
local specWarnImpale = mod:NewSpecialWarningDodge(448634, nil, nil, nil, 2, 2)
local timerBurrowingTremorsCD = mod:NewCDTimer(32.4, 448644, nil, nil, nil, 5)
local timerImpaleCD = mod:NewCDTimer(30, 448634, nil, nil, nil, 3)
local timerStingingSwarmCD = mod:NewCDTimer(30, 448663, nil, nil, nil, 3)--Repeat timer not known
--Antispam IDs for this mod: 1 run away, 2 dodge, 3 dispel, 4 incoming damage, 5 you/role, 6 misc, 7 off interrupt
function mod:SPELL_CAST_START(args)
if args.spellId == 448644 then
specWarnBurrowingTremors:Show()
specWarnBurrowingTremors:Play("watchstep")
timerBurrowingTremorsCD:Start()
elseif args.spellId == 448634 then
specWarnImpale:Show()
specWarnImpale:Play("watchstep")
timerImpaleCD:Start()
elseif args.spellId == 448663 then
warnStingingSwarm:Show()
-- timerStingingSwarmCD:Start()
end
end
--[[
function mod:SPELL_CAST_SUCCESS(args)
if args.spellId == 138680 then
end
end
--]]
--[[
function mod:SPELL_AURA_APPLIED(args)
if args.spellId == 1098 then
end
end
--]]
--[[
function mod:SPELL_AURA_REMOVED(args)
if args.spellId == 1098 then
end
end
--]]
--[[
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId)
if spellId == 138561 and destGUID == UnitGUID("player") and self:AntiSpam() then
end
end
--]]
--[[
function mod:UNIT_DIED(args)
--if args.destGUID == UnitGUID("player") then--Solo scenario, a player death is a wipe
--end
local cid = self:GetCIDFromGUID(args.destGUID)
if cid == 208242 then
end
end
--]]
function mod:ENCOUNTER_START(eID)
if eID == 2989 then--Under-Lord Vik'tis
timerImpaleCD:Start(6.1)
timerBurrowingTremorsCD:Start(12.1)
timerStingingSwarmCD:Start(26.7)
end
end
function mod:ENCOUNTER_END(eID, _, _, _, success)
if eID == 2989 then--Under-Lord Vik'tis
if success == 1 then
DBM:EndCombat(self)
else
timerBurrowingTremorsCD:Stop()
timerImpaleCD:Stop()
timerStingingSwarmCD:Stop()
end
end
end