Co-authored-by: Szyler <Szyler@Szyler.com>
This commit is contained in:
Szyler
2024-03-03 19:23:13 +01:00
committed by GitHub
parent 00255736e5
commit dc8afd6584
53 changed files with 2770 additions and 301 deletions
+8 -11
View File
@@ -98,8 +98,7 @@ function mod:SPELL_AURA_APPLIED(args)
SendChatMessage("Jagged Cold Steel Knife on "..UnitName("PLAYER").."!", "Say")
end
timerKnife:Start()
end
if args:IsSpellID(2123914) then
elseif args:IsSpellID(2123914) then
self:ScheduleMethod(0,"PhaseTwo")
end
end
@@ -107,18 +106,17 @@ end
function mod:SPELL_AURA_APPLIED_DOSE(args)
if args:IsSpellID(2123919) and args.amount >=1 then
if args:IsPlayer() then
specwarnDeathStrike:Show(args.amount)
specwarnDeathStrike:Show(args.amount)
end
end
end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpellID(2123905) then
timerPlagueStrike:Start()
end
if args:IsSpellID(2123904) then
timerFrostStrike:Start()
end
if args:IsSpellID(2123905) then
timerPlagueStrike:Start()
elseif args:IsSpellID(2123904) then
timerFrostStrike:Start()
end
end
function mod:SPELL_DAMAGE(args)
@@ -138,8 +136,7 @@ end
function mod:SPELL_CAST_START(args)
if args:IsSpellID(2123928,2123929,2123930,2123931) then
self:ScheduleMethod(0,"BreakUnholyBlade")
end
if args:IsSpellID(2123919) then
elseif args:IsSpellID(2123919) then
self:ScheduleMethod(0, "DeathStrike")
end
end