From 8b3748249400f4ba380df5b324c27f17050992b9 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Tue, 16 Jul 2019 13:58:29 +0300 Subject: [PATCH] Just a few recipes --- .../init/recipes/CraftingTableRecipes.java | 8 +++---- .../techreborn/recipes/electric_treetap.json | 19 ++++++++++++++++ .../recipes/{ => grinder}/grinder_test.json | 0 .../techreborn/recipes/red_cell_battery.json | 22 +++++++++++++++++++ .../data/techreborn/recipes/treetap.json | 19 ++++++++++++++++ .../data/techreborn/recipes/wrench.json | 19 ++++++++++++++++ 6 files changed, 83 insertions(+), 4 deletions(-) create mode 100644 src/main/resources/data/techreborn/recipes/electric_treetap.json rename src/main/resources/data/techreborn/recipes/{ => grinder}/grinder_test.json (100%) create mode 100644 src/main/resources/data/techreborn/recipes/red_cell_battery.json create mode 100644 src/main/resources/data/techreborn/recipes/treetap.json create mode 100644 src/main/resources/data/techreborn/recipes/wrench.json diff --git a/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java b/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java index a005eea83..5a3aef236 100644 --- a/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java +++ b/src/main/java/techreborn/init/recipes/CraftingTableRecipes.java @@ -46,9 +46,9 @@ public class CraftingTableRecipes extends RecipeMethods { // registerShaped(getMaterial("iridium_alloy", Type.INGOT), "IAI", "ADA", "IAI", 'I', "ingotIridium", 'D', "dustDiamond", 'A', "plateAdvancedAlloy"); // Tools and devices - registerShaped(getStack(TRContent.WRENCH), "BNB", "NBN", " B ", 'B', "ingotBronze", 'N', "nuggetBronze"); - registerShaped(getStack(TRContent.TREE_TAP), " S ", "PPP", "P ", 'S', "stickWood", 'P', "plankWood"); - registerShaped(getStack(TRContent.ELECTRIC_TREE_TAP), "TB", " ", 'T', getStack(TRContent.TREE_TAP), 'B', "reBattery"); + + + registerShaped(getStack(TRContent.NANOSABER), "DC ", "DC ", "GLG", 'L', "lapotronCrystal", 'C', "plateCarbon", 'D', "plateDiamond", 'G', "dustsmallGlowstone"); ItemStack rockCutter = getStack(TRContent.ROCK_CUTTER); rockCutter.addEnchantment(Enchantments.SILK_TOUCH, 1); @@ -64,7 +64,7 @@ public class CraftingTableRecipes extends RecipeMethods { registerShaped(getStack(TRContent.INDUSTRIAL_JACKHAMMER), "NDN", "OCO", " I ", 'I', "plateIridiumAlloy", 'N', "nuggetIridium", 'D', getStack(TRContent.ADVANCED_JACKHAMMER, 1, OreDictionary.WILDCARD_VALUE), 'C', "circuitMaster", 'O', getMaterial("overclock", Type.UPGRADE)); registerShaped(getStack(TRContent.CLOAKING_DEVICE), "CIC", "IOI", "CIC", 'C', "ingotChrome", 'I', "plateIridiumAlloy", 'O', getStack(TRContent.LAPOTRONIC_ORB)); registerShaped(getStack(TRContent.LAPOTRONIC_ORBPACK), "FOF", "SPS", "FIF", 'F', "circuitMaster", 'O', getStack(TRContent.LAPOTRONIC_ORB), 'S', "craftingSuperconductor", 'I', "ingotIridium", 'P', getStack(TRContent.LITHIUM_ION_BATPACK)); -// registerShaped(getStack(TRContent.RED_CELL_BATTERY), " W ", "TRT", "TRT", 'T', "ingotTin", 'R', "dustRedstone", 'W', EnumCableType.ICOPPER.getStack()); + // registerShaped(getStack(TRContent.LITHIUM_ION_BATTERY), " C ", "PFP", "PFP", 'F', getCell("lithium"), 'P', "plateAluminum", 'C', EnumCableType.IGOLD.getStack()); registerShaped(getStack(TRContent.LITHIUM_ION_BATPACK), "BCB", "BPB", "B B", 'B', getStack(TRContent.LITHIUM_ION_BATTERY), 'P', "plateAluminum", 'C', "circuitAdvanced"); registerShaped(getStack(TRContent.ENERGY_CRYSTAL), "RRR", "RDR", "RRR", 'R', "dustRedstone", 'D', "gemDiamond"); diff --git a/src/main/resources/data/techreborn/recipes/electric_treetap.json b/src/main/resources/data/techreborn/recipes/electric_treetap.json new file mode 100644 index 000000000..6e8170659 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/electric_treetap.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "TB ", + " ", + "T " + ], + "key": { + "T": { + "item": "techreborn:treetap" + }, + "B": { + "item": "techreborn:red_cell_battery" + } + }, + "result": { + "item": "techreborn:electric_treetap" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/grinder_test.json b/src/main/resources/data/techreborn/recipes/grinder/grinder_test.json similarity index 100% rename from src/main/resources/data/techreborn/recipes/grinder_test.json rename to src/main/resources/data/techreborn/recipes/grinder/grinder_test.json diff --git a/src/main/resources/data/techreborn/recipes/red_cell_battery.json b/src/main/resources/data/techreborn/recipes/red_cell_battery.json new file mode 100644 index 000000000..7b5d2f1a8 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/red_cell_battery.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " W ", + "TRT", + "TRT" + ], + "key": { + "W": { + "item": "techreborn:insulated_copper_cable" + }, + "R": { + "item": "minecraft:redstone" + }, + "T": { + "item": "techreborn:tin_ingot" + } + }, + "result": { + "item": "techreborn:red_cell_battery" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/treetap.json b/src/main/resources/data/techreborn/recipes/treetap.json new file mode 100644 index 000000000..008f624da --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/treetap.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " S ", + "PPP", + "P " + ], + "key": { + "S": { + "item": "minecraft:stick" + }, + "P": { + "tag": "minecraft:planks" + } + }, + "result": { + "item": "techreborn:treetap" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/wrench.json b/src/main/resources/data/techreborn/recipes/wrench.json new file mode 100644 index 000000000..b07452304 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/wrench.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BNB", + "NBN", + " B " + ], + "key": { + "B": { + "item": "techreborn:bronze_ingot" + }, + "N": { + "item": "techreborn:bronze_nugget" + } + }, + "result": { + "item": "techreborn:wrench" + } +} \ No newline at end of file