Skip to content

Commit 4cfc2a4

Browse files
authored
Add compat recipes for cherry wood (#1053)
1 parent 4a82dad commit 4cfc2a4

File tree

7 files changed

+127
-0
lines changed

7 files changed

+127
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "modern_industrialization:cutting_machine",
3+
"duration": 100,
4+
"eu": 2,
5+
"fluid_inputs": [
6+
{
7+
"amount": 1,
8+
"fluid": "modern_industrialization:lubricant"
9+
}
10+
],
11+
"item_inputs": [
12+
{
13+
"amount": 1,
14+
"tag": "minecraft:cherry_logs"
15+
}
16+
],
17+
"item_outputs": [
18+
{
19+
"amount": 6,
20+
"item": "minecraft:cherry_planks"
21+
}
22+
]
23+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "modern_industrialization:cutting_machine",
3+
"duration": 100,
4+
"eu": 2,
5+
"fluid_inputs": [
6+
{
7+
"amount": 1,
8+
"fluid": "modern_industrialization:lubricant"
9+
}
10+
],
11+
"item_inputs": [
12+
{
13+
"amount": 1,
14+
"item": "minecraft:cherry_planks"
15+
}
16+
],
17+
"item_outputs": [
18+
{
19+
"amount": 2,
20+
"item": "minecraft:cherry_slab"
21+
}
22+
]
23+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "modern_industrialization:cutting_machine",
3+
"duration": 100,
4+
"eu": 2,
5+
"fluid_inputs": [
6+
{
7+
"amount": 1,
8+
"fluid": "modern_industrialization:lubricant"
9+
}
10+
],
11+
"item_inputs": [
12+
{
13+
"amount": 1,
14+
"item": "minecraft:cherry_log"
15+
}
16+
],
17+
"item_outputs": [
18+
{
19+
"amount": 1,
20+
"item": "minecraft:stripped_cherry_log"
21+
}
22+
]
23+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"type": "modern_industrialization:cutting_machine",
3+
"duration": 100,
4+
"eu": 2,
5+
"fluid_inputs": [
6+
{
7+
"amount": 1,
8+
"fluid": "modern_industrialization:lubricant"
9+
}
10+
],
11+
"item_inputs": [
12+
{
13+
"amount": 1,
14+
"item": "minecraft:cherry_wood"
15+
}
16+
],
17+
"item_outputs": [
18+
{
19+
"amount": 1,
20+
"item": "minecraft:stripped_cherry_wood"
21+
}
22+
]
23+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"type": "modern_industrialization:packer",
3+
"duration": 100,
4+
"eu": 2,
5+
"item_inputs": [
6+
{
7+
"amount": 4,
8+
"item": "minecraft:stripped_cherry_log"
9+
}
10+
],
11+
"item_outputs": [
12+
{
13+
"amount": 3,
14+
"item": "minecraft:stripped_cherry_wood"
15+
}
16+
]
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"type": "modern_industrialization:packer",
3+
"duration": 100,
4+
"eu": 2,
5+
"item_inputs": [
6+
{
7+
"amount": 4,
8+
"item": "minecraft:cherry_log"
9+
}
10+
],
11+
"item_outputs": [
12+
{
13+
"amount": 3,
14+
"item": "minecraft:cherry_wood"
15+
}
16+
]
17+
}

src/main/java/aztech/modern_industrialization/datagen/recipe/PlankRecipesProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public void buildRecipes(RecipeOutput consumer) {
4444
genPlanks(consumer, "acacia", true);
4545
genPlanks(consumer, "dark_oak", true);
4646
genPlanks(consumer, "mangrove", true);
47+
genPlanks(consumer, "cherry", true);
4748
genPlanks(consumer, "crimson", false);
4849
genPlanks(consumer, "warped", false);
4950
}

0 commit comments

Comments
 (0)