initial commit
This commit is contained in:
52
Modules/RaidTimeline/RaidTimelineBossAbilityData.lua
Normal file
52
Modules/RaidTimeline/RaidTimelineBossAbilityData.lua
Normal file
@@ -0,0 +1,52 @@
|
||||
local ADDON_NAME = "HailMaryGuildTools"
|
||||
local HMGT = LibStub("AceAddon-3.0"):GetAddon(ADDON_NAME)
|
||||
if not HMGT then return end
|
||||
|
||||
HMGT.RaidTimelineBossAbilityData = HMGT.RaidTimelineBossAbilityData or {
|
||||
raids = {
|
||||
--[[
|
||||
{
|
||||
name = "Void Spire",
|
||||
journalInstanceId = 1307,
|
||||
bosses = {
|
||||
[3176] = {
|
||||
name = "Imperator Averzian",
|
||||
abilities = {
|
||||
{
|
||||
key = "gloom",
|
||||
name = "Gloom",
|
||||
spellId = 123456,
|
||||
icon = 1234567,
|
||||
difficulties = {
|
||||
lfr = false,
|
||||
normal = true,
|
||||
heroic = true,
|
||||
mythic = true,
|
||||
},
|
||||
triggers = {
|
||||
bigwigs = { 123456, "gloom" },
|
||||
dbm = { 123456 },
|
||||
},
|
||||
},
|
||||
{
|
||||
key = "mythic_gloom",
|
||||
name = "Mythic Gloom",
|
||||
spellId = 123457,
|
||||
difficulties = {
|
||||
lfr = false,
|
||||
normal = false,
|
||||
heroic = false,
|
||||
mythic = true,
|
||||
},
|
||||
triggers = {
|
||||
bigwigs = { 123457 },
|
||||
dbm = { 123457 },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
]]
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user