-
Notifications
You must be signed in to change notification settings - Fork 0
Entity Melting Recipe
titammods edited this page Jun 10, 2026
·
3 revisions
Type: hephaestus:entity_melting
Machine: Smeltery only
Damages living entities inside the smeltery to produce fluids. The entity takes damage every 20 ticks while the smeltery is active and has fuel. The entity dies normally when its health reaches zero.
{
"type": "hephaestus:entity_melting",
"entity": "minecraft:blaze",
"result_id": "hephaestus:molten_blaze",
"result_amount": 250,
"damage": 2
}| Field | Type | Required | Default | Description |
|---|---|---|---|---|
entity |
string |
true |
— | Entity type identifier (namespace:path) |
result_id |
string |
true |
— | Fluid produced per hit (namespace:path) |
result_amount |
integer |
true |
— | Amount of fluid per hit in mB |
damage |
integer |
false |
2 |
Damage dealt per hit (2 = 1 ❤️) |
Every 20 ticks (1 second):
1. Smeltery scans its interior for living entities
2. Entities with a matching recipe receive damage
3. fluid is added to the smeltery tank
4. Entities without a recipe receive damage + produce lava (fallback)
Immune entities: Players in Creative mode and entities with the Fire Resistance effect are not affected.
{
"type": "hephaestus:entity_melting",
"entity": "minecraft:blaze",
"result_id": "hephaestus:molten_blaze",
"result_amount": 250,
"damage": 2
}{
"type": "hephaestus:entity_melting",
"entity": "minecraft:magma_cube",
"result_id": "minecraft:lava",
"result_amount": 100,
"damage": 2
}{
"type": "hephaestus:entity_melting",
"entity": "yourmod:fire_elemental",
"result_id": "yourmod:molten_essence",
"result_amount": 500,
"damage": 4
}- Fluid is added per hit, not per kill
-
damage: 2= 1 heart.damage: 20= 10 hearts (one-shot most mobs) - Entities without a recipe still take
damage: 2and produce lava as fallback - Fire-immune mobs receive magic damage instead of fire damage
- Requires the smeltery to have fuel available (lava or other fuel fluid)
Home · Melting · Entity Melting · Alloy · Casting Table · Casting Basin
| Unit | mB |
|---|---|
| Nugget | 10 |
| Ingot | 90 |
| Block | 810 |
| Bucket | 1000 |