-
Notifications
You must be signed in to change notification settings - Fork 7
/
loot0.json
59 lines (59 loc) · 1.14 KB
/
loot0.json
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
{
"name" : "demo:loot0",
"loot_rules" : [
{
"level" : 0,
"type" : "TOOLS",
"loot" : [
{"data" : {"type" : "tool", "level" : 0}, "weight" : 1}
],
"each" : true,
"quantity" : 1
},
{
"level" : 0,
"type" : "WEAPONS",
"loot" : [
{"data" : {"type" : "weapon", "level" : 0}, "weight" : 1}
],
"each" : true,
"quantity" : 1
},
{
"level" : 0,
"type" : "ARMOUR",
"loot" : [
{"data" : {"type" : "armour", "level" : 0}, "weight" : 1}
],
"each" : true,
"quantity" : 1
},
{
"level" : 0,
"type" : "ORE",
"loot" : [
{"data" : {"name" : "minecraft:iron_ingot"}, "weight" : 1},
{"data" : {"name" : "minecraft:iron_nugget", "min" : 1, "max" : 4}, "weight" : 2},
{"data" : {"name" : "minecraft:coal", "min" : 3, "max" : 7}, "weight" : 1}
],
"each" : true,
"quantity" : 3
},
{
"level" : 0,
"loot" : [
{"data" : {"type" : "enchanted_book", "ench" : 1}, "weight" : 1}
],
"each" : false,
"quantity" : 4
},
{
"level" : 0,
"loot" : [
{"data" : {"type" : "specialty", "level" : 0}, "weight" : 1}
],
"each" : false,
"quantity" : 2
}
]
}