local function WarlockSetup() local L = AceLibrary("AceLocale-2.2"):new("CastYeller-Warlock") L:RegisterTranslations("enUS", function() return { ['Ritual of Souls'] = { "Click on the portal to bring forth the candy machine", "Hey its a fair trade, a few clicks for a few stones.", "You want a healthstone? Too bad! Of course if you click on the portal, there is nothing I can do to stop you.", }, ['Ritual of Summoning'] = { "Warlock Taxi Service! Summoning , please click on the portal.", " wants to join us. Yet they are too lazy to get here themselves.", "Clicking on the portal wil bring certain death to !", "What do you think I make these things for fun? Click on the portal so can come play with us.", "A warlocks job is never done. Click on the portal to make this lock do his job.", }, ['Fear'] = { "HAHA Look at go! Who's afraid of the big bad warlock?", "And thought they where good enough to get close to me. ", "Hey , repeat after me. FEAR BOMB!", }, ['Banish'] = { " has been banished.", " can't get me... Banish FTW", }, } end) return { ['Ritual of Souls'] = { events = { start = true, miss = true, failure = true }, channel = { '_BROADCAST' }, }, ['Ritual of Summoning'] = { events = { start = true, miss = true, failure = true }, channel = { '_BROADCAST', }, }, ['Fear'] = { events = { start = true, miss = true, failure = true }, channel = { '_BROADCAST' }, }, ['Banish'] = { events = { start = true, miss = true, failure = true }, channel = { '_BROADCAST' }, }, } end CastYeller:RegisterAnnounces('WARLOCK', WarlockSetup)