Coke Oven
Link to coke-oven
Calling The Package
Link to calling-the-package
You can call the CokeOven package using mods.immersiveengineering.CokeOven
.
添加配方
Link to 添加配方
Required | 类型 | 数据类型 |
---|---|---|
Required Required | 类型 输出 | 数据类型 物品堆(IItemstack) |
Required Required | 类型 Fuel Output | 数据类型 整型 |
Required Required | 类型 输入 | 数据类型 材料(IIngredient) |
Required Required | 类型 Time | 数据类型 整型 |
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
类型 | 数据类型 |
---|---|
类型 输出 | 数据类型 物品堆(IItemstack) |
示例:
Link to 示例
ZenScript Copy//Example:
mods.immersiveengineering.CokeOven.removeRecipe(IItemStack output);
mods.immersiveengineering.CokeOven.removeRecipe(<minecraft:diamond>);