Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Mystical Automation
Combination Recipes
Extended Crafting allows you to easily add your own Combination Crafting recipes using Datapacks.
Datapacks
The Recipe File
This section will go over the values available to use in a Combination Crafting recipe. Syntax can be inferred from the example JSON below.
| Field | Required | Description |
|---|---|---|
type | ✓ | The recipe type must be extendedcrafting:combination. |
power_cost | ✓ | The amount of power required to craft this recipe. |
power_rate | The amount of power consumed per tick. If omitted will default to the config value. | |
input | ✓ | The item that will be placed on the Crafting Core. |
ingredients | ✓ | An array of 1-48 items that will be placed on the Pedestals. |
result | ✓ | The item that this recipe will output once finished. |
Note
The amount of time (in ticks) a Combination recipe takes to complete is power_cost / power_rate.
Example File
{
"type": "extendedcrafting:combination",
"power_cost": 400000,
"input": "minecraft:iron_ingot",
"ingredients": [
"minecraft:potato",
"minecraft:potato",
"minecraft:potato",
"minecraft:potato",
"minecraft:potato",
"minecraft:potato",
"minecraft:potato",
"minecraft:potato"
],
"result": {
"id": "minecraft:stone"
}
}