You are viewing the docs for an older version. View Latest Docs (26.1)

Soul Extraction Recipes

Mystical Agriculture allows you easily add your own Soul Extraction recipes using both Datapacks and CraftTweaker.

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 a Soul Extraction recipe. Syntax can be inferred from the example JSON below.

FieldRequiredDescription
type✓The recipe type must be mysticalagriculture:soul_extraction.
input✓The item that will be placed in the input slot.
output✓The souls granted from this item.

Example File

{
  "type": "mysticalagriculture:soul_extraction",
  "input": {
    "item": "minecraft:blaze_rod"
  },
  "output": {
    "type": "mysticalagriculture:blaze",
    "souls": 0.5
  }
}

CraftTweaker

Mystical Agriculture allows you easily add your own Soul Extraction recipes using CraftTweaker.

Adding A Recipe

mods.mysticalagriculture.SoulExtractorCrafting.addRecipe(name, <output>, <input>);
FieldRequiredDescription
name✓A unique name for this recipe. Must be all lower case and have no spaces.
input✓The item that is required to make the output.
type✓The id of the resulting mob soul type.
souls✓The amount of the resulting mob soul type.

Example

mods.mysticalagriculture.SoulExtractorCrafting.addRecipe("test", <tag:forge:ingots/iron>, "mysticalagriculture:spider", 0.5);

Removing Recipes

Remove By Item

mods.mysticalagriculture.SoulExtractorCrafting.remove(<output>);
FieldRequiredDescription
output✓The item to remove all recipes for.

Remove By Mob Soul Type

mods.mysticalagriculture.SoulExtractorCrafting.remove("type");
FieldRequiredDescription
type✓The mob soul type to remove all recipes for.