原版配方修改
IIngredient
IIngredient,材料,是 Mojang 的标准化的在配方中用于匹配物品的东西。
标签虽是高版本矿物系统的替代品,但由于标签的作用更大一点,除了用于类似矿辞功能的物品标签,还有方块标签等等。只有物品标签才能够转换到 IIngredient 中。一般情况下,物品标签可以自动转换到 IIngredient 中。但如有意外情况,可以手动用 asIIngredient
方法进行转换。
如果你需要声明数组,你需要 import
: import crafttweaker.api.item.IIngredient
工作台配方
不是 1.12 的 recipes.addShaped
的了,而是 craftingTable.addShaped
了。
有序合成
craftingTable.addShaped(recipeName, output, inputBox);
recipeName 是一个字符串,指定配方的名称(1.12 可省略,现在必须填!)
output 是配方的输出,只能是物品,不能是标签
inputBox 是 IIngredient 的二维数组,指定配方输入(没必要填满 3 * 3 的)
无序合成
craftingTable.addShapeless(recipeName, output, inputBox);
inputBox 是材料的数组,只有一层中括号
镜像合成
镜像合成是特殊的有序配方,它的输入可以水平翻转。
craftingTable.addShapedMirrored(recipeName, output, inputBox);
移除合成
熔炉
添加配方
name: 字符串,配方名
output: 物品,配方输出
input: IIngredient,配方输入
xp: 双精度浮点数,该配方产生的经验值
cookTime: 整数,配方所需时间(Tip: 原版配方均为 200)
移除配方
熔炉变种
烟熏炉把 furnace
换成 smoker
,高炉换成 blastFurnace
即可。
熔炉燃料
item.burnTime = value;
<item:minecraft:diamond>.burnTime = 10000;
将钻石的燃料时间改为 10000,如果设置为 0 则为删除。
营火
添加配方
name: 字符串,配方名
output: 物品,配方输出
input: IIngredient,配方输入
xp: 双精度浮点数,该配方产生的经验值
cookTime: 整数,配方所需时间(Tip: 原版配方均为 100)
移除配方
与熔炉基本相同,把 furance
改成 campfire
即可。
切石机
添加配方
name: 字符串,配方名
output: 物品,配方输出
input: IIngredient,配方输入
移除配方
与工作台基本相同,把 craftingTable
改成 stoneCutter
即可。
NBT
与 1.12 相同,你依旧可以用 withTag
来标记物品的 NBT,并将其作为配方的输入输出。
IngredientList
你可以将两个材料用 |
连接起来,这样这个位置就可以使用两个材料的任意一个。
在这里我们用了 asIIngredient
将标签转换为了材料。
这样第七个和第九个格子可以使用任意羊毛和木板。
最后更新于