Combination Recipes

Extended Crafting allows you easily add your own Combination Crafting recipes using CraftTweaker.

CraftTweaker

Extended Crafting comes with CraftTweaker support built-in. You can make use of CraftTweaker to easily manage Combination Crafting recipes.

Adding A Recipe

mods.extendedcrafting.CombinationCrafting.addRecipe(<output>, powerCost, <input>, [inputs]);
mods.extendedcrafting.CombinationCrafting.addRecipe(<output>, powerCost, powerRate, <input>, [inputs]);
FieldRequiredDescription
outputThe output item for this recipe.
powerCostThe amount of FE required to craft this recipe.
powerRateThe rate the recipe should consume FE. powerCost / powerRate = the number of ticks required to craft the recipe. If this isn't defined it will use the default value defined in the config.
inputThe item that will be placed on the Crafting Core.
inputsAn array of 0-48 items. The first item is the item that goes on the Crafting Core, and the rest go on the pedestals.

Example

mods.extendedcrafting.CombinationCrafting.addRecipe(<minecraft:stick> * 10, 10000, 100, <minecraft:diamond>, [<ore:ingotIron>, <minecraft:stick>]);

Removing Recipes

mods.extendedcrafting.CombinationCrafting.remove(<output>);
FieldRequiredDescription
outputThe item to remove all recipes for.