Added misc recipes (#2748)

* Added misc recipes

3 new recipes for plantball. 1 via 3x3 grass variants (new tag), 1 via cross/ball per kelp and sugar so it doesn't take up the space of a storage block in other mods maybe.
5 small calcite dust -> calcite (requiring one more small dust than yielded by grinding calcite)
Centrifuge recipes for eggs and turtle eggs, yielding methane and a bit of calcite dust
Centrifuge recipe for tuff into ashes and dark ashes.

* Added misc recipes

3 new recipes for plantball. 1 via 3x3 grass variants (new tag), 1 via cross/ball per kelp and sugar so it doesn't take up the space of a storage block in other mods maybe.
5 small calcite dust -> calcite (requiring one more small dust than yielded by grinding calcite)
Centrifuge recipes for eggs and turtle eggs, yielding methane and a bit of calcite dust
Centrifuge recipe for tuff into ashes and dark ashes.
This commit is contained in:
Ayutac 2022-01-17 23:40:19 +01:00 committed by GitHub
parent 86850033e3
commit 9ae1f53c7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 168 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
"replace": false,
"values": [
"minecraft:grass",
"minecraft:tall_grass",
"minecraft:fern",
"minecraft:large_fern",
"minecraft:moss_carpet",
"minecraft:seagrass"
]
}

View file

@ -0,0 +1,26 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 5000,
"ingredients": [
{
"item": "minecraft:egg",
"count": 16
},
{
"item": "techreborn:cell",
"nbt": "null"
}
],
"results": [
{
"item": "techreborn:cell",
"nbt": {
"fluid": "techreborn:methane"
}
},
{
"item": "techreborn:calcite_dust"
}
]
}

View file

@ -0,0 +1,21 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 2500,
"ingredients": [
{
"item": "minecraft:tuff",
"count": 16
}
],
"results": [
{
"item": "techreborn:dark_ashes_dust",
"count": 18
},
{
"item": "techreborn:ashes_dust",
"count": 12
}
]
}

View file

@ -0,0 +1,26 @@
{
"type": "techreborn:centrifuge",
"power": 5,
"time": 5000,
"ingredients": [
{
"item": "minecraft:turtle_egg",
"count": 32
},
{
"item": "techreborn:cell",
"nbt": "null"
}
],
"results": [
{
"item": "techreborn:cell",
"nbt": {
"fluid": "techreborn:methane"
}
},
{
"item": "techreborn:calcite_dust"
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:compressor",
"power": 10,
"time": 300,
"ingredients": [
{
"tag": "c:calcite_small_dusts",
"count": 5
}
],
"results": [
{
"item": "minecraft:calcite"
}
]
}

View file

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

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" X ",
"XXX",
" X "
],
"key": {
"X": {
"item": "minecraft:kelp"
}
},
"result": {
"item": "techreborn:plantball"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" X ",
"XXX",
" X "
],
"key": {
"X": {
"item": "minecraft:sugar_cane"
}
},
"result": {
"item": "techreborn:plantball"
}
}