本篇教程由作者设定未经允许禁止转载。

福鲁伊克斯聚合器

从 Fluix 聚合器中删除一个配方。

mods.threng.Aggregator.removeRecipe(ItemStack output)

将配方添加到 Fluix 聚合器。配方可以有两个或三个输入。如果只给出了两个输入,那么只有当聚合器中恰好存在这两种成分时,配方才会匹配(即第三个槽必须为空)。

mods.threng.Aggregator.addRecipe(ItemStack output, ItemMatcher input1, ItemMatcher input2, [ItemMatcher input3])


脉冲离心机

从脉冲离心机中删除配方。

mods.threng.Centrifuge.removeRecipe(ItemStack output)

向脉冲离心机添加配方。

mods.threng.Centrifuge.addRecipe(ItemStack output, ItemMatcher input)


ME电路板蚀刻器

从 ME 电路蚀刻机中移除配方。

mods.threng.Etcher.removeRecipe(ItemStack output)

向 ME 电路蚀刻机添加配方。请注意,每个插槽中允许的项目由现有配方集决定。

例如,如果在顶部插槽中使用了至少一个配方,则物品只能进入蚀刻机的顶部插槽。

因此不要在所有配方中使用超过一个插槽的任何物品,因为这样做可能会弄乱物品输入。

mods.threng.Etcher.addRecipe(ItemStack output, ItemMatcher input, ItemMatcher topInput, ItemMatcher bottomInput)


晶体充能器

从晶体充能器中移除配方。

mods.threng.Energizer.removeRecipe(ItemStack output)

将配方添加到晶体充能器。能源单位为 FE/RF。

mods.threng.Energizer.addRecipe(ItemStack output, ItemMatcher input, int energyCost)