Перейти к содержимому
Mineforgian

Melter

Simple block melter

Загрузки
3K
Подписчики
14
Обновлён
21 июня 2026 г.
Лицензия
MIT

Опубликован 23 сентября 2022 г.

Melter

A simple melter block that turn blocks into liquid.

Intended for modpacks. Use as you see fit.

Not providing any recipe at the moment.

Designed to work with create but it's optional.

High tier heat sources are from Create.

Heat sources.

  • None (0)
  • Torch (1)
  • Campfire (2)
  • Lava (4)
  • Blaze burner Inactive (8)
  • Blaze burner Active (10)
  • Blaze burner SuperHeated (16)

Recipe example:

{
  "type": "melter:melting",
  "input": {
    "tag": "forge:cobblestone",
    "count": 1
  },
  "output": {
    "fluid": "minecraft:lava",
    "amount": 250
  },
  "processingTime": 500
}

with Minimum Heat

{
  "type": "melter:melting",
  "input": {
    "tag": "forge:cobblestone",
    "count": 1
  },
  "output": {
    "fluid": "minecraft:lava",
    "amount": 250
  },
  "processingTime": 500,
  "minimumHeat": 8
}

KubeJS Integration

//.melterMelting(OUTPUT_FLUID,INPUT_BLOCK).processingTime(INT);
//.minimumHeat(INT) OPTIONAL
event.recipes.melterMelting(Fluid.of('minecraft:water', 200),"#minecraft:leaves").processingTime(200); //Water generator
event.recipes.melterMelting(Fluid.of('minecraft:lava', 250),"#forge:cobblestone").processingTime(1000); //Lava generator
event.recipes.melterMelting(Fluid.of('minecraft:lava', 250),"#forge:cobblestone").processingTime(1000).minimumHeat(8); //Lava generator

CraftTweaker Integration (1.19.2, 1.20.1)


//addRecipe(String name, FluidStack outputFluid,Item inputItem, int processingTime, int minimumHeat)

<recipetype:melter:melting>.addRecipe("test_recipe",<fluid:minecraft:water> * 500,<item:minecraft:gravel>, 1000,8);
<recipetype:melter:melting>.addRecipe("test_recipe_2",<fluid:minecraft:lava> * 500,<item:minecraft:sand>, 200,2);

Ченджлог

1.21.1-1.8.2Релиз1.21.1 · 21 июня 2026 г.
  • Uptade for KubeKs by @ianm1647
  • Update for Create 6.0.10
1.21.1-1.8.1Релиз1.21.1 · 21 апреля 2025 г.
  • JEI stuff
1.21.1-1.8.0Релиз1.21.1 · 11 апреля 2025 г.
  • Update for Create 6.
  • Added Ponder.
  • Changed heat source to block predicates.
  • Now defaults to heat source from datapacks.
1.21.1-1.7.2Релиз1.21.1 · 24 августа 2024 г.
  • Recipe datagen
  • Jei compat
  • Readme update
  • Small fixes
1.21.1-1.7.1Релиз1.21.1 · 24 августа 2024 г.
  • Fixed mc dependencies.
1.21.1-1.7.0Релиз1.21, 1.21.1 · 24 августа 2024 г.
  • HeatSource from data packs.
1.21-1.6.1Релиз1.21, 1.21.1 · 17 августа 2024 г.
  • Ported to 1.21.1
1.20.1-1.6.1Релиз1.20.1 · 12 августа 2024 г.
  • Added decay in heat level for flowing fluids. Thx @MihajloNesic
  • Minimum heat source shows next higher level if current is not present. Thx @MihajloNesic
  • Fixed crash when Create mod is not present. Thx @MihajloNesic
  • Fixed crash regarding the flywheel. Thx @MihajloNesic

Комментарии

Загружаем…