-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrecipes.json
69 lines (61 loc) · 1.13 KB
/
recipes.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
60
61
62
63
64
65
66
67
68
69
{
"Wooden Plank": {
"quantity": 4,
"components": [ ["Wood", 1] ]
},
"Stick": {
"quantity": 4,
"components": [ ["Wooden Plank", 2] ]
},
"Wooden Sword": {
"components": [ ["Wooden Plank", 2], ["Stick", 1] ],
"tool_data": {
"damage": 4,
"durability": 59,
"attack_speed": 1.6
}
},
"Stone Sword": {
"components": [ ["Stone", 2], ["Stick", 1] ],
"tool_data": {
"damage": 5,
"durability": 132,
"attack_speed": 1.6
}
},
"Iron Sword": {
"components": [ ["Iron Ingot", 2], ["Stick", 1] ],
"tool_data": {
"damage": 6,
"durability": 251,
"attack_speed": 1.6
}
},
"Wooden Pickaxe": {
"components": [ ["Wooden Plank", 3], ["Stick", 2] ],
"tool_data": {
"damage": 2,
"durability": 59,
"attack_speed": 1.2
}
},
"Stone Pickaxe": {
"components": [ ["Stone", 3], ["Stick", 2] ],
"tool_data": {
"damage": 3,
"durability": 132,
"attack_speed": 1.2
}
},
"Iron Pickaxe": {
"components": [ ["Iron Ingot", 3], ["Stick", 2] ],
"tool_data": {
"damage": 4,
"durability": 251,
"attack_speed": 1.2
}
},
"Furnace": {
"components": [ ["Stone", 8] ]
}
}