Coke Oven
Link to coke-oven
Calling The Package
Link to calling-the-package
You can call the CokeOven package using mods.immersiveengineering.CokeOven
.
Add Recipe
Link to add-recipe
Required | Type | Data Type |
---|---|---|
Required Required | Type Output | Data Type IItemstack |
Required Required | Type Fuel Output | Data Type Integer |
Required Required | Type Input | Data Type IIngredient |
Required Required | Type Time | Data Type Integer |
Example
Link to example
ZenScript Copy//Example:
mods.immersiveengineering.CokeOven.addRecipe(IItemStack output, int fuelOutput, IIngredient input, int time);
mods.immersiveengineering.CokeOven.addRecipe(<minecraft:coal>, 2, <ore:logWood>, 2000);
Remove Recipe
Link to remove-recipe
Type | Data Type |
---|---|
Type Output | Data Type IItemstack |
Example:
Link to example-1
ZenScript Copy//Example:
mods.immersiveengineering.CokeOven.removeRecipe(IItemStack output);
mods.immersiveengineering.CokeOven.removeRecipe(<minecraft:diamond>);