Smelt iron block to refined iron block. Closes #2487

This commit is contained in:
drcrazy 2021-09-17 23:20:11 +03:00
parent 5261d9f11f
commit 42f0d5ce42
3 changed files with 14 additions and 5 deletions

View file

@ -4,13 +4,13 @@
"time": 300, "time": 300,
"ingredients": [ "ingredients": [
{ {
"tag": "c:sawdusts", "tag": "c:saw_dusts",
"count": 2 "count": 2
} }
], ],
"results": [ "results": [
{ {
"item": "techreborn:wooden_plate" "item": "techreborn:wood_plate"
} }
] ]
} }

View file

@ -2,13 +2,13 @@
"type": "minecraft:crafting_shapeless", "type": "minecraft:crafting_shapeless",
"ingredients": [ "ingredients": [
{ {
"item": "c:sawdusts" "tag": "c:saw_dusts"
}, },
{ {
"item": "c:sawdusts" "tag": "c:saw_dusts"
}, },
{ {
"item": "c:sawdusts" "tag": "c:saw_dusts"
}, },
{ {
"item": "minecraft:water_bucket" "item": "minecraft:water_bucket"

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "minecraft:iron_block"
},
"result": "techreborn:refined_iron_storage_block",
"experience": 4.5,
"cookingtime": 1500
}