1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package miscutil.gregtech.api.interfaces.internal;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
public interface IGregtech_RecipeAdder {
/**
* Adds a Coke Oven Recipe
*
* @param aInput1 = first Input (not null, and respects StackSize)
* @param aInputb = second Input (can be null, and respects StackSize)
* @param aFluidOutput = Output of the Creosote (not null, and respects StackSize)
* @param aFluidInput = fluid Input (can be null, and respects StackSize)
* @param aOutput = Output of the Coal/coke (can be null, and respects StackSize)
* @param aDuration = Duration (must be >= 0)
* @param aEUt = EU needed for heating up (must be >= 0)
* @return true if the Recipe got added, otherwise false.
*/
//public boolean addCokeOvenRecipe(boolean aOptimize, ItemStack[] aInputs, ItemStack[] aOutputs, Object aSpecial, FluidStack[] aFluidInputs, FluidStack[] aFluidOutputs, int aDuration, int aEUt, int aSpecialValue);
public boolean addCokeOvenRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, int aDuration, int aEUt);
}
|