天华之作自身的即对crt支持魔改,可魔改内容如下

天华熔炉金属成型台

移除配方

mods.aetherworks.MetalFormer.removeRecipesByInput(input);  //根据输入物品移除配方
mods.aetherworks.MetalFormer.removeRecipesByOutput(output);  //根据输出物品移除配方
mods.aetherworks.MetalFormer.removeRecipe(input, output);  //根据输入与输出物品移除配方

//例子
mods.aetherworks.MetalFormer.removeRecipesByInput(<minecraft:emerald>);  //移除天华熔炉金属成型台中所有使用绿宝石制作的配方

添加配方

mods.aetherworks.MetalFormer.addRecipe(input, fluid, output, temperature);
//四项数值定义依次为输入物品,所用流体,输出物品,配方所需启动温度

//例子
mods.aetherworks.MetalFormer.addRecipe(<minecraft:dirt>, <liquid:water> * 1000, <avaritia:resource:6>, 721);

上方例子游戏内JEI显示如图所示使用CraftTweaker对天华之作进行魔改-第1张图片

天华熔炼砧

移除配方

mods.aetherworks.Anvil.removeRecipesByInput(input);  //根据输入物品移除配方
mods.aetherworks.Anvil.removeRecipesByOutput(output);  //根据输出物品移除配方
mods.aetherworks.Anvil.removeRecipe(input, output);  //根据输入与输出物品移除配方

//例子
mods.aetherworks.Anvil.removeRecipesByOutput(<aetherworks:item_resource:22>);  //移除所有在天华熔炼砧中制作平庸天华皇冠的配方

添加配方

mods.aetherworks.Anvil.addRecipe(input, output, temperatureMin, temperatureMax, embersPerHit, difficulty, hitsRequired, temperatureFluctuation);
//定义依次为输入物品,输出物品,锻造温度最小值,锻造温度最大值,每次敲击消耗灰烬能量数,难度,敲击次数,每次敲击时炉温变化
//其中temperatureFluctuation为浮点值,默认为0,可省略
//难度对应0-极易,1-新手,2-容易,3-进阶,4-高级,5-狡猾,6-困难,7-大师,8-耗尽,9-引力,10-无尽

//例子
mods.aetherworks.Anvil.addRecipe(<minecraft:wool>, <avaritia:block_resource:1>, 2000, 3000, 81, 8, 37);

上方例子游戏内JEI显示如图所示使用CraftTweaker对天华之作进行魔改-第2张图片