aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-19 22:30:59 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-19 22:30:59 +1000
commit287adfe0dfc953cf5261997166b102e85a89bbbe (patch)
treee33610e5e094676aca1bd2b1df466f1e19ebc627 /src/Java/gtPlusPlus/core/recipe
parent02c6ab32d9d752bd51ac8da077119cb197f99394 (diff)
downloadGT5-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.java15
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