BBL Cloche - Automated Plant Cultivation
BBL Cloche mod introduces players to a unique block that dramatically simplifies the process of growing crops and trees in the Minecraft world. This functionality was originally part of Opolis Utilities but is now available as a standalone addition.
Main Features:
The basic functionality includes ready-made recipes for all standard crops and trees from vanilla gameplay. Future updates will bring extended support for other mods and additional improvements.
Upgrade System:
The mod is built on BBL Core foundation, providing a flexible and customizable upgrade system. Below the progress indicator are three slots for installing upgrades:
- The first upgrade allows growing crops that require special conditions (such as Nether plants) in any dimension
- The second removes seeds from crafting results (especially useful for wheat where seeds are not the main goal)
- The third increases the output of the main product (the first item in the recipe)
Functionality Expansion:
You can add your own dimensional upgrades through datapacks:
{
"type": "cloche:dimensional_upgrade",
"dimension": "minecraft:end",
"ingredient": {
"item": "cloche:end_upgrade"
}
}
Custom recipe creation is also supported:
{
"type": "cloche:cloche",
"catalyst": [],
"duration": 1200,
"results": [
{
"item": {
"count": 2,
"id": "minecraft:dark_oak_log"
}
},
{
"chance": 0.2,
"item": {
"count": 1,
"id": "minecraft:dark_oak_sapling"
}
},
{
"chance": 0.2,
"item": {
"count": 1,
"id": "minecraft:apple"
}
},
{
"chance": 0.1,
"item": {
"count": 1,
"id": "minecraft:stick"
}
}
],
"seed": {
"item": "minecraft:dark_oak_sapling"
},
"soil": {
"tag": "minecraft:dirt"
}
}