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.
65 lines
1.7 KiB
65 lines
1.7 KiB
local mod = DBM:NewMod(322, "DBM-Party-Cataclysm", 14, 186)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "heroic,timewalker"
|
|
|
|
mod:SetRevision("20240410220852")
|
|
mod:SetCreatureID(54590)
|
|
mod:SetEncounterID(1337)
|
|
|
|
mod:RegisterCombat("emote", L.Pull)
|
|
--Still don't know why this needs to pull this way, this boss fires an engage event? plus emote only fires FIRST pull so this mod is even broken subsiquent pulls
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 103252 102582",
|
|
"UNIT_HEALTH boss1",
|
|
"UNIT_DIED"
|
|
)
|
|
|
|
mod:RegisterEvents(
|
|
"CHAT_MSG_MONSTER_SAY"
|
|
)
|
|
|
|
local warnIcyTomb = mod:NewTargetNoFilterAnnounce(103252, 4)
|
|
local warnChainsFrost = mod:NewSpellAnnounce(102582, 2)
|
|
local prewarnPhase2 = mod:NewPrePhaseAnnounce(2, 3)
|
|
|
|
local timerCombatStart = mod:NewCombatTimer(22.5)
|
|
local timerIcyTombCD = mod:NewNextTimer(30, 103252)
|
|
|
|
local warnedP2 = false
|
|
|
|
function mod:OnCombatStart(delay)
|
|
warnedP2 = false
|
|
timerIcyTombCD:Start(-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args.spellId == 103252 then
|
|
warnIcyTomb:Show(args.destName)
|
|
elseif args.spellId == 102582 then
|
|
warnChainsFrost:Show()
|
|
end
|
|
end
|
|
|
|
function mod:UNIT_HEALTH(uId)
|
|
local h = UnitHealth(uId) / UnitHealthMax(uId) * 100
|
|
if h > 50 and warnedP2 then
|
|
warnedP2 = false
|
|
elseif not warnedP2 and h > 33 and h < 37 then
|
|
warnedP2 = true
|
|
prewarnPhase2:Show()
|
|
end
|
|
end
|
|
|
|
function mod:UNIT_DIED(args)
|
|
if self:GetCIDFromGUID(args.destGUID) == 54995 then--Icy Tombs dying
|
|
timerIcyTombCD:Start()--Always cast 30 seconds after freed from previous tomb
|
|
end
|
|
end
|
|
|
|
function mod:CHAT_MSG_MONSTER_SAY(msg)
|
|
if msg == L.Event or msg:find(L.Event) then
|
|
timerCombatStart:Start()
|
|
end
|
|
end
|
|
|