Custom Upgrades - benbenlaw/BBLCloche GitHub Wiki
Cloches also allows for certain customizable upgrades, this are data driven recipes like the crops. Any custom upgrade must be tagged with "cloches:upgrades" to allow players to place these upgrades in the slots
Dimensional Upgrades - Theses allow you to set any item for any dimension to allow crops to work in any dimension Example Below shows adding an Ender Pearl as an dimensional upgrade
{
"type": "cloche:dimensional_upgrade",
"dimension": "minecraft:end",
"ingredient": {
"item": "minecraft:ender_pearl"
}
}
Fixed Speed Upgrades - These reduce the total time in a recipe by an amount, any item works here, fixed upgrade effects happen after any percentage ones
{
"type": "cloche:speed_upgrade",
"ingredient": {
"item": "cloche:fixed_speed_upgrade_1"
},
"modifier": 100,
"modifier_type": "fixed"
}
Percentage Speed Upgrades - These reduce the total time in a recipe by a percentage, any item works here, percentage upgrades total there amounts before the effect is applied eg if you have 2 of upgrade shown below it will do a total 10% reduction not 5% then 5%
{
"type": "cloche:speed_upgrade",
"ingredient": {
"item": "cloche:percentage_speed_upgrade_1"
},
"modifier": 5,
"modifier_type": "percentage"
}