Add rails and minecart to blast furnace to get iron back. (#2177) Thanks to KnatteAnka

* Adding Iron from Mincart 
* Adding Iron from Rail
This commit is contained in:
KnatteAnka 2020-07-28 12:56:07 +02:00 committed by GitHub
parent ec1ae17134
commit d0c32e8efb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
"type": "techreborn:blast_furnace",
"power": 128,
"time": 140,
"heat": 1000,
"ingredients" : [
{
"item": "minecraft:minecart"
},
{
"item": "minecraft:sand"
}
],
"results" : [
{
"item": "minecraft:iron_ingot",
"count": 5
},
{
"item": "techreborn:dark_ashes_dust"
}
]
}

View file

@ -0,0 +1,24 @@
{
"type": "techreborn:blast_furnace",
"power": 128,
"time": 140,
"heat": 1000,
"ingredients" : [
{
"item": "minecraft:rail",
"count":12
},
{
"item": "minecraft:sand"
}
],
"results" : [
{
"item": "minecraft:iron_ingot",
"count": 3
},
{
"item": "techreborn:dark_ashes_dust"
}
]
}