教程来自:官方Wiki



合成台配方(以下合成台配方均可使用游戏内“配方制作器”自动生成)


注:“tier”表示合成台等级1--4;分别对应:基础、高级、精英、终极。

PS:游戏内配方制作器生成的代码默认tier为0,mod根据对应合成台的行列数自动匹配对应的合成台。

添加:

mods.extendedcrafting.TableCrafting.addShaped(1, <output>, [

[<>, <>, <>],

[<>, <>, <>], 

[<>, <>, <>]]);  

mods.extendedcrafting.TableCrafting.addShaped(2, <output>, [

[<>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>]]);  
mods.extendedcrafting.TableCrafting.addShaped(3, <output>, [

[<>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>],

[<>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>]]);  
mods.extendedcrafting.TableCrafting.addShaped(4, <output>, [

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>], 

[<>, <>, <>, <>, <>, <>, <>, <>, <>]]);  


末影工作台


添加:

mods.extendedcrafting.EnderCrafting.addShaped(<output>, [

[<>, <>, <>], [<>, <>, <>], [<>, <>, <>]]);  

移除:

mods.extendedcrafting.EnderCrafting.remove(<output>);


压缩机配方


添加:

mods.extendedcrafting.CompressionCrafting.addRecipe

(<output>, <input>, inputCount, <catalyst>, rfCost);

mods.extendedcrafting.CompressionCrafting.addRecipe

(<output>, <input>, inputCount, <catalyst>, rfCost, rfRate);

移除:

mods.extendedcrafting.CompressionCrafting.remove(<output>);

output = 生成的物品
input = 输入的物品
inputCount = 所需要的输入物品数量
catalyst = 所需要的催化剂
rfCost = 压缩机制作物品所消耗的能量
rfRate =(可选)在制作阶段消耗RF的速率

rfCost / rfRate = 制作所需要的时间;如果没有指定,将采用默认值。