initial commit

This commit is contained in:
Torsten Brendgen
2026-04-10 21:30:31 +02:00
commit fc5a8aa361
108 changed files with 40568 additions and 0 deletions

View 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 },
},
},
},
},
},
},
]]
},
}