RaidNotifier = RaidNotifier or {}
RaidNotifier.UIs = {}

-- ---------------------------------------------------
-- Veteran Maw of Lorkhaj ----------------------------
-- ---------------------------------------------------
local maw_lorkhaj = {}

-- global
maw_lorkhaj.window_size = {240, 200}
maw_lorkhaj.window_pos  = {300, 200}
maw_lorkhaj.update_interval = 100 -- every 0.1 seconds

--Zhaj'hassa the Forgotten
maw_lorkhaj.zhajBoss_numGlyphs   = 7 -- six actual glyphs + one special curse glyph
maw_lorkhaj.zhajBoss_glyphLayout = { -- x & y anchor for each glyph, uses a percentage together with the window size
	{  75, -30 },
	{  65,  15 },
	{  25,  50 },
	{ -25,  50 },
	{ -65,  15 },
	{ -75, -30 },
	{0, 0, "white_circle.dds", "dummy.dds"}, --special curse 'glyph'
}

-- add ids back to global
RaidNotifier.UIs.maw_lorkhaj = maw_lorkhaj