Block Extractor
This modification introduces a unique block to the game - the Extractor, which allows extracting resources from various blocks without destroying them in the traditional way.
For configuring the Extractor's operation, datapacks or KubeJS are used. Important note: the current version lacks default recipes, so you need to create them yourself.
Recipe Setup Example
{
"type": "blockextractor:extracting",
"block": {
"item": "minecraft:stone"
},
"ticks": 20,
"energy": 100,
"result": {
"count": 2,
"id": "minecraft:cobblestone"
}
}
This recipe processes the minecraft:stone block (the stone block must be placed under the Extractor) and produces 2 units of minecraft:cobblestone resource. The extraction process for one item takes 20 ticks and consumes 100 FE energy units.
This mod is an excellent solution for modpacks, enabling a simple and virtually unlimited resource generation system.