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.

94 lines
2.8 KiB

local mod = DBM:NewMod(1906, "DBM-Party-Legion", 12, 900)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20240714045506")
mod:SetCreatureID(117194)
mod:SetEncounterID(2057)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 238484 237726",
"SPELL_CAST_START 237276",
"SPELL_CAST_SUCCESS 243124"
)
--TODO, see if book local is ok in non english
--TODO, add http://ptr.wowhead.com/spell=238678/stifling-satire?
local warnScornfulGaze = mod:NewTargetAnnounce(237726, 4, nil, nil, 2)
local warnHeaveCrud = mod:NewSpellAnnounce(243124, 2)
local specWarnPulvCrudgel = mod:NewSpecialWarningRun(237276, "Melee", nil, nil, 4, 2)
local specWarnMindControl = mod:NewSpecialWarningSwitch(238484, nil, DBM_CORE_L.AUTO_SPEC_WARN_OPTIONS.switch:format(238484), nil, 1, 2)
local specWarnScornfulGaze = mod:NewSpecialWarningMoveTo(237726, nil, nil, nil, 3, 2)
local yellScornfulGaze = mod:NewYell(237726)
local timerPulvCrudgelCD = mod:NewCDTimer(34.2, 237276, nil, nil, nil, 2, nil, DBM_COMMON_L.TANK_ICON)--Might be shorter if not stunned by gaze/books
local timerScornfulGazeCD = mod:NewCDTimer(36.5, 237726, nil, nil, nil, 3, nil, DBM_COMMON_L.DEADLY_ICON)
local timerHeaveCrudCD = mod:NewCDTimer(36.5, 243124, nil, nil, nil, 3)
function mod:OnCombatStart(delay)
timerPulvCrudgelCD:Start(6-delay)
timerHeaveCrudCD:Start(15.5-delay)
timerScornfulGazeCD:Start(26.7-delay)
end
function mod:OnCombatEnd()
-- if self.Options.RangeFrame then
-- DBM.RangeCheck:Hide()
-- end
end
function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 238484 then
specWarnMindControl:Show()
if args:IsPlayer() then
--Add a yell?
specWarnMindControl:Play("targetyou")
else
specWarnMindControl:Play("findmc")
end
elseif spellId == 237726 then
timerScornfulGazeCD:Start()
if args:IsPlayer() then
specWarnScornfulGaze:Show(L.bookCase)
yellScornfulGaze:Yell()
specWarnScornfulGaze:Play("findshelter")
else
warnScornfulGaze:Show(args.destName)
end
end
end
function mod:SPELL_CAST_START(args)
local spellId = args.spellId
if spellId == 237276 then
specWarnPulvCrudgel:Show()
specWarnPulvCrudgel:Play("runout")
timerPulvCrudgelCD:Start()
end
end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if spellId == 243124 then
warnHeaveCrud:Show()
timerHeaveCrudCD:Start()
end
end
--[[
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId)
if spellId == 188494 and destGUID == UnitGUID("player") and self:AntiSpam(3, 2) then
specWarnRancidMaw:Show()
end
end
mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
if spellId == 199817 then
end
end
--]]