Fixes #2681, thanks to Xanthian and Ayutac (#2682)

Added crafting recipes for the raw storage blocks and (vanilla) blast furnace recipes for smelting them.
This commit is contained in:
Ayutac 2021-12-30 20:40:29 +01:00 committed by GitHub
parent 1a2b6e0d9c
commit ab17489074
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 143 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "techreborn:raw_iridium"
}
},
"result": {
"item": "techreborn:raw_iridium_storage_block"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "techreborn:raw_lead"
}
},
"result": {
"item": "techreborn:raw_lead_storage_block"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "techreborn:raw_silver"
}
},
"result": {
"item": "techreborn:raw_silver_storage_block"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "techreborn:raw_tin"
}
},
"result": {
"item": "techreborn:raw_tin_storage_block"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "techreborn:raw_tungsten"
}
},
"result": {
"item": "techreborn:raw_tungsten_storage_block"
}
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:raw_copper_block"
},
"result": "minecraft:copper_block",
"experience": 4.5,
"cookingtime": 750
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:raw_gold_block"
},
"result": "minecraft:gold_block",
"experience": 4.5,
"cookingtime": 750
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:raw_iron_block"
},
"result": "minecraft:iron_block",
"experience": 4.5,
"cookingtime": 750
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "techreborn:raw_lead_storage_block"
},
"result": "techreborn:lead_storage_block",
"experience": 4.5,
"cookingtime": 750
}

View file

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

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "techreborn:raw_silver_storage_block"
},
"result": "techreborn:silver_storage_block",
"experience": 4.5,
"cookingtime": 750
}

View file

@ -0,0 +1,9 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "techreborn:raw_tin_storage_block"
},
"result": "techreborn:tin_storage_block",
"experience": 4.5,
"cookingtime": 750
}