Alloy Kiln
The Alloy Smelter package can be used to add/remove recipes to/from the Immersive Engineering Alloy Kiln.
Calling The Package
You can call the AlloySmelter package using mods.immersiveengineering.AlloySmelter
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
//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
| Type | Data Type |
|---|---|
Type Output | Data Type IItemstack |
Example
//Example:mods.immersiveengineering.AlloySmelter.removeRecipe(IItemstack output);mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);