Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Soul Extraction Recipes
Mystical Agriculture allows you easily add your own Soul Extractor recipes using both Datapacks and CraftTweaker.
Datapacks
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.
Field | Required | Description |
---|---|---|
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_powder"
},
"result": {
"type": "mysticalagriculture:blaze",
"souls": 0.25
}
}
CraftTweaker
Mystical Agriculture allows you easily add your own Soul Extraction recipes using CraftTweaker. Here's how you do it.
Recipe Manager Support
CraftTweaker integration supports Recipe Managers! Access all applicable methods using <recipetype:mysticalagriculture:soul_extraction>!
Adding A Recipe
<recipetype:mysticalagriculture:soul_extraction>.addRecipe(name, <input>, "type", souls);
Field | Required | Description |
---|---|---|
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
<recipetype:mysticalagriculture:soul_extraction>.addRecipe("test", <tag:item:c:ingots/iron>, "mysticalagriculture:spider", 0.5);
Removing Recipes
Remove By Item
<recipetype:mysticalagriculture:soul_extraction>.removeByInput(<output>);
Field | Required | Description |
---|---|---|
output | ✓ | The item to remove all recipes for. |
Remove By Mob Soul Type
<recipetype:mysticalagriculture:soul_extraction>.removeByMobSoulType("type");
Field | Required | Description |
---|---|---|
type | ✓ | The mob soul type to remove all recipes for. |