-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully template the SoD BFD raid, complete with creature IDs and encou…
…nter Ids for working combat detection
- Loading branch information
1 parent
444b153
commit 4310aa9
Showing
9 changed files
with
340 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("AkumaiSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(213334) | ||
mod:SetEncounterID(2891)--2767 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("BaronAuanisSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(202699) | ||
mod:SetEncounterID(2694)--2765 is likely 5 man version in instance type 201 (which has Old Serra'kis instead of Baron) | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("GelihastSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(204921) | ||
mod:SetEncounterID(2704)--2763 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("GhamooraSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(201722) | ||
mod:SetEncounterID(2697)--2761 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("LadySarevessSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(204068) | ||
mod:SetEncounterID(2699)--2762 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("LorgusJettSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(207356) | ||
mod:SetEncounterID(2710)--2764 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local mod = DBM:NewMod("TwilightLordKelrisSoD", "DBM-Raids-Vanilla", 8) | ||
local L = mod:GetLocalizedStrings() | ||
|
||
mod.statTypes = "normal10" | ||
|
||
mod:SetRevision("@file-date-integer@") | ||
mod:SetCreatureID(209678) | ||
mod:SetEncounterID(2825)--2766 is likely 5 man version in instance type 201 | ||
|
||
mod:RegisterCombat("combat") | ||
|
||
mod:RegisterEventsInCombat( | ||
"SPELL_CAST_START", | ||
"SPELL_AURA_APPLIED" | ||
) | ||
|
||
--local warningSleep = mod:NewTargetNoFilterAnnounce(8399, 2) | ||
|
||
--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 | ||
end | ||
end | ||
function mod:SPELL_AURA_APPLIED(args) | ||
if args:IsSpell(8399) and args:IsDestTypePlayer() then | ||
end | ||
end | ||
--]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters