Skip to content

Commit

Permalink
Drycode some obvious boss warnings. many will require just seeing bos…
Browse files Browse the repository at this point in the history
…ses as finding the remaining spells is not worth effort (over 1100 new spells in 1.15.0, faster to just wait til tomorrow)
  • Loading branch information
MysticalOS committed Nov 30, 2023
1 parent 4310aa9 commit 0d3c08c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
20 changes: 14 additions & 6 deletions DBM-Raids-Vanilla/VanillaSoD_BFD/Akumai.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ mod:SetEncounterID(2891)--2767 is likely 5 man version in instance type 201
mod:RegisterCombat("combat")

mod:RegisterEventsInCombat(
"SPELL_CAST_START",
"SPELL_AURA_APPLIED"
-- "SPELL_CAST_START",
"SPELL_AURA_APPLIED 407791"
)

--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2)
--https://www.wowhead.com/classic/spell=429315/akumai-phase-transition
local warningAkumaisRage = mod:NewTargetNoFilterAnnounce(407791, 3, nil, "Healer|Tank|RemoveEnrage")

local specWarnEnrage = mod:NewSpecialWarningDispel(407791, "RemoveEnrage", nil, nil, 1, 2)

--local timerSleepCD = mod:NewAITimer(180, 8399, nil, nil, nil, 3, nil, DBM_COMMON_L.MAGIC_ICON)

Expand All @@ -28,10 +31,15 @@ function mod:SPELL_CAST_START(args)
end
end
--]]

function mod:SPELL_AURA_APPLIED(args)
if args:IsSpell(8399) and args:IsDestTypePlayer() then
if args:IsSpell(407791) then
if self.Options.SpecWarn407791dispel then
specWarnEnrage:Show(args.destName)
specWarnEnrage:Play("enrage")
else
warningAkumaisRage:Show(args.destName)
end
end
end
--]]
12 changes: 7 additions & 5 deletions DBM-Raids-Vanilla/VanillaSoD_BFD/Ghamoora.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,27 @@ mod:SetEncounterID(2697)--2761 is likely 5 man version in instance type 201
mod:RegisterCombat("combat")

mod:RegisterEventsInCombat(
"SPELL_CAST_START",
"SPELL_CAST_START 414370",
"SPELL_AURA_APPLIED"
)

--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2)
--Change aqua shell to carefly knockback warning after confirming mechanic/spellId
local warningAquaShell = mod:NewCastAnnounce(414370, 3)--Aqua Shell cracking/exploding

--local timerSleepCD = mod:NewAITimer(180, 8399, nil, nil, nil, 3, nil, DBM_COMMON_L.MAGIC_ICON)

--function mod:OnCombatStart(delay)

--end

--[[
function mod:SPELL_CAST_START(args)
if args:IsSpell(8399) and args:IsSrcTypeHostile() then

function mod:SPELL_CAST_START(args)
if args:IsSpell(414370) then
warningAquaShell:Show()
end
end

--[[
function mod:SPELL_AURA_APPLIED(args)
if args:IsSpell(8399) and args:IsDestTypePlayer() then
Expand Down
1 change: 1 addition & 0 deletions DBM-Raids-Vanilla/VanillaSoD_BFD/TwilightLordKelris.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED"
)

--https://www.wowhead.com/classic/spell=425234/orbs-of-shadow
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2)

--local timerSleepCD = mod:NewAITimer(180, 8399, nil, nil, nil, 3, nil, DBM_COMMON_L.MAGIC_ICON)
Expand Down

0 comments on commit 0d3c08c

Please sign in to comment.