diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 15 |
1 files changed, 14 insertions, 1 deletions
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 |