Ender Recipes

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

Datapacks

Prerequisites
  • You can learn more about using vanilla datapacks here.
  • You can learn more about creating recipe JSON files here.

The Recipe File

This section will go over the values available to use in an Ender Crafting recipe. Syntax can be inferred from the example JSONs below.

Shaped

FieldRequiredDescription
typeThe recipe type must be extendedcrafting:shaped_ender_crafter.
crafting_timeThe amount of time (in seconds) this recipe should take with a single Alternator.
patternThe recipe pattern.
keyThe recipe key, for specifying which item each character represents.
resultThe item that this recipe will output once finished

Shapeless

FieldRequiredDescription
typeThe recipe type must be extendedcrafting:shapeless_ender_crafter.
crafting_timeThe amount of time (in seconds) this recipe should take with a single Alternator.
ingredientsAn array of 1-9 input items.
resultThe item that this recipe will output once finished.
Note

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

Example Files

Shaped

{
  "type": "extendedcrafting:shaped_ender_crafter",
  "pattern": [
    "XXX",
    "X X",
    "XXX"
  ],
  "key": {
    "X": {
      "tag": "c:ingots/gold"
    }
  },
  "result": {
    "id": "minecraft:apple"
  }
}

Shapeless

{
  "type": "extendedcrafting:shapeless_ender_crafter",
  "ingredients": [
    {
      "item": "minecraft:coal"
    },
    {
      "item": "minecraft:coal"
    }
  ],
  "result": {
    "id": "minecraft:apple"
  }
}

CraftTweaker

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

Recipe Manager Support

CraftTweaker integration supports Recipe Managers! Access all applicable methods using <recipetype:extendedcrafting:ender_crafter>!

Adding A Shaped Recipe

<recipetype:extendedcrafting:ender_crafter>.addShaped(name, <output>, [[<>, <>, <>], [<>, <>, <>], [<>, <>, <>]], seconds);
FieldRequiredDescription
nameA unique name for this recipe. Must be all lower case and have no spaces.
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

<recipetype:extendedcrafting:ender_crafter>.addShaped("test_shaped", <item:minecraft:stick>, [
  [<tag:item:c:ingots/iron>, <item:minecraft:air>, <item:minecraft:air>], 
  [<tag:item:c:ingots/gold>, <tag:item:c:ingots/gold>, <item:minecraft:air>], 
  [<tag:item:c:ingots/gold>, <item:minecraft:air>, <item:minecraft:air>]
], 500);

Adding A Shapeless Recipe

<recipetype:extendedcrafting:ender_crafter>.addShapeless(name, <output>, [inputs], seconds);
FieldRequiredDescription
nameA unique name for this recipe. Must be all lower case and have no spaces.
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

<recipetype:extendedcrafting:ender_crafter>.addShapeless("test_shapeless", <item:minecraft:cobblestone>, [
  <tag:item:c:gems/diamond>, <tag:item:c:gems/diamond>, <tag:item:c:gems/diamond>, <tag:item:c:gems/diamond>, <tag:item:c:gems/diamond>, <tag:item:c:gems/diamond>
], 30);

Removing Recipes

<recipetype:extendedcrafting:ender_crafter>.remove(<output>);
FieldRequiredDescription
outputThe item to remove all recipes for.