-
Notifications
You must be signed in to change notification settings - Fork 0
Casting Basin Recipe
titammods edited this page Jun 11, 2026
·
5 revisions
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.
{
"type": "hephaestus:casting_basin",
"fluid": {
"id": "hephaestus:molten_iron",
"amount": 810
},
"result": {
"id": "minecraft:iron_block",
"count": 1
},
"cooling_time": 120
}| 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 |
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
{
"type": "hephaestus:casting_basin",
"fluid": { "id": "hephaestus:molten_iron", "amount": 810 },
"result": { "id": "minecraft:iron_block" },
"cooling_time": 120
}{
"type": "hephaestus:casting_basin",
"fluid": { "id": "hephaestus:molten_gold", "amount": 810 },
"result": { "id": "minecraft:gold_block" },
"cooling_time": 100
}{
"type": "hephaestus:casting_basin",
"fluid": { "id": "hephaestus:molten_copper", "amount": 810 },
"result": { "id": "minecraft:copper_block" },
"cooling_time": 90
}{
"type": "hephaestus:casting_basin",
"fluid": { "id": "hephaestus:molten_bronze", "amount": 810 },
"result": { "id": "yourmod:bronze_block" },
"cooling_time": 130
}| 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 |
- 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_timeis in ticks (20 = 1 second)
← Casting Table | Home →
Home · Melting · Entity Melting · Alloy · Casting Table · Casting Basin
| Unit | mB |
|---|---|
| Nugget | 10 |
| Ingot | 90 |
| Block | 810 |
| Bucket | 1000 |