-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.lua
68 lines (64 loc) · 2.22 KB
/
database.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
68
-- wowaddontemplate - Database
-- Created by @project-author@ character is Bearesquishy - dalaran please credit whenever.
-- Source on GitHub: https://n6rej.github.io
--
local addonName, addonTable, addon = ...
-- Create addon table
local db = {}
db.name = "Shadowlands Blacksmithing"
db.desc = "Blacksmithing reagents for Shadowlands"
-- Filter info
db.Filters = {
["Ore"] = {
uiName = "Shadowlands Mining",
uiDesc = "Ore found in Shadowlands",
title = "Ore",
items = {
-- ID = true, --Item name
[171828] = true, -- Laestrite Ore
[171829] = true, -- Solenium Ore
[171830] = true, -- Oxxein Ore
[171831] = true, -- Phaedrum Ore
[171832] = true, -- Sinvyr Ore
[171833] = true, -- Elethium Ore
[171840] = true, -- Porous Stone
[171841] = true -- Shaded Stone
}
},
["Transmute"] = {
uiName = "Shadowlands Blacksmith Transmute",
uiDesc = "Transmuted items made by Blacksmiths in Shadowlands",
title = "Transmute",
items = {
-- ID = true, --Item name
[171428] = true -- Shadowghast Ingot
}
},
["Vendor_Reagents"] = {
uiName = "Shadowlands Blacksmith Reagents",
uiDesc = "Blacksmithing reagents from vendors used in Shadowlands",
title = "Blacksmith Reagents",
items = {
-- ID = true, --Item name
[178787] = true, -- Orboreal shards
[177061] = true, -- Twilight Bark
[180733] = true, -- Luminous Flux
}
},
["Crafted_Reagents"] = {
uiName = "Shadowlands Crafted Reagents",
uiDesc = "Reagents made by crafting in Shadowlands",
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 II
[185960] = true -- Vestige of Origins
}
}
}
-- now that db is populated lets pass it on.
addonTable.db = db