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

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);
类型数据类型
类型
输出
数据类型
物品堆(IItemstack)
ZenScript
Copy
//Example:
mods.immersiveengineering.AlloySmelter.removeRecipe(IItemstack output);
mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);