-
Notifications
You must be signed in to change notification settings - Fork 6
Thaumcraft Support
WarmthDawn edited this page Sep 26, 2021
·
4 revisions
-
源质输入仓支持输入神秘时代的要素。
同时,它能够从源质管道内吸收源质(合成过程中)吸力为128。
当然也同样支持源质注入装置
-
源质输入仓需要提供两个参数:源质数量 amount 和源质类型 aspect
源质数量为一个整数,代表消耗的源质量
源质类型为一个字符串,代表消耗源质的种类(如 aer,terra,ignis,terra)
-
JSON
{ "type": "aspect", "io-type": "input", "aspect": "ignis", "amount": 40 }Crafttweaker 函数定义
@ZenMethod public static RecipePrimer addAspcetInput(RecipePrimer primer, int amount, String aspectTag);
ZenScript
val reci = RecipeBuilder.newBuilder(...); reci.addAspcetInput(40, "ignis"); reci.build();
-
当前版本的源质输入仓不参与合成表的匹配,也就是说,你无法使用源质输入的不同来区分两个不同的合成表
这么做的目的是为了让机械可以在合成开始之后去抽取源质,而不是提前将源质输入之后才开始合成
具体可以参考注魔祭坛、坩埚的工作方式