Add processors and silicon. Add recipes for everything too.

This commit is contained in:
raoulvdberge
2019-09-12 20:27:17 +02:00
parent 158ddcba21
commit a7fcfadf0e
21 changed files with 167 additions and 188 deletions

View File

@@ -242,13 +242,13 @@
"item.refinedstorage.quartz_enriched_iron": "Quartz Enriched Iron",
"item.refinedstorage.construction_core": "Construction Core",
"item.refinedstorage.destruction_core": "Destruction Core",
"item.refinedstorage:silicon": "Silicon",
"item.refinedstorage:processor.0": "Raw Basic Processor",
"item.refinedstorage:processor.1": "Raw Improved Processor",
"item.refinedstorage:processor.2": "Raw Advanced Processor",
"item.refinedstorage:processor.3": "Basic Processor",
"item.refinedstorage:processor.4": "Improved Processor",
"item.refinedstorage:processor.5": "Advanced Processor",
"item.refinedstorage.silicon": "Silicon",
"item.refinedstorage.raw_basic_processor": "Raw Basic Processor",
"item.refinedstorage.raw_improved_processor": "Raw Improved Processor",
"item.refinedstorage.raw_advanced_processor": "Raw Advanced Processor",
"item.refinedstorage.basic_processor": "Basic Processor",
"item.refinedstorage.improved_processor": "Improved Processor",
"item.refinedstorage.advanced_processor": "Advanced Processor",
"item.refinedstorage:storage_part.0": "1k Storage Part",
"item.refinedstorage:storage_part.1": "4k Storage Part",
"item.refinedstorage:storage_part.2": "16k Storage Part",

View File

@@ -1,37 +0,0 @@
[
{
"name": "basic_processor",
"ingredient": {
"item": "refinedstorage:processor",
"data": 3
}
},
{
"name": "improved_processor",
"ingredient": {
"item": "refinedstorage:processor",
"data": 4
}
},
{
"name": "advanced_processor",
"ingredient": {
"item": "refinedstorage:processor",
"data": 5
}
},
{
"name": "construction_core",
"ingredient": {
"item": "refinedstorage:core",
"data": 0
}
},
{
"name": "destruction_core",
"ingredient": {
"item": "refinedstorage:core",
"data": 1
}
}
]

View File

@@ -0,0 +1,8 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "refinedstorage:raw_advanced_processor"
},
"result": "refinedstorage:advanced_processor",
"experience": 0.5
}

View File

@@ -0,0 +1,8 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "refinedstorage:raw_basic_processor"
},
"result": "refinedstorage:basic_processor",
"experience": 0.5
}

View File

@@ -2,14 +2,13 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "#basic_processor"
"item": "refinedstorage:basic_processor"
},
{
"item": "minecraft:glowstone_dust"
}
],
"result": {
"item": "refinedstorage:core",
"data": 0
"item": "refinedstorage:construction_core"
}
}

View File

@@ -2,14 +2,13 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "#basic_processor"
"item": "refinedstorage:basic_processor"
},
{
"item": "minecraft:quartz"
}
],
"result": {
"item": "refinedstorage:core",
"data": 1
"item": "refinedstorage:destruction_core"
}
}

View File

@@ -0,0 +1,8 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "refinedstorage:raw_improved_processor"
},
"result": "refinedstorage:improved_processor",
"experience": 0.5
}

View File

@@ -10,8 +10,7 @@
"item": "minecraft:string"
},
"L": {
"type": "forge:ore_dict",
"ore": "slimeball"
"item": "minecraft:slime_ball"
}
},
"result": {

View File

@@ -8,15 +8,13 @@
"item": "minecraft:diamond"
},
{
"type": "forge:ore_dict",
"ore": "itemSilicon"
"item": "refinedstorage:silicon"
},
{
"item": "minecraft:redstone"
}
],
"result": {
"item": "refinedstorage:processor",
"data": 2
"item": "refinedstorage:raw_advanced_processor"
}
}

View File

@@ -8,15 +8,13 @@
"item": "minecraft:iron_ingot"
},
{
"type": "forge:ore_dict",
"ore": "itemSilicon"
"item": "refinedstorage:silicon"
},
{
"item": "minecraft:redstone"
}
],
"result": {
"item": "refinedstorage:processor",
"data": 0
"item": "refinedstorage:raw_basic_processor"
}
}

View File

@@ -8,15 +8,13 @@
"item": "minecraft:gold_ingot"
},
{
"type": "forge:ore_dict",
"ore": "itemSilicon"
"item": "refinedstorage:silicon"
},
{
"item": "minecraft:redstone"
}
],
"result": {
"item": "refinedstorage:processor",
"data": 1
"item": "refinedstorage:raw_improved_processor"
}
}

View File

@@ -0,0 +1,8 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "minecraft:quartz"
},
"result": "refinedstorage:silicon",
"experience": 0.5
}