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.
49 lines
1.3 KiB
49 lines
1.3 KiB
local mod = DBM:NewMod(641, "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(26668)
|
|
mod:SetEncounterID(2030)
|
|
mod:DisableESCombatDetection()--TODO, why is it disabled?
|
|
mod:SetHotfixNoticeRev(20220119000000)
|
|
mod:SetMinSyncRevision(20220119000000)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEvents(
|
|
"CHAT_MSG_MONSTER_YELL"
|
|
)
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 48267 48276",
|
|
"SPELL_AURA_REMOVED 48276"
|
|
)
|
|
|
|
local warningSacrifice = mod:NewTargetNoFilterAnnounce(48267, 4)
|
|
|
|
local timerSacrifice = mod:NewBuffActiveTimer(25, 48276, nil, nil, nil, 5, nil, DBM_COMMON_L.DAMAGE_ICON)
|
|
local timerRoleplay = mod:NewTimer(67, "timerRoleplay", "237538")--roleplay for boss is active
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 48267 then
|
|
warningSacrifice:Show(args.destName)
|
|
elseif args.spellId == 48276 then
|
|
timerSacrifice:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
if args.spellId == 48276 then
|
|
timerSacrifice:Stop()
|
|
end
|
|
end
|
|
|
|
function mod:CHAT_MSG_MONSTER_YELL(msg)
|
|
if msg == L.SvalaRoleplayStart or msg:find(L.SvalaRoleplayStart) then
|
|
timerRoleplay:Start()
|
|
end
|
|
end
|
|
|