-
Notifications
You must be signed in to change notification settings - Fork 0
/
DF-db.lua
67 lines (62 loc) · 1.94 KB
/
DF-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
64
65
66
67
-- AdiBags Bears Alchemy - 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 Release
local E = addonTable.expansion
local Expansion = E["Dragonflight"]
-- Create addon table
local db = {}
db.name = "Bears " .. Expansion .. " Alchemy"
db.desc = "Reagents found in " .. Expansion
-- Filter info
db.Filters = {
["Herb"] = {
uiName = "Bears " .. Expansion .. " Herbs",
uiDesc = "Herbs found in " .. Expansion,
title = "Herbs",
items = {
-- ID, --Item name
[191460] = true, -- Hochenblume 1
[191461] = true, -- Hochenblume 2
[191462] = true, -- Hochenblume 3
[191464] = true, -- Saxifrage 1
[191465] = true, -- Saxifrage 2
[191466] = true, -- Saxifrage 3
[191470] = true, -- Writhebark 1
[191471] = true, -- Writhebark 2
[191472] = true, -- Writhebark 3
[191469] = true, -- Bubble poppy 3
[191468] = true, -- Bubble poppy 2
[191467] = true -- Bubble poppy 1
}
},
["Crafted_Reagents"] = {
uiName = "Bears " .. Expansion .. " Crafted Reagents",
uiDesc = "Alchemy crafted reagents used in " .. Expansion,
title = "Crafted",
items = {
-- ID = true, --Item name
[191495] = true, -- Primal Convergent 3
[191494] = true, -- Primal Convergent 2
[191493] = true, -- Primal Convergent 1
[191498] = true, -- Omnium Draconis 3
[191497] = true, -- Omnium Draconis 2
[191496] = true, -- Omnium Draconis 1
[191570] = true -- Dragon's Alchemical Solution
}
},
["Artisan"] = {
uiName = "Bears " .. Expansion .. " Artisan Alchemy reagents",
uiDesc = "Artisan reagents found in " .. Expansion,
title = "Artisan",
items = {
-- ID, --Item name
[203398] = true, -- Dampening Powder
}
}
}
-- now that db is populated lets pass it on.
addonTable.Dragonflight = db