aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gregtech/api
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2021-12-06 10:56:09 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2021-12-06 10:56:09 +0000
commit7f35f5cf2684d056e5cce278e555d685e20a5821 (patch)
treeec542d2944e37307efad1a0675ee5e55f66b704b /src/Java/gregtech/api
parentb68f4f83876cc7b57f074a4973310197dd66307c (diff)
downloadGT5-Unofficial-7f35f5cf2684d056e5cce278e555d685e20a5821.tar.gz
GT5-Unofficial-7f35f5cf2684d056e5cce278e555d685e20a5821.tar.bz2
GT5-Unofficial-7f35f5cf2684d056e5cce278e555d685e20a5821.zip
Added more Nuclear fluids/dusts.
Added two new machines.
Diffstat (limited to 'src/Java/gregtech/api')
-rw-r--r--src/Java/gregtech/api/util/GTPP_Recipe.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Java/gregtech/api/util/GTPP_Recipe.java b/src/Java/gregtech/api/util/GTPP_Recipe.java
index 5bd8580995..f98c35363f 100644
--- a/src/Java/gregtech/api/util/GTPP_Recipe.java
+++ b/src/Java/gregtech/api/util/GTPP_Recipe.java
@@ -348,7 +348,13 @@ public class GTPP_Recipe extends GT_Recipe implements IComparableRecipe {
//Fission Fuel Plant Recipes
public static final GTPP_Recipe_Map_Internal sFissionFuelProcessing = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(50), "gtpp.recipe.fissionfuel", "Nuclear Fuel Processing", null, RES_PATH_GUI + "basicmachines/FissionFuel", 0, 0, 0, 0, 1, E, 1, E, true, false);
-
+
+ //Cold Trap
+ public static final GTPP_Recipe_Map_Internal sColdTrapRecipes = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(3), "gtpp.recipe.coldtrap", "Cold Trap", null, RES_PATH_GUI + "basicmachines/ChemicalReactor", 1, 1, 0, 0, 1, E, 1, E, true, true);
+
+ //Reactor Processing Unit
+ public static final GTPP_Recipe_Map_Internal sReactorProcessingUnitRecipes = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(3), "gtpp.recipe.reactorprocessingunit", "Reactor Processing Unit", null, RES_PATH_GUI + "basicmachines/ChemicalReactor", 1, 1, 0, 0, 1, E, 1, E, true, true);
+
//Basic Washer Map
public static final GTPP_Recipe_Map_Internal sSimpleWasherRecipes = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(3), "gtpp.recipe.simplewasher", "Simple Dust Washer", null, RES_PATH_GUI + "basicmachines/PotionBrewer", 1, 1, 0, 0, 1, E, 1, E, true, true);