Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Mystical Automation
Infusion Recipes
Mystical Agriculture allows you to easily add your own Infusion Crafting recipes using Datapacks.
Datapacks
The Recipe File
This section will go over the values available to use in an Infusion Crafting recipe. Syntax can be inferred from the example JSON below.
| Field | Required | Description |
|---|---|---|
type | ✓ | The recipe type must be mysticalagriculture:infusion. |
input | ✓ | The item that will be placed on the Infusion Altar. |
ingredients | ✓ | An array of 1-8 items that will be placed on the Infusion Pedestals. |
result | ✓ | The item that this recipe will output once finished. |
Example File
{
"type": "mysticalagriculture:infusion",
"input": "minecraft:apple",
"ingredients": [
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot",
"minecraft:carrot"
],
"result": {
"id": "minecraft:gray_dye"
}
}