diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-19 22:30:59 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-19 22:30:59 +1000 |
commit | 287adfe0dfc953cf5261997166b102e85a89bbbe (patch) | |
tree | e33610e5e094676aca1bd2b1df466f1e19ebc627 /src/Java/gtPlusPlus/core/recipe | |
parent | 02c6ab32d9d752bd51ac8da077119cb197f99394 (diff) | |
download | GT5-Unofficial-287adfe0dfc953cf5261997166b102e85a89bbbe.tar.gz GT5-Unofficial-287adfe0dfc953cf5261997166b102e85a89bbbe.tar.bz2 GT5-Unofficial-287adfe0dfc953cf5261997166b102e85a89bbbe.zip |
+ Added a Cyclotron Recipe handler & a test recipe.
% Changed Cyclotron Tool-tip.
% Made Cyclotron IV.
% Changed Cyclotron controller texture.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-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 |