Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Reprocessor Recipes
Mystical Agriculture allows you easily add your own Seed Reprocessor recipes using both Datapacks and CraftTweaker.
Datapacks
The Recipe File
This section will go over the values available to use in a Seed Reprocessor recipe. Syntax can be inferred from the example json below.
Field | Required | Description |
---|---|---|
type | ✓ | The recipe type must be mysticalagriculture:reprocessor . |
input | ✓ | The item that will be placed in the input slot. |
result | ✓ | The item that this recipe will output once finished. |
Example File
{
"type": "mysticalagriculture:reprocessor",
"input": {
"item": "minecraft:apple"
},
"result": {
"id": "minecraft:potato"
}
}
CraftTweaker
Mystical Agriculture allows you easily add your own Reprocessor Crafting recipes using CraftTweaker. Here's how you do it.
Note
CraftTweaker integration supports Recipe Managers! Access all applicable methods using <recipetype:mysticalagriculture:reprocessor>!
Adding a recipe
<recipetype:mysticalagriculture:reprocessor>.addRecipe(name, <output>, <input>);
Field | Required | Description |
---|---|---|
name | ✓ | A unique name for this recipe. Must be all lower case and have no spaces. |
output | ✓ | The output item for this recipe. |
input | ✓ | The item that is required to make the output. |
Example
<recipetype:mysticalagriculture:reprocessor>.addRecipe("test_reprocessor", <item:minecraft:apple>, <tag:item:c:ingots/iron>);
Removing Recipes
<recipetype:mysticalagriculture:reprocessor>.remove(<output>);
Field | Required | Description |
---|---|---|
output | ✓ | The item to remove all recipes for. |