aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java
diff options
context:
space:
mode:
authorJohannes Gäßler <updrn@student.kit.edu>2017-04-22 19:08:47 +0200
committerJohannes Gäßler <updrn@student.kit.edu>2017-04-22 19:08:47 +0200
commit37eea39e29fb57d820466b60dda1751977129493 (patch)
treeea00434330d5e7999f44897d37e9fc5561ab9c77 /src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java
parentc6326a337c26102de9356bd2371ceab5d71f72f8 (diff)
downloadGT5-Unofficial-37eea39e29fb57d820466b60dda1751977129493.tar.gz
GT5-Unofficial-37eea39e29fb57d820466b60dda1751977129493.tar.bz2
GT5-Unofficial-37eea39e29fb57d820466b60dda1751977129493.zip
Enabled solid output for Distilleries, implemented Epoxy Resin / PTFE
production Expanded the GregTech API: There is now a convenience method for automatically creating polymerization recipes. Disabled recipes for the Salty Water Potion in favor of a new Salt Water fluid. Slightly nerfed Sulfuric Acid production from Sulfur and Water to make them align with other acids and bases (1 Dust / 1000L Chemical + 1000L Water -> 1000L acid/base)
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java
index 4c88c4f882..38c268b183 100644
--- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java
+++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java
@@ -107,6 +107,14 @@ public interface IGT_RecipeAdder {
*/
public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, int aDuration);
+
+ /**
+ * Adds Recipes for creating a radically polymerized polymer from a base Material (for example Ethylene -> Polyethylene)
+ * @param aBasicMaterial The basic Material
+ * @param aPolymer The polymer
+ */
+ public void addDefaultPolymerizationRecipes(Fluid aBasicMaterial, Fluid aPolymer);
+
/**
* Adds a Chemical Recipe
*