Alloy Kiln
Link to alloy-kiln
The Alloy Smelter package can be used to add/remove recipes to/from the Immersive Engineering Alloy Kiln.
Calling The Package
Link to calling-the-package
You can call the AlloySmelter package using mods.immersiveengineering.AlloySmelter
Add Recipe
Link to add-recipe
Required | Type | Data Type |
---|---|---|
Required Required | Type Output | Data Type IItemstack |
Required Required | Type Input 1 | Data Type IIngredient |
Required Required | Type Input 2 | Data Type IIngredient |
Required Required | Type Time | Data Type Integer |
Example
Link to example
ZenScript Copy//Example:
mods.immersiveengineering.AlloySmelter.addRecipe(IItemStack output, IIngredient first, IIngredient second, int time);
mods.immersiveengineering.AlloySmelter.addRecipe(<minecraft:diamond>, <ore:ingotIron>, <minecraft:dirt>, 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.AlloySmelter.removeRecipe(IItemstack output);
mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);