You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
919 B
46 lines
919 B
|
2 years ago
|
local Module = LibStub('AceAddon-3.0'):GetAddon('WoWthing_Collector'):GetModule('Covenants')
|
||
|
|
|
||
|
|
|
||
|
|
Module.db.covenants = {
|
||
|
|
-- 1=Kyrian
|
||
|
|
{
|
||
|
|
key = 'kyrian',
|
||
|
|
features = {
|
||
|
|
conductor = 312,
|
||
|
|
transport = 308,
|
||
|
|
missions = 316,
|
||
|
|
unique = 320,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
-- 2=Venthyr
|
||
|
|
{
|
||
|
|
key = 'venthyr',
|
||
|
|
features = {
|
||
|
|
conductor = 314,
|
||
|
|
transport = 309,
|
||
|
|
missions = 317,
|
||
|
|
unique = 324,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
-- 3=Night Fae
|
||
|
|
{
|
||
|
|
key = 'night_fae',
|
||
|
|
features = {
|
||
|
|
conductor = 311,
|
||
|
|
transport = 307,
|
||
|
|
missions = 315,
|
||
|
|
unique = 319,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
-- 4=Necrolord
|
||
|
|
{
|
||
|
|
key = 'necrolord',
|
||
|
|
features = {
|
||
|
|
conductor = 313,
|
||
|
|
transport = 310,
|
||
|
|
missions = 318,
|
||
|
|
unique = 321,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|