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.
165 lines
5.5 KiB
165 lines
5.5 KiB
local mod = DBM:NewMod(2571, "DBM-Party-WarWithin", 2, 1267)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20240612041205")
|
|
mod:SetCreatureID(207946)
|
|
mod:SetEncounterID(2847)
|
|
mod:SetHotfixNoticeRev(20240608000000)
|
|
--mod:SetMinSyncRevision(20211203000000)
|
|
--mod.respawnTime = 29
|
|
mod.sendMainBossGUID = true
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 424419 447270 424414",
|
|
"SPELL_CAST_SUCCESS 424414",
|
|
"SPELL_AURA_APPLIED 447443 447439 424419",
|
|
"SPELL_AURA_REMOVED 447443"
|
|
-- "SPELL_PERIODIC_DAMAGE",
|
|
-- "SPELL_PERIODIC_MISSED"
|
|
-- "UNIT_DIED"
|
|
-- "UNIT_SPELLCAST_SUCCEEDED boss1"
|
|
)
|
|
|
|
--NOTE, the abilities of sub bosses are all in trash mod due to fact that you can (and should) pull them separately from boss
|
|
--TODO, track Strength in Numbers by purposely pulling boss wrong?
|
|
--[[
|
|
(ability.id = 424419 or ability.id = 447270 or ability.id = 424414) and type = "begincast"
|
|
or ability.id = 447443 and (type = "applydebuff" or type = "removedebuff")
|
|
or type = "dungeonencounterstart" or type = "dungeonencounterend"
|
|
--]]
|
|
--Captain Dailcry
|
|
mod:AddTimerLine(DBM:EJ_GetSectionInfo(27821))
|
|
local warnSavageMauling = mod:NewTargetNoFilterAnnounce(447439, 3)
|
|
|
|
local specWarnBattleCry = mod:NewSpecialWarningInterruptCount(424419, nil, nil, nil, 1, 2)
|
|
local specWarnBattleCryDispel = mod:NewSpecialWarningDispel(424419, "RemoveEnrage", nil, nil, 1, 2)
|
|
local specWarnHurlSpear = mod:NewSpecialWarningDodgeCount(447272, nil, nil, nil, 2, 2)
|
|
local specWarnPierceArmor = mod:NewSpecialWarningDefensive(424414, nil, nil, nil, 1, 2)
|
|
--local specWarnGTFO = mod:NewSpecialWarningGTFO(372820, nil, nil, nil, 1, 8)
|
|
|
|
local timerSavageMaulingCD = mod:NewCDCountTimer(25.7, 447439, nil, nil, nil, 3)--It's either 25.7 from last ones REMOVAL, or ~30.3 from last ones application
|
|
local timerBattleCryCD = mod:NewCDCountTimer(15.8, 424419, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON)--15.8-18.2
|
|
local timerHurlSpearCD = mod:NewCDCountTimer(15.8, 447272, nil, nil, nil, 3)--15.8-19.4
|
|
local timerPierceArmorCD = mod:NewCDCountTimer(7.3, 424414, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
|
|
|
mod:AddInfoFrameOption(447443)
|
|
|
|
mod.vb.savageCount = 0
|
|
mod.vb.battleCryCount = 0
|
|
mod.vb.spearCount = 0
|
|
mod.vb.pierceCount = 0
|
|
|
|
function mod:OnCombatStart(delay)
|
|
self.vb.savageCount = 0
|
|
self.vb.battleCryCount = 0
|
|
self.vb.spearCount = 0
|
|
self.vb.pierceCount = 0
|
|
timerPierceArmorCD:Start(6-delay, 1)
|
|
timerHurlSpearCD:Start(8.4-delay, 1)
|
|
timerBattleCryCD:Start(12-delay, 1)
|
|
timerSavageMaulingCD:Start(14.4-delay, 1)
|
|
--Allow trash mod to enable in combat in case you DO pull boss with any of the 3 sub bosses still active
|
|
local trashMod = DBM:GetModByName("SacredFlameTrash")
|
|
if trashMod then
|
|
trashMod.isTrashModBossFightAllowed = true
|
|
end
|
|
end
|
|
|
|
function mod:OnCombatEnd()
|
|
local trashMod = DBM:GetModByName("SacredFlameTrash")
|
|
if trashMod then
|
|
trashMod.isTrashModBossFightAllowed = false
|
|
end
|
|
if self.Options.InfoFrame then
|
|
DBM.InfoFrame:Hide()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
local spellId = args.spellId
|
|
if spellId == 424419 then
|
|
self.vb.battleCryCount = self.vb.battleCryCount + 1
|
|
specWarnBattleCry:Show(args.sourceName, self.vb.battleCryCount)
|
|
specWarnBattleCry:Play("kickcast")
|
|
timerBattleCryCD:Start(nil, self.vb.battleCryCount+1)
|
|
elseif spellId == 447270 then
|
|
self.vb.spearCount = self.vb.spearCount + 1
|
|
specWarnHurlSpear:Show(self.vb.spearCount)
|
|
specWarnHurlSpear:Play("watchstep")
|
|
timerHurlSpearCD:Start(nil, self.vb.spearCount+1)
|
|
elseif spellId == 424414 then
|
|
if self:IsTanking("player", "boss1", nil, true) then
|
|
specWarnPierceArmor:Show()
|
|
specWarnPierceArmor:Play("defensive")
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
local spellId = args.spellId
|
|
if spellId == 424414 then
|
|
self.vb.pierceCount = self.vb.pierceCount + 1
|
|
timerPierceArmorCD:Start(5.8, self.vb.pierceCount+1)--Doesn't go on CD unless it finishes, can stutter cast (7.3 - 1.5)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 447443 then
|
|
self.vb.savageCount = self.vb.savageCount + 1
|
|
--timerSavageMaulingCD:Start(nil, self.vb.savageCount+1)
|
|
if self.Options.InfoFrame then
|
|
DBM.InfoFrame:SetHeader(args.spellName)
|
|
DBM.InfoFrame:Show(2, "enemyabsorb", nil, args.amount, "boss1")
|
|
end
|
|
elseif spellId == 447439 then
|
|
warnSavageMauling:Show(args.destName)
|
|
elseif spellId == 424419 then
|
|
specWarnBattleCryDispel:Show(args.destName)
|
|
specWarnBattleCryDispel:Play("enrage")
|
|
end
|
|
end
|
|
--mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 447443 then
|
|
timerSavageMaulingCD:Start(nil, self.vb.savageCount+1)
|
|
if self.Options.InfoFrame then
|
|
DBM.InfoFrame:Hide()
|
|
end
|
|
end
|
|
end
|
|
|
|
--[[
|
|
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName)
|
|
if spellId == 372820 and destGUID == UnitGUID("player") and self:AntiSpam(3, 2) then
|
|
specWarnGTFO:Show(spellName)
|
|
specWarnGTFO:Play("watchfeet")
|
|
end
|
|
end
|
|
mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE
|
|
--]]
|
|
|
|
--[[
|
|
function mod:UNIT_DIED(args)
|
|
local cid = self:GetCIDFromGUID(args.destGUID)
|
|
if cid == 211291 then--sergeant-shaynemail
|
|
|
|
elseif cid == 211289 then--taener-duelmal
|
|
|
|
elseif cid == 211290 then--elaena-emberlanz
|
|
|
|
end
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
|
|
if spellId == 74859 then
|
|
|
|
end
|
|
end
|
|
--]]
|
|
|