Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Mystical Automation
Compression Recipes
Extended Crafting allows you to easily add your own Compressor recipes using Datapacks.
Datapacks
The Recipe File
This section will go over the values available to use in a Compressor recipe. Syntax can be inferred from the example JSON below.
| Field | Required | Description |
|---|---|---|
type | ✓ | The recipe type must be extendedcrafting:compressor. |
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. | |
ingredient | ✓ | The input item and count. |
catalyst | ✓ | The catalyst item. This item does not get consumed. |
result | ✓ | The item that this recipe will output once finished. |
Note
The amount of time (in ticks) a Compression recipe takes to complete is power_cost / power_rate.
Example File
{
"type": "extendedcrafting:compressor",
"power_cost": 500000,
"ingredient": {
"ingredient": "minecraft:carrot",
"count": 10000
},
"catalyst": "extendedcrafting:ender_catalyst",
"result": {
"id": "minecraft:cobblestone"
}
}