Bottling Machine
Link to bottling-machine
Calling The Package
Link to calling-the-package
You can call the BottlingMachine package using mods.immersiveengineering.BottlingMachine
.
添加配方
Link to 添加配方
Required | 类型 | 数据类型 |
---|---|---|
Required Required | 类型 输出 | 数据类型 物品堆(IItemstack) |
Required Required | 类型 输入 | 数据类型 材料(IIngredient) |
Required Required | 类型 Fluid | 数据类型 Fluidstack |
ZenScript Copy//Example:
mods.immersiveengineering.BottlingMachine.addRecipe(IItemStack output, IIngredient input, ILiquidStack fluid);
mods.immersiveengineering.BottlingMachine.addRecipe(<minecraft:diamond>, <ore:logWood>, <liquid:water>);
Remove Recipe
Link to remove-recipe
类型 | 数据类型 |
---|---|
类型 输出 | 数据类型 物品堆(IItemstack) |
ZenScript Copy//Example:
mods.immersiveengineering.BottlingMachine.removeRecipe(IItemStack output);
mods.immersiveengineering.BottlingMachine.removeRecipe(<minecraft:diamond>);