Added berry related recipes (#2731)

Successfully tested.
This commit is contained in:
Ayutac 2022-01-08 15:02:46 +01:00 committed by GitHub
parent 232012cce9
commit a856fb0a8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 84 additions and 1 deletions

View file

@ -0,0 +1,31 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 5000,
"ingredients": [
{
"item": "minecraft:glow_berries",
"count": 32
},
{
"item": "techreborn:cell",
"nbt": "null"
}
],
"results": [
{
"item": "techreborn:cell",
"nbt": {
"fluid": "techreborn:methane"
}
},
{
"item": "minecraft:orange_dye",
"count": 2
},
{
"item": "minecraft:glowstone_dust",
"count": 2
}
]
}

View file

@ -18,6 +18,10 @@
"nbt": {
"fluid": "techreborn:methane"
}
}
},
{
"item": "minecraft:red_dye",
"count": 5
}
]
}

View file

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

View file

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

View file

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