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.

75 lines
2.3 KiB

local mod = DBM:NewMod(1720, "DBM-Party-Legion", 7, 800)
local L = mod:GetLocalizedStrings()
mod.statTypes = "heroic,mythic,challenge"
mod:SetRevision("20221128034518")
mod:SetCreatureID(104218)
mod:SetEncounterID(1870)
mod:SetHotfixNoticeRev(20221127000000)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 209602 209676 209628"
)
--[[
(ability.id = 209602 or ability.id = 209676 or ability.id = 209628) and type = "begincast"
or type = "dungeonencounterstart" or type = "dungeonencounterend"
--]]
local warnSurge = mod:NewTargetAnnounce(209602, 4)
local specWarnSurge = mod:NewSpecialWarningYou(209602, nil, nil, nil, 1, 2)
local yellSurge = mod:NewYell(209602)
local specWarnSlicingMaelstrom = mod:NewSpecialWarningSpell(209676, nil, nil, nil, 2, 2)
local specWarnGale = mod:NewSpecialWarningDodge(209628, nil, nil, nil, 2, 2)
local timerSurgeCD = mod:NewCDTimer(12.1, 209602, nil, nil, nil, 3)
local timerMaelstromCD = mod:NewCDTimer(24.2, 209676, nil, nil, nil, 3)
local timerGaleCD = mod:NewCDTimer(23.8, 209628, nil, nil, nil, 2)
local trashmod = DBM:GetModByName("CoSTrash")
function mod:SurgeTarget(targetname, uId)
if not targetname then
warnSurge:Show(DBM_COMMON_L.UNKNOWN)
return
end
if targetname == UnitName("player") then
specWarnSurge:Show()
specWarnSurge:Play("targetyou")
yellSurge:Yell()
else
warnSurge:Show(targetname)
end
end
function mod:OnCombatStart(delay)
timerSurgeCD:Start(5-delay)
timerGaleCD:Start(10-delay)--10
timerMaelstromCD:Start(22-delay)
--Not ideal to do every pull, but cleanest way to ensure it's done
if not trashmod then
trashmod = DBM:GetModByName("CoSTrash")
end
if trashmod and trashmod.Options.SpyHelper then
trashmod:ResetGossipState()
end
end
function mod:SPELL_CAST_START(args)
local spellId = args.spellId
if spellId == 209602 then
timerSurgeCD:Start()
self:BossTargetScanner(104218, "SurgeTarget", 0.1, 16, true, nil, nil, nil, true)
elseif spellId == 209676 then
specWarnSlicingMaelstrom:Show()
specWarnSlicingMaelstrom:Play("aesoon")
timerMaelstromCD:Start()
elseif spellId == 209628 and self:AntiSpam(5, 1) then
specWarnGale:Show()
specWarnGale:Play("watchstep")
timerGaleCD:Start()
end
end