需要模组:交错次元/黑暗沼泽MoreTweaker

净化器:

导包:

import moretweaker.betweenlands.Purifier;

移除配方:

Purifier.removeRecipe(<成品>);

添加配方:

Purifier.addRecipe(<材料>, <成品>);

例:使用一个钻石在净化器中净化为下界之星

Purifier.addRecipe(<minecraft:diamond>, <minecraft:nether_star>);

研磨器:

导包:

import moretweaker.betweenlands.Mortar;

移除配方:

Mortar.removeRecipe(<成品>);

添加配方:

Mortar.addRecipe(<材料>, <成品>);

例:使用一个钻石在研磨器中研磨为下界之星

Mortar.addRecipe(<minecraft:diamond>, <minecraft:nether_star>);

活化器:

导包:

import moretweaker.betweenlands.Animator;

移除配方:

Animator.removeRecipe(<成品>);

添加配方:

Animator.addRecipe(<材料>, 硫磺消耗量, 生命水晶耐久消耗量, <成品>);

例:使用一个钻石在活化器中消耗3个硫磺与生命水晶的2点耐久活化为下界之星

Animator.addRecipe(<minecraft:diamond>,3,2, <minecraft:nether_star>);

黑暗德鲁伊祭坛:

导包:

import moretweaker.betweenlands.DruidAltar;

移除配方:

DruidAltar.removeRecipe(<成品>);

添加配方:

DruidAltar.addRecipe(<成品>, [<材料1>,<材料2>,<材料3>,<材料4>]);

例:使用一个钻石,一个铁锭,一个金锭,一个泥土在黑暗德鲁伊祭坛中合成一个下界之星

Animator.addRecipe(<minecraft:nether_star>,

[<minecraft:diamond>,<minecraft:iron_ingot>,<minecraft:gold_ingot>,<minecraft:dirt>]);