From 18856cb84c89bcee59ca4792eec9c815a9038e5f Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Mon, 7 Nov 2022 16:53:35 +0100 Subject: Unifying Warehouse to LUV (#436) add Casing Assembler recipe --- .../java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 1af6258fac..cb266b3cf9 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -3281,8 +3281,8 @@ public class RECIPES_Machines { plate = ALLOY.TUNGSTEN_CARBIDE.getPlateDouble(1); gear = ALLOY.TRINIUM_TITANIUM.getRing(1); frame = ALLOY.TUNGSTEN_CARBIDE.getFrameBox(1); - cell1 = CI.conveyorModule_EV; - cell2 = CI.electricMotor_IV; + cell1 = CI.conveyorModule_LuV; + cell2 = CI.electricMotor_LuV; ItemStack casingAmazon = GregtechItemList.Casing_AmazonWarehouse.get(1); ItemStack aTieredUnboxinator = CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK ? ItemUtils.getValueOfItemList( @@ -3300,6 +3300,20 @@ public class RECIPES_Machines { gear, plate, GregtechItemList.Casing_AmazonWarehouse.get(Casing_Amount)); + GT_Values.RA.addAssemblerRecipe( + new ItemStack[] { + ALLOY.TUNGSTEN_CARBIDE.getFrameBox(1), + ALLOY.TUNGSTEN_CARBIDE.getPlateDouble(4), + ALLOY.TRINIUM_TITANIUM.getRing(1), + ItemList.Electric_Motor_LuV.get(1), + ItemList.Conveyor_Module_LuV.get(1), + ItemUtils.getItemStackOfAmountFromOreDict("cableGt12VanadiumGallium", 1), + GT_Utility.getIntegratedCircuit(1), + }, + GT_Values.NF, + GregtechItemList.Casing_AmazonWarehouse.get(1L), + 50, + 16); RecipeUtils.addShapedRecipe( casingAmazon, CI.getTieredCircuit(7), -- cgit