Skip to content

Casting Basin Recipe

titammods edited this page Jun 11, 2026 · 5 revisions

Casting Basin Recipe

Type: hephaestus:casting_basin
Machine: Casting Basin

Pours a fluid from a faucet directly into the casting basin to produce a block or item. Unlike the Casting Table, the basin does not use a cast it works by itself.


JSON Structure

{
  "type": "hephaestus:casting_basin",
  "fluid": {
    "id": "hephaestus:molten_iron",
    "amount": 810
  },
  "result": {
    "id": "minecraft:iron_block",
    "count": 1
  },
  "cooling_time": 120
}

Fields

Field Type Required Default Description
fluid.id string true Fluid poured from faucet (namespace:path)
fluid.amount integer true Amount consumed in mB
result.id string true Item or block produced
result.count integer false 1 Number of items produced
cooling_time integer true Ticks to solidify

How it Works

1. Faucet pours fluid into the basin
2. When the basin has enough fluid for the recipe → solidification begins
3. After cooling time ticks → result item appears on top of basin
4. Player collects the result

Examples

Iron Block

{
  "type": "hephaestus:casting_basin",
  "fluid": { "id": "hephaestus:molten_iron", "amount": 810 },
  "result": { "id": "minecraft:iron_block" },
  "cooling_time": 120
}

Gold Block

{
  "type": "hephaestus:casting_basin",
  "fluid": { "id": "hephaestus:molten_gold", "amount": 810 },
  "result": { "id": "minecraft:gold_block" },
  "cooling_time": 100
}

Copper Block

{
  "type": "hephaestus:casting_basin",
  "fluid": { "id": "hephaestus:molten_copper", "amount": 810 },
  "result": { "id": "minecraft:copper_block" },
  "cooling_time": 90
}

Custom alloy block

{
  "type": "hephaestus:casting_basin",
  "fluid": { "id": "hephaestus:molten_bronze", "amount": 810 },
  "result": { "id": "yourmod:bronze_block" },
  "cooling_time": 130
}

Differences from Casting Table

Casting Table Casting Basin
Cast required Optional No
Typical output Ingots, nuggets, gems Blocks
Typical amount 10–180 mB 810 mB (1 block)
Cast consumed Configurable N/A

Notes

  • The basin does not accept casts — use the Casting Table for cast-based recipes
  • 810 mB = 1 block equivalent (9 ingots × 90 mB)
  • Multiple basin recipes can exist for different fluids
  • cooling_time is in ticks (20 = 1 second)

Casting Table | Home →

Hephaestus Forge

Home


Recipes


Mechanics


Reference

Unit mB
Nugget 10
Ingot 90
Block 810
Bucket 1000

Clone this wiki locally