其实在CRT的wiki上就有,但是中文界面没人翻译,这里只是说简单说说里面写了的几种,防止看不懂我拿JEI里合成表的图截下来放上一些字

https://docs.blamejared.com/1.12/zh/Mods/Natures_Aura/Altar_Of_Birthing

我不是很确定这里String name是不是给这个合成表起个名字或者合成品的名字,不过实测同名的合成会被顶掉,貌似可以配合zenscript的事件一类根据时间删除添加合成(?)

Altar of Birthing 生育祭坛,消耗材料和灵气召唤生物

添加

脚本格式:mods.naturesaura.AnimalSpawner.addRecipe(String name, String entity, int aura, int time, IIngredient[] ingredients);

mods.naturesaura.AnimalSpawner.addRecipe(字符串名称(记得打引号), 要生成的实体,灵气使用量, 时间进程(tick),[材料]);

[1.12.2]使用crafttweaker对自然灵气进行魔改-第1张图片

删除

脚本格式:mods.naturesaura.AnimalSpawner.removeRecipe(String name);

#这里如果填String name内容我也找不到自然灵气添加的叫啥,填实体名字就炸,我不好说这是咋删




Natural Altar 自然祭坛 消化灵气转换物品,边上四个角上可以放催化器

添加

脚本格式:mods.naturesaura.Altar.addRecipe(String name, IIngredient input, IItemStack output, IIngredient catalyst, int aura, int time);

mods.naturesaura.Altar.addRecipe(同上面的字符串名称, 输入物品, 输出物品,需要的催化剂(貌似可以空着就填null),灵气消耗量, 时间进程(tick));

[1.12.2]使用crafttweaker对自然灵气进行魔改-第2张图片

删除

脚本格式:mods.naturesaura.Altar.removeRecipe(IItemStack output);里面填输出物品

Offering to the Gods 献给诸神 (上贡)偷吃诸神贡品

添加

脚本格式:mods.naturesaura.Offering.addRecipe(String name, IIngredient input, int inputAmount, IIngredient startItem, IItemStack output);

mods.naturesaura.Offering.addRecipe(字符串名称(同上), 输入物品, 输入物品需求量, 开启祭祀使用的物品,输出物品);[1.12.2]使用crafttweaker对自然灵气进行魔改-第3张图片

删除

脚本格式:mods.naturesaura.Offering.removeRecipe(IItemStack output);里面填输出物品

Ritual of the forest 森林仪式 低配种树版符文矩阵

添加

脚本格式:mods.naturesaura.TreeRitual.addRecipe(String name, IIngredient saplingType, IItemStack output, int time, IIngredient[] items);

mods.naturesaura.TreeRitual.addRecipe(字符串名称, 树苗种类, 输出物品, 时间(tick), [输入物品]);

[1.12.2]使用crafttweaker对自然灵气进行魔改-第4张图片

[1.12.2]使用crafttweaker对自然灵气进行魔改-第5张图片

删除

脚本格式:mods.naturesaura.TreeRitual.removeRecipe(IItemStack output);里面填输出物品

附一些自己写的实例

 mods.naturesaura.Altar.addRecipe("风之熵变",<variedcommodities:element_air>,<minecraft:feather>,<botania:runealtar>,1000,40);

[1.12.2]使用crafttweaker对自然灵气进行魔改-第6张图片 mods.naturesaura.TreeRitual.addRecipe("骄阳仪式1",<rainboaks:rainboak_sapling>,<botania:specialflower>.withTag({type: "sunbless"}),100,[<botania:petal:4>,<botania:petal:4>,<botania:petal:4>,<botania:petal>,<naturesaura:aura_bottle>.withTag({stored_type: "naturesaura:overworld"}),<naturesaura:aura_bottle>.withTag({stored_type: "naturesaura:overworld"}),<ore:fertilizer>,<ore:fertilizer>]);

[1.12.2]使用crafttweaker对自然灵气进行魔改-第7张图片