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.
59 lines
1.6 KiB
59 lines
1.6 KiB
local mod = DBM:NewMod(643, "DBM-Party-WotLK", 11, 286)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
if not mod:IsClassic() then
|
|
mod.statTypes = "normal,heroic,timewalker"
|
|
end
|
|
|
|
mod:SetRevision("20230311193122")
|
|
mod:SetCreatureID(26693)
|
|
mod:SetEncounterID(2029)
|
|
|
|
mod:RegisterCombat("yell", L.Phase2)
|
|
|
|
mod:RegisterEvents(
|
|
"CHAT_MSG_MONSTER_YELL"
|
|
)
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 59331 50255 59322 50228",
|
|
"SPELL_AURA_REMOVED 59331 50255"
|
|
)
|
|
|
|
local warnPhase2 = mod:NewPhaseAnnounce(2)
|
|
local warningPoison = mod:NewTargetNoFilterAnnounce(59331, 2, nil, "Healer")
|
|
|
|
local specWarnWhirlwind = mod:NewSpecialWarningRun(59322, nil, nil, 2, 4, 2)
|
|
|
|
local timerPoison = mod:NewTargetTimer(12, 59331, nil, "Healer", 2, 5, nil, DBM_COMMON_L.HEALER_ICON)
|
|
local timerWhirlwindCD = mod:NewCDTimer(23, 59322, nil, nil, nil, 2)
|
|
local timerAchieve = mod:NewAchievementTimer(180, 1873)
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpellID(59331, 50255) then
|
|
warningPoison:Show(args.destName)
|
|
timerPoison:Start(args.destName)
|
|
elseif args:IsSpellID(59322, 50228) then
|
|
timerWhirlwindCD:Start()
|
|
if not self:IsTrivial() then
|
|
specWarnWhirlwind:Show()
|
|
specWarnWhirlwind:Play("runout")
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
if args:IsSpellID(59331, 50255) then
|
|
timerPoison:Cancel(args.destName)
|
|
end
|
|
end
|
|
|
|
function mod:CHAT_MSG_MONSTER_YELL(msg)
|
|
if msg == L.Phase2 or msg:find(L.Phase2) then
|
|
warnPhase2:Show()
|
|
elseif msg == L.CombatStart or msg:find(L.CombatStart) then
|
|
if not self:IsDifficulty("normal5") then
|
|
timerAchieve:Start()
|
|
end
|
|
end
|
|
end
|
|
|