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.
35 lines
779 B
35 lines
779 B
|
3 years ago
|
local mod = DBM:NewMod(402, "DBM-Party-Vanilla", 3, 230)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20221029204017")
|
||
|
|
mod:SetCreatureID(11490)
|
||
|
|
--mod:SetEncounterID(1443)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_START 22651"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warnSacrifice = mod:NewTargetNoFilterAnnounce(22651, 4)
|
||
|
|
|
||
|
|
local yellSacrifice = mod:NewYell(22651)
|
||
|
|
|
||
|
|
--function mod:OnCombatStart(delay)
|
||
|
|
|
||
|
|
--end
|
||
|
|
|
||
|
|
function mod:SacTarget(targetname, uId)
|
||
|
|
if not targetname then return end
|
||
|
|
warnSacrifice:Show(targetname)
|
||
|
|
if targetname == UnitName("player") then
|
||
|
|
yellSacrifice:Yell()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_START(args)
|
||
|
|
if args.spellId == 22651 then
|
||
|
|
self:BossTargetScanner(args.sourceGUID, "SacTarget", 0.1, 8)
|
||
|
|
end
|
||
|
|
end
|