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
添加配方
Link to 添加配方
Required | 类型 | 数据类型 |
---|---|---|
Required Required | 类型 输出 | 数据类型 物品堆(IItemstack) |
Required Required | 类型 输入1 | 数据类型 材料(IIngredient) |
Required Required | 类型 输入2 | 数据类型 材料(IIngredient) |
Required Required | 类型 Time | 数据类型 整型 |
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
类型 | 数据类型 |
---|---|
类型 输出 | 数据类型 物品堆(IItemstack) |
ZenScript Copy//Example:
mods.immersiveengineering.AlloySmelter.removeRecipe(IItemstack output);
mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);