-
Notifications
You must be signed in to change notification settings - Fork 4
/
products.lua
59 lines (59 loc) · 1.3 KB
/
products.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
return {
{
modid = "minecraft:stick",
name = "Stick",
address = "stick",
price = 0.1
},
{
modid = "minecraft:lapis_block",
productId = "lapis_block",
name = "Lapis Block",
address = "lapis",
category = "ore",
price = 9.0,
priceOverrides = {
{
currency = "krist",
price = 18.0
}
},
},
{
name = "Lapis on a stick",
address = "ls",
price = 9.0,
maxQuantity = 1,
bundle = {
{
product = "stick",
quantity = 1
},
{
product = "lapis_block",
quantity = 1
}
}
},
{
modid = "minecraft:diamond_pickaxe",
name = "Diamond Pickaxe eff5",
address = "dpick",
category = "tool",
price = 50.0,
predicates = {
enchantments = {
{
displayName = "Efficiency V"
}
}
}
},
{
modid = "minecraft:barrier",
name = "Secret item",
address = "secret",
hidden = true,
price = 1.0
}
}