From 287adfe0dfc953cf5261997166b102e85a89bbbe Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 19 Sep 2017 22:30:59 +1000 Subject: + Added a Cyclotron Recipe handler & a test recipe. % Changed Cyclotron Tool-tip. % Made Cyclotron IV. % Changed Cyclotron controller texture. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 5af18bb624..d6c651e9af 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -46,8 +46,9 @@ public class RECIPES_GREGTECH { macerationRecipes(); centrifugeRecipes(); benderRecipes(); + cyclotronRecipes(); addFuels(); - } + } private static void cokeOvenRecipes(){ Utils.LOG_INFO("Loading Recipes for Industrial Coking Oven."); @@ -757,5 +758,17 @@ public class RECIPES_GREGTECH { } return true; } + + private static void cyclotronRecipes() { + CORE.RA.addCyclotronRecipe( + null, + FluidUtils.getFluidStack("molten.bismuth", 1), + new ItemStack[]{GregtechItemList.Pellet_RTG_PO210.get(1)}, + null, + new int[]{100}, + 20*300, + 2040, + 500*20); + } } \ No newline at end of file -- cgit