Ore Infusion Recipes

Mystical Agriculture allows you to easily add your own Ore Infusion 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 an Ore Infusion recipe. Syntax can be inferred from the example JSON below.

FieldRequiredDescription
typeThe recipe type must be mysticalagriculture:ore_infusion.
ingredientsThe items that will be placed in the input slots.
resultThe 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
  }
}