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.

74 lines
2.2 KiB

local mod = DBM:NewMod(686, "DBM-Party-MoP", 3, 312)
local L = mod:GetLocalizedStrings()
mod.statTypes = "normal,heroic,challenge,timewalker"
mod:SetRevision("20240421062339")
mod:SetCreatureID(56884)
mod:SetEncounterID(1306)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 131521 107087 107356",
"SPELL_CAST_START 115002",
"UNIT_SPELLCAST_SUCCEEDED boss1"
)
local warnRingofMalice = mod:NewSpellAnnounce(131521, 3)
local warnHazeofHate = mod:NewTargetAnnounce(107087, 4)
local specWarnGrippingHatred= mod:NewSpecialWarningSwitch(-5817, nil, nil, nil, 1, 2)
local specWarnHazeofHate = mod:NewSpecialWarningYou(107087, nil, nil, nil, 1, 2)
local specWarnRisingHate = mod:NewSpecialWarningInterrupt(107356, "-Healer", nil, nil, 1, 2)
local timerRingofMalice = mod:NewBuffActiveTimer(15, 131521, nil, nil, nil, 2)
local timerGrippingHatredCD = mod:NewNextTimer(45.5, 115002, nil, nil, nil, 1)
mod:AddBoolOption("InfoFrame", true)
local Hate = DBM:EJ_GetSectionInfo(5827)
function mod:OnCombatStart(delay)
if self.Options.InfoFrame then
DBM.InfoFrame:SetHeader(Hate)
DBM.InfoFrame:Show(5, "playerpower", 5, ALTERNATE_POWER_INDEX)
end
end
function mod:OnCombatEnd()
if self.Options.InfoFrame then
DBM.InfoFrame:Hide()
end
end
function mod:SPELL_AURA_APPLIED(args)
if args.spellId == 131521 then
warnRingofMalice:Show()
timerRingofMalice:Start()
elseif args.spellId == 107087 then
if args:IsPlayer() then
specWarnHazeofHate:Show()
specWarnHazeofHate:Play("targetyou")--lazy voice, forgot to get one added for "use extra action button"
else
warnHazeofHate:Show(args.destName)
end
elseif args.spellId == 107356 and self:CheckInterruptFilter(args.sourceGUID, false, true) then
specWarnRisingHate:Show(args.destName)
specWarnRisingHate:Play("kickcast")
end
end
function mod:SPELL_CAST_START(args)
if args.spellId == 115002 and self:AntiSpam(5, 2) then
specWarnGrippingHatred:Show()
specWarnGrippingHatred:Play("killmob")
timerGrippingHatredCD:Start()
end
end
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
if spellId == 125891 then
DBM:EndCombat(self)
end
end