forked from Zidras/DBM-Warmane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOnyxia.lua
198 lines (174 loc) · 7.48 KB
/
Onyxia.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
local mod = DBM:NewMod("Onyxia", "DBM-Onyxia")
local L = mod:GetLocalizedStrings()
mod:SetRevision("20231223195525")
mod:SetCreatureID(10184)
mod:RegisterCombat("combat")
--[[mod:RegisterEvents(
"CHAT_MSG_MONSTER_YELL"
)]]
mod:RegisterEventsInCombat(
"SPELL_CAST_START 68958 17086 18351 18564 18576 18584 18596 18609 18617 18435 68970 18431 18500 18392 68926",
"SPELL_CAST_SUCCESS 68959 68963",
"SPELL_DAMAGE 68867 69286",
"CHAT_MSG_MONSTER_YELL",
"UNIT_DIED",
"UNIT_HEALTH boss1"
)
-- General
local timerAchieve = mod:NewAchievementTimer(300, 4405)
mod:AddBoolOption("SoundWTF3", false, "sound")
-- Stage One (100% – 65%)
mod:AddTimerLine(DBM_CORE_L.SCENARIO_STAGE:format(1)..": 100% – 65%")
local warnPhase2Soon = mod:NewPrePhaseAnnounce(2)
local warnWingBuffet = mod:NewSpellAnnounce(18500, 2, nil, "Tank")
local timerNextFlameBreath = mod:NewCDTimer(13.3, 18435, nil, "Tank", 2, 5, nil, nil, true) -- Breath she does on ground in frontal cone. REVIEW! ~7s variance [13.3-20]. Added "keep" arg (25N Lordaeron 2022/10/13) - 13.3, 18.8, 16.3, 13.6
-- Stage Two (65% – 40%)
mod:AddTimerLine(DBM_CORE_L.SCENARIO_STAGE:format(2)..": 65% – 40%")
local warnPhase2 = mod:NewPhaseAnnounce(2)
local warnPhase3Soon = mod:NewPrePhaseAnnounce(3)
local warnFireball = mod:NewTargetNoFilterAnnounce(18392, 2, nil, false)
local warnWhelpsSoon = mod:NewSoonAnnounce(17646, 1, 69004)
--local preWarnDeepBreath = mod:NewSoonAnnounce(17086, 2)--Experimental, if it is off please let me know.
local yellFireball = mod:NewYell(18392)
local specWarnBreath = mod:NewSpecialWarningSpell(18584, nil, nil, nil, 2, 2)
local specWarnAdds = mod:NewSpecialWarningAdds(68959, "-Healer", nil, nil, 1, 2)
local specWarnBlastNova = mod:NewSpecialWarningRun(68958, "Melee", nil, nil, 4, 2) -- from Onyxian Lair Guard
local timerBreathCast = mod:NewCastTimer(8, 18584, nil, nil, nil, 3)
local timerNextDeepBreath = mod:NewCDTimer(35, 18584, nil, nil, nil, 3)--Range from 35-60seconds in between based on where she moves to.
local timerWhelps = mod:NewNextTimer(105, 17646, nil, nil, nil, 1, 69004)
local timerAchieveWhelps = mod:NewAchievementTimer(10, 4406)
local timerBigAddCD = mod:NewNextTimer(44.9, 68959, nil, "-Healer", nil, 1, 10697) -- Ignite Weapon for Onyxian Lair Guard
-- Stage Three (40% – 0%)
mod:AddTimerLine(DBM_CORE_L.SCENARIO_STAGE:format(3)..": 40% – 0%")
local warnPhase3 = mod:NewPhaseAnnounce(3)
local specWarnBellowingRoar = mod:NewSpecialWarningSpell(18431, nil, nil, nil, 2, 2)
mod.vb.warned_preP2 = false
mod.vb.warned_preP3 = false
mod.vb.whelpsCount = 0
local function Whelps(self)
if self:IsInCombat() then
self.vb.whelpsCount = self.vb.whelpsCount + 1
timerWhelps:Start()
warnWhelpsSoon:Schedule(95)
self:Schedule(105, Whelps, self)
end
end
function mod:FireballTarget(targetname)
if not targetname then return end
warnFireball:Show(targetname)
if targetname == UnitName("player") then
yellFireball:Yell()
end
end
function mod:OnCombatStart(delay)
self:SetStage(1)
self.vb.whelpsCount = 0
self.vb.warned_preP2 = false
self.vb.warned_preP3 = false
timerNextFlameBreath:Start(12.1-delay) -- REVIEW! variance? (25N Lordaeron 2022/10/13) - 12.1
timerAchieve:Start(-delay)
if self.Options.SoundWTF3 then
DBM:PlaySoundFile("Interface\\AddOns\\DBM-Onyxia\\sounds\\dps-very-very-slowly.ogg")
self:Schedule(20, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\hit-it-like-you-mean-it.ogg")
self:Schedule(30, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\now-hit-it-very-hard-and-fast.ogg")
end
end
function mod:SPELL_CAST_START(args)
local spellId = args.spellId
if spellId == 68958 then -- Blast Nova (from Onyxian Lair Guard)
specWarnBlastNova:Show()
elseif args:IsSpellID(17086, 18351, 18564, 18576) or args:IsSpellID(18584, 18596, 18609, 18617) then -- 1 ID for each direction
specWarnBreath:Show()
timerBreathCast:Start()
timerNextDeepBreath:Start()
-- preWarnDeepBreath:Schedule(35) -- Pre-Warn Deep Breath
elseif args:IsSpellID(18435, 68970) then -- Flame Breath (Ground phases)
timerNextFlameBreath:Start()
elseif spellId == 18431 then
specWarnBellowingRoar:Show()
specWarnBellowingRoar:Play("fearsoon")
elseif args:IsSpellID(18500, 69293) then -- Wing Buffet
warnWingBuffet:Show()
elseif args:IsSpellID(18392, 68926) then -- Fireball
self:BossTargetScanner(args.sourceGUID, "FireballTarget", 0.15, 12)
end
end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpellID(68959, 68963) then--Ignite Weapon (Onyxian Lair Guard spawn)
specWarnAdds:Show()
specWarnAdds:Play("bigmob")
timerBigAddCD:Start()
end
end
function mod:SPELL_DAMAGE(_, _, _, destGUID, _, _, spellId)
if (spellId == 68867 or spellId == 69286) and destGUID == UnitGUID("player") and self.Options.SoundWTF3 then -- Tail Sweep
DBM:PlaySoundFile("Interface\\AddOns\\DBM-Onyxia\\sounds\\watch-the-tail.ogg")
end
end
function mod:CHAT_MSG_MONSTER_YELL(msg)
-- if msg == L.YellPull and not self:IsInCombat() then
-- DBM:StartCombat(self, 0)
if msg == L.YellP2 or msg:find(L.YellP2) then
self:SendSync("Phase2")
elseif msg == L.YellP3 or msg:find(L.YellP3) then
self:SendSync("Phase3")
end
end
function mod:UNIT_DIED(args)
if self:IsInCombat() and args:IsPlayer() and self.Options.SoundWTF3 then
DBM:PlaySoundFile("Interface\\AddOns\\DBM-Onyxia\\sounds\\thats-a-fucking-fifty-dkp-minus.ogg")
end
end
function mod:UNIT_HEALTH(uId)
if self.vb.phase == 1 and not self.vb.warned_preP2 and self:GetUnitCreatureId(uId) == 10184 and UnitHealth(uId) / UnitHealthMax(uId) <= 0.70 then
self.vb.warned_preP2 = true
warnPhase2Soon:Show()
elseif self.vb.phase == 2 and not self.vb.warned_preP3 and self:GetUnitCreatureId(uId) == 10184 and UnitHealth(uId) / UnitHealthMax(uId) <= 0.45 then
self.vb.warned_preP3 = true
warnPhase3Soon:Show()
if self.Options.SoundWTF3 then
self:Unschedule(DBM.PlaySoundFile, DBM)
end
end
end
function mod:OnSync(msg)
if not self:IsInCombat() then return end
if msg == "Phase2" then
self:SetStage(2)
self.vb.whelpsCount = 0
warnPhase2:Show()
timerBigAddCD:Start(20) -- (25N Lordaeron 2022/10/13) - Stage 2/20.0
-- preWarnDeepBreath:Schedule(72) -- Pre-Warn Deep Breath
timerNextDeepBreath:Start(75.5) -- Breath-17086. REVIEW! variance? (25N Lordaeron 2022/10/13) - 75.5
timerAchieveWhelps:Start()
timerNextFlameBreath:Cancel()
self:Schedule(5, Whelps, self)
if self.Options.SoundWTF3 then
self:Unschedule(DBM.PlaySoundFile, DBM)
DBM:PlaySoundFile("Interface\\AddOns\\DBM-Onyxia\\sounds\\i-dont-see-enough-dots.ogg")
self:Schedule(10, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\throw-more-dots.ogg")
self:Schedule(17, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\whelps-left-side-even-side-handle-it.ogg") -- 18
end
if self.Options.RangeFrame then
DBM.RangeCheck:Show(8)
end
elseif msg == "Phase3" then
self:SetStage(3)
warnPhase3:Show()
self:Unschedule(Whelps)
timerWhelps:Stop()
timerNextDeepBreath:Stop()
timerBigAddCD:Stop()
warnWhelpsSoon:Cancel()
-- preWarnDeepBreath:Cancel()
if self.Options.SoundWTF3 then
self:Unschedule(DBM.PlaySoundFile, DBM)
self:Schedule(15, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\dps-very-very-slowly.ogg")
self:Schedule(35, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\hit-it-like-you-mean-it.ogg")
self:Schedule(45, DBM.PlaySoundFile, DBM, "Interface\\AddOns\\DBM-Onyxia\\sounds\\now-hit-it-very-hard-and-fast.ogg")
end
if self.Options.RangeFrame then
DBM.RangeCheck:Hide()
end
end
end