Misc recipe additions/changes. Thanks to Ayutac.

* Misc recipe additions/changes

Added smooth basalt to basalts that can be centrifuged.
Added centrifuge recipes for rooted dirt and coarse dirt.
Added centrifuge recipe for moss block, which gives (uncompressed) plant ball.
Changed centrifuge recipe for grass block to give uncompr. plant ball instead of wheat seeds, eliminating the implication that every grass block holds wheat seeds.
Added grinder recipe to get small glowstone dust out of shroomlights (I forgot that in the fungus update)
Changed grinder recipe for gravel, now accepts all stone tool materials instead of only cobblestone.
Added a use for the andesite/diorite/granite dusts. Craft all 3 together with flint to get 4 gravel.
Added crafting 9 leaves/saplings of any kind into a plantball.
Added extractor recipe for green dye by using uncompr. plantball. Should never allow compressed plantball as that is out of juice, so to say.
Added extractor recipe for orange dye by using carrots.
Added extractor recipe for red dye by using beetroot.
Added extractor recipe for hanging roots by using rooted dirt.
Changed extractor recipe for stick to yield two sticks instead of one.
Changed electrolyzer recipe to accept anything tagged as sand instead of only the item sand, now also allowing red sand to be electrolyzed into silicon.

* Changed coarse dirt and sapling plantball thanks to feedback.

* Added centrifuge recipe for podzol

The idea here is that while there is a lot of plant stuff on the podzol stuff, it is not as fresh, hence only 1 plantball. On the other hand IRL podzol is rich of minerals and stuff, so two clay balls instead of one?
This commit is contained in:
Ayutac 2022-01-09 23:14:57 +01:00 committed by GitHub
parent 58c87b3bbf
commit f7ad6c3094
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 293 additions and 6 deletions

View file

@ -1,6 +1,7 @@
{
"values": [
"minecraft:basalt",
"minecraft:polished_basalt"
"minecraft:polished_basalt",
"minecraft:smooth_basalt"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 2500,
"ingredients": [
{
"item": "minecraft:coarse_dirt",
"count": 16
}
],
"results": [
{
"item": "minecraft:gravel",
"count": 8
},
{
"item": "minecraft:flint"
},
{
"item": "minecraft:sand",
"count": 2
}
]
}

View file

@ -21,8 +21,8 @@
"count": 2
},
{
"item": "minecraft:wheat_seeds",
"count": 4
"item": "techreborn:plantball",
"count": 2
}
]
}

View file

@ -0,0 +1,29 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 2500,
"ingredients": [
{
"item": "minecraft:moss_block",
"count": 16
}
],
"results": [
{
"item": "techreborn:plantball",
"count": 9
},
{
"item": "minecraft:dirt",
"count": 4
},
{
"item": "minecraft:sand",
"count": 2
},
{
"item": "minecraft:gravel",
"count": 2
}
]
}

View file

@ -0,0 +1,29 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 2500,
"ingredients": [
{
"item": "minecraft:podzol",
"count": 16
}
],
"results": [
{
"item": "minecraft:sand",
"count": 8
},
{
"item": "minecraft:clay_ball",
"count": 2
},
{
"item": "minecraft:gravel",
"count": 2
},
{
"item": "minecraft:plantball",
"count": 1
}
]
}

View file

@ -0,0 +1,28 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 2500,
"ingredients": [
{
"item": "minecraft:rooted_dirt",
"count": 16
}
],
"results": [
{
"item": "minecraft:sand",
"count": 8
},
{
"item": "minecraft:clay_ball"
},
{
"item": "minecraft:gravel",
"count": 2
},
{
"item": "minecraft:hanging_roots",
"count": 7
}
]
}

View file

@ -0,0 +1,22 @@
{
"type": "minecraft:crafting_shapeless",
"group": "gravel",
"ingredients": [
{
"tag": "c:andesite_dusts"
},
{
"tag": "c:diorite_dusts"
},
{
"tag": "c:granite_dusts"
},
{
"item": "minecraft:flint"
}
],
"result": {
"item": "minecraft:gravel",
"count": 4
}
}

View file

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"group": "plantball",
"ingredients": [
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
},
{
"tag": "minecraft:leaves"
}
],
"result": {
"item": "techreborn:plantball"
}
}

View file

@ -0,0 +1,37 @@
{
"type": "minecraft:crafting_shapeless",
"group": "plantball",
"ingredients": [
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
},
{
"tag": "minecraft:saplings"
}
],
"result": {
"item": "techreborn:plantball",
"count": 4
}
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "techreborn:plantball"
}
],
"results": [
{
"item": "minecraft:green_dye",
"count": 2
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "minecraft:carrot",
"count": 3
}
],
"results": [
{
"item": "minecraft:orange_dye"
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "minecraft:beetroot"
}
],
"results": [
{
"item": "minecraft:red_dye",
"count": 2
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 300,
"ingredients": [
{
"item": "minecraft:rooted_dirt"
}
],
"results": [
{
"item": "minecraft:hanging_roots",
"count": 2
}
]
}

View file

@ -9,7 +9,8 @@
],
"results": [
{
"item": "minecraft:stick"
"item": "minecraft:stick",
"count": 2
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 2,
"time": 300,
"ingredients" : [
{
"item": "minecraft:shroomlight"
}
],
"results" : [
{
"item": "techreborn:glowstone_small_dust",
"count": 2
}
]
}

View file

@ -4,7 +4,7 @@
"time": 180,
"ingredients" : [
{
"item": "minecraft:cobblestone"
"tag": "minecraft:stone_tool_materials"
}
],
"results" : [

View file

@ -4,7 +4,7 @@
"time": 1000,
"ingredients": [
{
"item": "minecraft:sand",
"tag": "minecraft:sand",
"count": 16
},
{