A simple melter block that turn blocks into liquid.
Wish there was an easier way to get your lava rather than scooping buckets and trudging through the snow for 5 miles before breakfast? Are you an older MC user who misses the cobble to lava cauldrons of old days of yore? The Melter may be your favorite new machine block!

To place blocks into the Melter drop them in, or push them in using pipes from a storage location. Holding blocks in hand to right-click-mouse insert will not work. Only blocks with recipes can be dropped-in / inserted.
If the mod 'Create' is included then blaze burners will be available as a possible heat source.
data\melter\recipes\melting\cobble_melting.json
-- Example recipe basic
{
"type": "melter:melting",
"ingredient": {
"item": "minecraft:cobblestone",
"count": 1
},
"result": {
"fluid": "minecraft:lava",
"amount": 250
},
"processingTime": 500
}
-- Example recipe with optional minimum heat level required to melt
{
"type": "melter:melting",
"ingredient": {
"tag": "forge:stone",
"count": 1
},
"result": {
"fluid": "minecraft:lava",
"amount": 250
},
"processingTime": 2000,
"minimumHeat": 4
}
To introduce new recipes you can add your own JSON files to datapacks with different filenames and recipe values.
ServerEvents.recipes((event) => {
// event.recipes.melterMelting(OUTPUT,INPUT).processingTime(INT);
// event.recipes.melterMelting(OUTPUT,INPUT).processingTime(INT).minimumHeat(INT);
event.recipes.melterMelting(Fluid.of('minecraft:water', 1000),"minecraft:ice").processingTime(200);
event.recipes.melterMelting(Fluid.of('minecraft:lava', 250),"#forge:stone").processingTime(1000).minimumHeat(4);
});
event.remove({id: 'melter:melting/cobble_melting'});
No files available for download.