Table Recipes

Extended Crafting allows you to easily add your own Extended Crafting Table recipes using Datapacks.

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 a Table Crafting recipe. Syntax can be inferred from the example jsons below.

Shaped

FieldRequiredDescription
typeThe recipe type must be extendedcrafting:shaped_table.
tierThe tier of table required for this recipe. If omitted the recipe will work for all tables with enough grid space.
patternThe recipe pattern.
keyThe recipe key, for specifying which item each character represents.
resultThe item that this recipe will output when crafted.

Shapeless

FieldRequiredDescription
typeThe recipe type must be extendedcrafting:shapeless_table.
tierThe tier of table required for this recipe. If omitted the recipe will work for all tables with enough grid space.
ingredientsAn array of 1-81 input items.
resultThe item that this recipe will output when crafted.

Example Files

Shaped

Tier 1 (3x3)

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

Tier 2 (5x5)

{
  "type": "extendedcrafting:shaped_table",
  "pattern": [
    "XXXXX",
    "X   X",
    "X   X",
    "X   X",
    "XXXXX"
  ],
  "key": {
    "X": "#c:ingots/gold"
  },
  "result": {
    "id": "minecraft:apple"
  }
}

Tier 3 (7x7)

{
  "type": "extendedcrafting:shaped_table",
  "pattern": [
    "XXXXXXX",
    "X     X",
    "X     X",
    "X     X",
    "X     X",
    "X     X",
    "XXXXXXX"
  ],
  "key": {
    "X": "#c:ingots/gold"
  },
  "result": {
    "id": "minecraft:apple"
  }
}

Tier 4 (9x9)

{
  "type": "extendedcrafting:shaped_table",
  "pattern": [
    "XXXXXXXXX",
    "X       X",
    "X       X",
    "X       X",
    "X       X",
    "X       X",
    "X       X",
    "X       X",
    "XXXXXXXXX"
  ],
  "key": {
    "X": "#c:ingots/gold"
  },
  "result": {
    "id": "minecraft:apple"
  }
}

Shapeless

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