Skip to content

Casting Table Recipe

titammods edited this page Jun 11, 2026 · 5 revisions

Casting Table Recipe

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.


JSON Structure

With cast (cast is kept)

{
  "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
}

With cast (cast is consumed)

{
  "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
}

Without cast

{
  "type": "hephaestus:casting_table",
  "fluid": {
    "id": "minecraft:lava",
    "amount": 50
  },
  "result": {
    "id": "minecraft:obsidian",
    "count": 1
  },
  "cooling_time": 200
}

Fields

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

Examples

Cast Ingot (reusable cast)

{
  "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
}

Cast Nugget (reusable cast)

{
  "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
}

Cast Gem (consumable gold cast)

{
  "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
}

Notes

  • If cast is omitted, the table must be empty for the recipe to trigger
  • cast supports item, tag, and any other standard ingredient formats
  • cast_consumed: true destroys the cast after crafting useful for one-time molds
  • cooling_time is measured in ticks (20 = 1 second)
  • The faucet must be attached to a Smeltery or Melter tank

Alloy | Casting Basin →

Hephaestus Forge

Home


Recipes


Mechanics


Reference

Unit mB
Nugget 10
Ingot 90
Block 810
Bucket 1000

Clone this wiki locally