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.
63 lines
1.6 KiB
63 lines
1.6 KiB
|
3 years ago
|
local mod = DBM:NewMod(104, "DBM-Party-Cataclysm", 9, 65)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod.statTypes = "normal,heroic,timewalker"
|
||
|
|
|
||
|
|
mod:SetRevision("20200912135206")
|
||
|
|
mod:SetCreatureID(40792)
|
||
|
|
mod:SetEncounterID(1047)
|
||
|
|
mod:SetMainBossID(42172)--42172 is Ozumat, but we need Neptulon for engage trigger.
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_AURA_APPLIED 83463 76133",
|
||
|
|
"SPELL_CAST_SUCCESS 83985 83986",
|
||
|
|
"UNIT_SPELLCAST_SUCCEEDED"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warnPhase2 = mod:NewPhaseAnnounce(2)
|
||
|
|
local warnPhase3 = mod:NewPhaseAnnounce(3)
|
||
|
|
local warnBlightSpray = mod:NewSpellAnnounce(83985, 2)
|
||
|
|
|
||
|
|
local timerPhase = mod:NewTimer(95, "TimerPhase", nil, nil, nil, 6)
|
||
|
|
local timerBlightSpray = mod:NewBuffActiveTimer(4, 83985, nil, nil, nil, 3)
|
||
|
|
|
||
|
|
mod.vb.warnedPhase2 = false
|
||
|
|
mod.vb.warnedPhase3 = false
|
||
|
|
|
||
|
|
function mod:OnCombatStart(delay)
|
||
|
|
self.vb.warnedPhase2 = false
|
||
|
|
self.vb.warnedPhase3 = false
|
||
|
|
timerPhase:Start()--Can be done right later once consistency is confirmed.
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_AURA_APPLIED(args)
|
||
|
|
if args.spellId == 83463 and not self.vb.warnedPhase2 then
|
||
|
|
warnPhase2:Show(2)
|
||
|
|
self.vb.warnedPhase2 = true
|
||
|
|
elseif args.spellId == 76133 and not self.vb.warnedPhase3 then
|
||
|
|
warnPhase3:Show(3)
|
||
|
|
self.vb.warnedPhase3 = true
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
||
|
|
if args:IsSpellID(83985, 83986) then
|
||
|
|
warnBlightSpray:Show()
|
||
|
|
timerBlightSpray:Start()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
|
||
|
|
if spellId == 83909 then --Clear Tidal Surge
|
||
|
|
self:SendSync("bossdown")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnSync(msg)
|
||
|
|
if msg == "bossdown" then
|
||
|
|
DBM:EndCombat(self)
|
||
|
|
end
|
||
|
|
end
|