Moar storage recipes
This commit is contained in:
parent
f1ddc86bdd
commit
54ad3360fd
19 changed files with 252 additions and 11 deletions
|
@ -41,17 +41,6 @@ public class CraftingTableRecipes extends RecipeMethods {
|
|||
|
||||
static void registerCompressionRecipes() {
|
||||
|
||||
// for (String block : BlockStorage2.types){
|
||||
// block = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, block);
|
||||
// if (OreUtil.hasIngot(block)) {
|
||||
// registerShaped(BlockStorage2.getStorageBlockByName(block), "AAA", "AAA", "AAA", 'A', "ingot" + StringUtils.toFirstCapital(block));
|
||||
// registerShapeless(getMaterial(block, 9, Type.INGOT), BlockStorage2.getStorageBlockByName(block));
|
||||
// } else if (OreUtil.hasGem(block)) {
|
||||
// registerShaped(BlockStorage2.getStorageBlockByName(block), "AAA", "AAA", "AAA", 'A', "gem" + StringUtils.toFirstCapital(block));
|
||||
// registerShapeless(getMaterial(block, 9, Type.GEM), BlockStorage2.getStorageBlockByName(block));
|
||||
// }
|
||||
// }
|
||||
|
||||
// for (String name : ItemDustsSmall.types) {
|
||||
// registerShapeless(getMaterial(name, 4, Type.SMALL_DUST), getMaterialObject(name, Type.DUST));
|
||||
// registerShapeless(getMaterial(name, Type.DUST), getMaterialObject(name, Type.SMALL_DUST), getMaterialObject(name, Type.SMALL_DUST), getMaterialObject(name, Type.SMALL_DUST), getMaterialObject(name, Type.SMALL_DUST));
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:peridot_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:peridot_gem",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:red_garnet_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:red_garnet_gem",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:ruby_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:ruby_gem",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:sapphire_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:sapphire_gem",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:yellow_garnet_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:yellow_garnet_gem",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:copper_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:copper_ingot",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:refined_iron_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:refined_iron_ingot",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:tin_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:tin_ingot",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:tungstensteel_storage_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "techreborn:tungstensteel_ingot",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:copper_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:copper_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:peridot_gem"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:peridot_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:red_garnet_gem"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:red_garnet_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:refined_iron_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:refined_iron_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:ruby_gem"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:ruby_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:sapphire_gem"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:sapphire_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:tin_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:tin_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:tungstensteel_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:tungstensteel_storage_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"AAA",
|
||||
"AAA",
|
||||
"AAA"
|
||||
],
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "techreborn:yellow_garnet_gem"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "techreborn:yellow_garnet_storage_block"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue