本篇教程由作者设定使用 CC BY-NC-SA 协议。

这里只讲述魔改方法。

output=输出物品;

containe=输入物品;

fill=输入物品;

energy=需要能量  单位:EU。

time=时间 单位tick;

temperature=温度(不要超过5K);

percent=百分比;

合金炉

加配方:

mods.industrialupgrade.AlloySmelter.addRecipe
(IItemStack output, IIngredient container, IIngredient fill);
删配方
mods.industrialupgrade.AlloySmelter.removeRecipe
(IItemStack output);

高级合金炉:

加配方:
mods.industrialupgrade.AdvAlloySmelter.addRecipe
(IItemStack output, IIngredient container, IIngredient fill, IIngredient fill1);
删配方:
mods.industrialupgrade.AdvAlloySmelter.removeRecipe
(IItemStack output);

高级分子仪

加配方
mods.industrialupgrade.DoubleMolecularTransformer.addRecipe
(IItemStack output, IIngredient container, IIngredient fill, energy);
删配方;
mods.industrialupgrade.MolecularTransformer.remove
(IItemStack output);

压缩机

加:
mods.industrialupgrade.Enrich.addRecipe
(IItemStack output, IIngredient container, IIngredient fill);
删:
mods.industrialupgrade.Enrich.removeRecipe
(IItemStack output);

电路板制造厂

加配方:

加:
mods.industrialupgrade.GenMicrochip.addRecipe
(IItemStack output, IIngredient container, IIngredient fill, IIngredient fill1, IIngredient fill2,
 IIngredient fill3, temperature);
 删:
 mods.industrialupgrade.GenMicrochip.removeRecipe
(IItemStack output);

分子仪

加配方:

加配方:
mods.industrialupgrade.MolecularTransformer.addRecipe
(IItemStack output, IIngredient ingredient, energy);
删:
mods.industrialupgrade.MolecularTransformer.remove
(IItemStack output);

核聚变反应堆

加:
mods.industrialupgrade.Synthesis.addRecipe
(IItemStack output, IIngredient container, IIngredient fill, percent);
删:
mods.industrialupgrade.Synthesis.removeRecipe
(IItemStack output);

注:加回车是因为显示不下了,所以加了回车,在修改时无需回车。