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.

51 lines
1.5 KiB

local mod = DBM:NewMod("Mograine_and_Whitemane", "DBM-Party-Vanilla", DBM:IsPostCata() and 17 or 12)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20240316010232")
mod:SetCreatureID(3977, 3976, 99999)--Whitemane, Mograine
mod:SetEncounterID(450)
mod:SetZone(189)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 12039",
"SPELL_CAST_SUCCESS 9256",
"UNIT_DIED"
)
local warnDeepSleep = mod:NewSpellAnnounce(9256, 2)
local specWarnHeal = mod:NewSpecialWarningInterrupt(12039, "HasInterrupt", nil, nil, 1, 2)
local timerDeepSleep = mod:NewBuffFadesTimer(10, 9256, nil, nil, nil, 6)
function mod:OnCombatStart(delay)
self:SetStage(1)
end
function mod:SPELL_CAST_START(args)
if args:IsSpell(12039) and args:IsSrcTypeHostile() and self:CheckInterruptFilter(args.sourceGUID, false, true) then
specWarnHeal:Show(args.sourceName)
specWarnHeal:Play("kickcast")
end
end
--3/28 16:22:43.810 SPELL_CAST_SUCCESS,0xF1300F8900000065,"High Inquisitor Whitemane",0xa48,0x0,0x0000000000000000,nil,0x80000000,0x80000000,9256,"Deep Sleep",0x20
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpell(9256) then--Phase 3
self:SetStage(3)
warnDeepSleep:Show()
timerDeepSleep:Start()
end
end
function mod:UNIT_DIED(args)
if self:GetCIDFromGUID(args.destGUID) == 3976 then
if self.vb.phase == 3 then--Fight is over on 2nd death
DBM:EndCombat(self)
else--it's first death, he's down and whiteman is taking over
self:SetStage(2)
end
end
end