Generator - Automatic Resource Generator
This mod introduces a unique block called "Generator" that functions as an automatic material producer. The main operating principle involves passively creating cobblestone every second when lava and water buckets are present in its inventory.
A key feature of the modification is support for custom recipes through datapacks. The format for creating your own recipes is as follows:
{
"type": "generator:generator_recipe",
"ingredients": [
{
"item": "minecraft:lava_bucket"
},
{
"item": "minecraft:water_bucket"
}
],
"time": 20,
"output": {
"count": 1,
"item": "minecraft:cobblestone"
}
}
It's important to note that the order of ingredient placement in slots doesn't matter - they can be in any of the available locations.
The mod has built-in compatibility with the Create modification, automatically supporting the creation of limestone from lava and honey, as well as scoria from lava and chocolate. Integration with various Create mechanisms has been tested, including conveyors, chutes, and funnels.
This is the author's first public Fabric modification, so some technical imperfections may be present.