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.

83 lines
2.7 KiB

local mod = DBM:NewMod(1654, "DBM-Party-Legion", 2, 762)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20220217011830")
mod:SetCreatureID(96512)
mod:SetEncounterID(1836)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 198379",
"SPELL_CAST_SUCCESS 198401 212464",
"SPELL_PERIODIC_DAMAGE 198408",
"SPELL_PERIODIC_MISSED 198408",
"UNIT_SPELLCAST_SUCCEEDED boss1"
)
local warnLeap = mod:NewTargetNoFilterAnnounce(196346, 2)--0.5 seconds may still be too hard to dodge even if target scanning works.
local warnNightFall = mod:NewSpellAnnounce(198401, 2)
local specWarnNightfall = mod:NewSpecialWarningMove(198408, nil, nil, nil, 1, 2)
--local specWarnLeap = mod:NewSpecialWarningDodge(196346, nil, nil, nil, 1)
local yellLeap = mod:NewYell(196346)
local specWarnRampage = mod:NewSpecialWarningDefensive(198379, "Tank", nil, nil, 1, 2)
local timerLeapCD = mod:NewCDTimer(12.9, 196346, nil, nil, nil, 3)
local timerRampageCD = mod:NewCDTimer(15.8, 198379, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)
local timerNightfallCD = mod:NewCDTimer(14.5, 198408, nil, nil, nil, 3)
function mod:LeapTarget(targetname, uId)
if not targetname then
warnLeap:Show(DBM_COMMON_L.UNKNOWN)
return
end
warnLeap:Show(targetname)
if targetname == UnitName("player") then
yellLeap:Yell()
end
end
function mod:OnCombatStart(delay)
timerLeapCD:Start(5-delay)
timerRampageCD:Start(12.2-delay)
timerNightfallCD:Start(19-delay)
end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if (spellId == 198401 or spellId == 212464) and self:AntiSpam(2, 1) then
warnNightFall:Show()
if spellId == 212464 then
timerNightfallCD:Start(28)--Needs more support data. could be health based too
else
timerNightfallCD:Start()
end
end
end
function mod:SPELL_CAST_START(args)
local spellId = args.spellId
if spellId == 198379 then
specWarnRampage:Show()
specWarnRampage:Play("defensive")
timerRampageCD:Start()
end
end
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId)
if spellId == 198408 and destGUID == UnitGUID("player") and self:AntiSpam(2, 2) then
specWarnNightfall:Show()
specWarnNightfall:Play("runaway")
end
end
mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
--"<13.84 02:50:50> [UNIT_SPELLCAST_SUCCEEDED] Arch-Druid Glaidalis(Omegal) [[boss1:Grievous Leap::3-2084-1466-6383-196346-000018A4DA:196346]]", -- [47]
if spellId == 196346 then
self:BossTargetScanner(96512, "LeapTarget", 0.05, 12, true, nil, nil, nil, true)
timerLeapCD:Start()
end
end