Cucumber
Extended Crafting
Iron Jetpacks
Mystical Agriculture
Editing Crop Types
Mystical Customization allows you easily edit registered crop types.
Editing A Crop Type
Crops are edited via a JSON file located in /config/mysticalcustomization/
called configure-types.json
.
This file will contain an empty JSON object on first launch. You will use this as a crop type ID -> crop type changes map.
Example Entry
{
"mysticalagriculture:resource": {
"craftingSeed": "minecraft:carrot"
}
}
Note
In versions prior to 3.0.0, the crop type IDs did not contain mod IDs. So the above example would use resource
instead.
The configure-crops File
This section will go over the values available to use to edit crops. Syntax can be inferred from the example json below.
Crafting Seed
You can change item to use as the crafting seed for all crops of this type.
{
"craftingSeed": "mysticalagriculture:soulium_seed_base"
}
Example File
{
"mysticalagriculture:resource": {
"craftingSeed": "minecraft:potato"
},
"mysticalagriculture:mob": {
"craftingSeed": "minecraft:carrot"
}
}