Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Mystical Automation
Ore Infusion Recipes
Mystical Agriculture allows you to easily add your own Ore Infusion recipes using Datapacks.
Datapacks
The Recipe File
This section will go over the values available to use in an Ore Infusion recipe. Syntax can be inferred from the example JSON below.
| Field | Required | Description |
|---|---|---|
type | ✓ | The recipe type must be mysticalagriculture:ore_infusion. |
ingredients | ✓ | The items that will be placed in the input slots. |
result | ✓ | The item that this recipe will output once finished. |
Example File
{
"type": "mysticalagriculture:ore_infusion",
"ingredients": [
{
"ingredient": "minecraft:stone",
"count": 1
},
{
"ingredient": "mysticalagriculture:iron_essence",
"count": 4
}
],
"result": {
"id": "minecraft:iron_ore",
"count": 1
}
}