-
Notifications
You must be signed in to change notification settings - Fork 0
/
SL-db.lua
63 lines (58 loc) · 2.17 KB
/
SL-db.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- AdiBags Bears Enchanting - Database
-- Created by @project-author@ character is Bearesquishy - dalaran please credit whenever.
-- Source on GitHub: https://n6rej.github.io
---@type
---
local addonName, addonTable = ...;
-- Get the common name for expansion
local E = addonTable.expansion;
local Expansion = E["Shadowlands"]
-- Create addon table
local db = {}
db.name = "Bears " .. Expansion .. " Enchanting"
db.desc = "Enchanting reagents for " .. Expansion
-- Filter info
db.Filters = {
["Enchanting"] = {
uiName = "Bears " .. Expansion .. " Enchanting",
uiDesc = db.desc,
title = "Enchanting",
items = {
-- ID, --Item name
[172230] = true, -- Soul Dust
[172231] = true, -- Sacred Shard
[172232] = true, -- Eternal Crystal
[172437] = true, -- Enchanted Elethium Bar
[172439] = true, -- Enchanted Lightless Silk
[172438] = true -- Enchanted Heavy Callous Hide
}
},
["Vendor_Reagents"] = {
uiName = "Bears " .. Expansion .. " Enchanting Reagents",
uiDesc = "Enchanting reagents from vendors used in " .. Expansion,
title = "Enchanting Reagents",
items = {
-- ID = true, --Item name
[183951] = true, -- Immortal shards
[38682] = true -- Enchanting Vellum
}
},
["Crafted_Reagents"] = {
uiName = "Bears " .. Expansion .. "crafted reagents",
uiDesc = "Reagents made by crafting in " .. Expansion,
title = "Crafted Reagents",
items = {
-- ID = true, --Item name
[173384] = true, -- Crafter's Mark of the Chained Isle
[173383] = true, -- Crafter's Mark III
[173382] = true, -- Crafter's Mark II
[173381] = true, -- Crafter's Mark I
[183942] = true, -- Novice Mark
[185960] = true, -- Vestige of Origins
[187825] = true, -- Cosmic Protoweave
[187823] = true -- Magically Regulated Automa Core
}
}
}
-- now that db is populated lets pass it on.
addonTable.Shadowlands = db