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.
169 lines
6.5 KiB
169 lines
6.5 KiB
local mod = DBM:NewMod(2472, "DBM-Party-Dragonflight", 1, 1196)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231029212301")
|
|
mod:SetCreatureID(186116)--194745 for Rotfang Hyena
|
|
mod:SetEncounterID(2567)
|
|
mod:SetHotfixNoticeRev(20230507000000)
|
|
--mod:SetMinSyncRevision(20211203000000)
|
|
--mod.respawnTime = 29
|
|
mod.sendMainBossGUID = true
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 384416 384827 385435 384633 384353",
|
|
"SPELL_CAST_SUCCESS 383979",
|
|
"SPELL_AURA_APPLIED 385356 384425 384764 384725 384638 384148 387889",
|
|
"SPELL_AURA_REMOVED 384725 384638 387889 384148"
|
|
)
|
|
|
|
--TODO, worth target scanning Meat Toss?
|
|
--TODO, CD feeding frenzy if it's shared cd
|
|
--TODO, does bounding leap have some kind of detection of target?
|
|
--TODO, is masters call actually interrupted or an invalid journal icon flag?
|
|
--TODO, verify some cast spellids which were iffy tooltip wise. This fight was still work in progress in build mod was made in
|
|
--[[
|
|
(ability.id = 384416 or ability.id = 384827 or ability.id = 385435 or ability.id = 384633 or ability.id = 384353) and type = "begincast"
|
|
or ability.id = 383979 and type = "cast"
|
|
or type = "dungeonencounterstart" or type = "dungeonencounterend"
|
|
--]]
|
|
local warnEnsnaringTrap = mod:NewTargetNoFilterAnnounce(384148, 3)--Trap going out
|
|
local warnSmellLikeMeat = mod:NewTargetNoFilterAnnounce(384425, 3)
|
|
local warnCallHyenas = mod:NewSpellAnnounce(384827, 2)
|
|
|
|
local specWarnEnsnaringTrap = mod:NewSpecialWarningMoveAway(384148, nil, nil, nil, 1, 2)--Trap going out
|
|
local yellEnsnaringTrap = mod:NewYell(384148, nil, false)--Trap going out
|
|
local specWarnFeedingFrenzy = mod:NewSpecialWarningDispel(384764, "RemoveEnrage", nil, nil, 1, 2)--Buff on mob
|
|
local specWarnFeedingFrenzyYou = mod:NewSpecialWarningRun(384725, nil, nil, nil, 4, 2)--Debuff on player
|
|
local specWarnMastersCall = mod:NewSpecialWarningInterrupt(384638, "HasInterrupt", nil, nil, 1, 2)
|
|
local specWarnGutShot = mod:NewSpecialWarningDefensive(384343, nil, nil, nil, 1, 2)--Trap going out
|
|
|
|
--mod:AddTimerLine(DBM:EJ_GetSectionInfo(24883))
|
|
local timerEnsnaringTrapCD = mod:NewCDTimer(17, 384148, nil, nil, nil, 3)--Trap going out
|
|
local timerMeatTossCD = mod:NewCDTimer(21.8, 384416, nil, nil, nil, 3)
|
|
local timerCallHyenasCD = mod:NewCDTimer(31.6, 384827, nil, nil, nil, 1)
|
|
--local timerMastersCallCD = mod:NewCDTimer(35, 384638, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON)--Doesn't seem to have an actual CD?
|
|
local timerGutShotCD = mod:NewCDTimer(18.2, 384343, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
|
|
|
mod:AddRangeFrameOption(4, 384558)
|
|
mod:AddNamePlateOption("NPAuraOnFixate", 384725)
|
|
mod:AddNamePlateOption("NPAuraOnMastersCall", 384638)
|
|
mod:AddNamePlateOption("NPAuraOnEnsnaringTrap", 384148)
|
|
mod:AddNamePlateOption("NPAuraOnHunterleadersTactics", 387889)
|
|
|
|
--mod:GroupSpells(384764, 384725)--Group the two frenzy IDs
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerEnsnaringTrapCD:Start(8.4-delay)
|
|
timerGutShotCD:Start(12-delay)
|
|
timerMeatTossCD:Start(20.5-delay)
|
|
timerCallHyenasCD:Start(31-delay)
|
|
-- timerMastersCallCD:Start(37-delay)--Not timer based?
|
|
if self.Options.NPAuraOnFixate or self.Options.NPAuraOnMastersCall or self.Options.NPAuraOnEnsnaringTrap or self.Options.NPAuraOnHunterleadersTactics then
|
|
DBM:FireEvent("BossMod_EnableHostileNameplates")
|
|
end
|
|
if self.Options.RangeFrame then
|
|
DBM.RangeCheck:Show(4)
|
|
end
|
|
end
|
|
|
|
function mod:OnCombatEnd()
|
|
if self.Options.RangeFrame then
|
|
DBM.RangeCheck:Hide()
|
|
end
|
|
if self.Options.NPAuraOnFixate or self.Options.NPAuraOnMastersCall or self.Options.NPAuraOnEnsnaringTrap or self.Options.NPAuraOnHunterleadersTactics then
|
|
DBM.Nameplate:Hide(true, nil, nil, nil, true, true)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
local spellId = args.spellId
|
|
if spellId == 384416 then
|
|
timerMeatTossCD:Start()
|
|
elseif spellId == 384827 or spellId == 385435 then
|
|
warnCallHyenas:Show()
|
|
timerCallHyenasCD:Start()
|
|
elseif spellId == 384633 then
|
|
-- timerMastersCallCD:Start()
|
|
if self:CheckInterruptFilter(args.sourceGUID, false, true) then
|
|
specWarnMastersCall:Show(args.sourceName)
|
|
specWarnMastersCall:Play("kickcast")
|
|
end
|
|
elseif spellId == 384353 then
|
|
if self:IsTanking("player", "boss1", nil, true) then
|
|
specWarnGutShot:Show()
|
|
specWarnGutShot:Play("carefly")
|
|
end
|
|
timerGutShotCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
local spellId = args.spellId
|
|
if spellId == 383979 then
|
|
timerEnsnaringTrapCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 385356 then
|
|
warnEnsnaringTrap:CombinedShow(0.3, args.destName)
|
|
if args:IsPlayer() then
|
|
specWarnEnsnaringTrap:Show()
|
|
specWarnEnsnaringTrap:Play("scatter")
|
|
yellEnsnaringTrap:Yell()
|
|
end
|
|
elseif spellId == 384425 then
|
|
warnSmellLikeMeat:Show(args.destName)
|
|
elseif spellId == 384764 and self:AntiSpam(3, 1) then
|
|
specWarnFeedingFrenzy:Show(args.destName)
|
|
specWarnFeedingFrenzy:Play("enrage")
|
|
elseif spellId == 384725 and args:IsPlayer() then
|
|
if self:AntiSpam(3, 2) then
|
|
specWarnFeedingFrenzyYou:Show()
|
|
specWarnFeedingFrenzyYou:Play("justrun")
|
|
end
|
|
if self.Options.NPAuraOnFixate then
|
|
DBM.Nameplate:Show(true, args.sourceGUID, spellId, nil, 10)
|
|
end
|
|
elseif spellId == 384638 then
|
|
if self.Options.NPAuraOnMastersCall then
|
|
DBM.Nameplate:Show(true, args.destGUID, spellId, nil, 5)
|
|
end
|
|
elseif spellId == 384148 then
|
|
if args:IsDestTypeHostile() then--Nameplates used to show them being used on adds
|
|
if self.Options.NPAuraOnEnsnaringTrap then
|
|
DBM.Nameplate:Show(true, args.destGUID, spellId, nil, 6)
|
|
end
|
|
else--Alerts are shown for players fucking them up
|
|
|
|
end
|
|
elseif spellId == 387889 then
|
|
if self.Options.NPAuraOnHunterleadersTactics then
|
|
DBM.Nameplate:Show(true, args.destGUID, spellId)
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 384725 and args:IsPlayer() then
|
|
if self.Options.NPAuraOnFixate then
|
|
DBM.Nameplate:Hide(true, args.sourceGUID, spellId)
|
|
end
|
|
elseif spellId == 384638 then
|
|
if self.Options.NPAuraOnMastersCall then
|
|
DBM.Nameplate:Hide(true, args.destGUID, spellId)
|
|
end
|
|
elseif spellId == 384148 and args:IsDestTypeHostile() then
|
|
if self.Options.NPAuraOnEnsnaringTrap then
|
|
DBM.Nameplate:Hide(true, args.destGUID, spellId)
|
|
end
|
|
elseif spellId == 387889 then
|
|
if self.Options.NPAuraOnHunterleadersTactics then
|
|
DBM.Nameplate:Hide(true, args.destGUID, spellId)
|
|
end
|
|
end
|
|
end
|
|
|