Ender Recipes

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

CraftTweaker

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

Adding A Shaped Recipe

mods.extendedcrafting.EnderCrafting.addShaped(<output>, [[<>, <>, <>], [<>, <>, <>], [<>, <>, <>]], seconds);
FieldRequiredDescription
outputThe output item for this recipe.
<>An input ingredient for the slot shown. These input arrays work in the same way as the normal crafting recipes, check out the CraftTweaker wiki for more information.
secondsThe amount of seconds this recipe should take with a single Alternator. If this parameter isn't added, it will use the default rate defined in the config file.
Note

Crafting Time will decrease depending on how many Alternators are in range. See the config settings for more information.

Example

mods.extendedcrafting.EnderCrafting.addShaped(<minecraft:stick>, [
  [<minecraft:apple>, <minecraft:apple>, <minecraft:apple>], 
  [<minecraft:carrot>, <minecraft:carrot>, <minecraft:apple>], 
  [<minecraft:carrot>, <minecraft:apple>, <minecraft:apple>]
], 500);

Adding A Shapeless Recipe

mods.extendedcrafting.EnderCrafting.addShapeless(<output>, [inputs], seconds);
FieldRequiredDescription
outputThe output item for this recipe.
inputsAn array of 1-9 items required to make the recipe.
secondsThe amount of seconds this recipe should take with a single Alternator. If this parameter isn't added, it will use the default rate defined in the config file.
Note

Crafting Time will decrease depending on how many Alternators are in range. See the config settings for more information.

Example

mods.extendedcrafting.EnderCrafting.addShapeless(<minecraft:cobblestone>, [
  <minecraft:diamond>, <minecraft:diamond>, <minecraft:diamond>, <minecraft:diamond>, <minecraft:diamond>, <minecraft:diamond>
], 30);

Removing Recipes

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