本篇教程由作者设定未经允许禁止转载。
自定义奇点增加与删除(适用于1.16)
在教程区看到了适用于1.12的教程但是在1.16并没有,找了一会实测了一下指令发现1.16和1.12有部分的不同
工具:CraftTweaker1.16版本,Extended Crafting1.16版本。
其中需要使用到crt的/ct hand来获取手上的物品ID,其中奇点ID需要完全复制,即鼠标点一下即可。
删除奇点:
删除奇点指令为
mods.extendedcrafting.CompressionCrafting.remove
(<item:extendedcrafting:singularity>.withTag({Id: "extendedcrafting:coal" as string}));
其中的<item:extendedcrafting:singularity>.withTag({Id: "extendedcrafting:coal" as string})为奇点ID。
添加奇点:
添加奇点指令为
mods.extendedcrafting.CompressionCrafting.addRecipe("coal_block", <item:minecraft:coal_block>,
<item:extendedcrafting:singularity>.withTag({Id: "extendedcrafting:coal" as string}),
16384, <item:extendedcrafting:elite_table>,16384000,powerRate);
coal_block为配方名
<item:minecraft:coal_block>为合成物品
<item:extendedcrafting:singularity>.withTag({Id: "extendedcrafting:coal" as string}),为合成输出物品ID
16384为需要的物品数量
<item:extendedcrafting:elite_table>为合成催化剂
16384000为合成该物品所需要的能量。
powerRate为可选项,可替换为任意数字,即每tick消耗多少能源,也可控制合成该物品所需时间。如果没有添加此参数,默认使用配置文件中定义的速率。
如果删除单个奇点请使用
recipes.removeRecipe(奇点ID);