-
Notifications
You must be signed in to change notification settings - Fork 0
Casting Table Recipe
titammods edited this page Jun 11, 2026
·
5 revisions
Type: hephaestus:casting_table
Machine: Casting Table
Pours a fluid from a faucet onto a cast item placed on the casting table, producing a new item. The cast can optionally be consumed.
{
"type": "hephaestus:casting_table",
"cast": { "item": "hephaestus:ingot_cast" },
"cast_consumed": false,
"fluid": {
"id": "hephaestus:molten_iron",
"amount": 90
},
"result": {
"id": "minecraft:iron_ingot",
"count": 1
},
"cooling_time": 60
}{
"type": "hephaestus:casting_table",
"cast": { "item": "minecraft:gold_ingot" },
"cast_consumed": true,
"fluid": {
"id": "minecraft:lava",
"amount": 50
},
"result": {
"id": "minecraft:magma_block",
"count": 1
},
"cooling_time": 100
}{
"type": "hephaestus:casting_table",
"fluid": {
"id": "minecraft:lava",
"amount": 50
},
"result": {
"id": "minecraft:obsidian",
"count": 1
},
"cooling_time": 200
}| Field | Type | Required | Default | Description |
|---|---|---|---|---|
cast |
Ingredient | false |
none | Item placed on table as a cast mold |
cast_consumed |
boolean |
false |
false |
Whether the cast is consumed on use |
fluid.id |
string |
true |
— | Fluid poured from faucet |
fluid.amount |
integer |
true |
— | Amount of fluid consumed in mB |
result.id |
string |
true |
— | Item produced |
result.count |
integer |
false |
1 |
Number of items produced |
cooling_time |
integer |
true |
— | Ticks to solidify |
{
"type": "hephaestus:casting_table",
"cast": { "item": "hephaestus:ingot_cast" },
"cast_consumed": false,
"fluid": { "id": "hephaestus:molten_gold", "amount": 90 },
"result": { "id": "minecraft:gold_ingot" },
"cooling_time": 60
}{
"type": "hephaestus:casting_table",
"cast": { "item": "hephaestus:nugget_cast" },
"cast_consumed": false,
"fluid": { "id": "hephaestus:molten_iron", "amount": 10 },
"result": { "id": "minecraft:iron_nugget" },
"cooling_time": 20
}{
"type": "hephaestus:casting_table",
"cast": { "tag": "c:gems/diamond" },
"cast_consumed": true,
"fluid": { "id": "hephaestus:molten_gold", "amount": 90 },
"result": { "id": "hephaestus:gem_cast" },
"cooling_time": 80
}- If
castis omitted, the table must be empty for the recipe to trigger -
castsupportsitem,tag, and any other standard ingredient formats -
cast_consumed: truedestroys the cast after crafting useful for one-time molds -
cooling_timeis measured in ticks (20 = 1 second) - The faucet must be attached to a Smeltery or Melter tank
← Alloy | Casting Basin →
Home · Melting · Entity Melting · Alloy · Casting Table · Casting Basin
| Unit | mB |
|---|---|
| Nugget | 10 |
| Ingot | 90 |
| Block | 810 |
| Bucket | 1000 |