-
Notifications
You must be signed in to change notification settings - Fork 790
Alloying Recipe JSON
Princess edited this page Jan 27, 2021
·
9 revisions
Location: .jar/data/tconstruct/recipes/smeltery/alloys/
type
: Must be "tconstruct:alloy".
inputs
: List of FluidIngredients. The fluids that are being alloyed together. Must have at least two entries.
result
: FluidStack. The recipe's output.
{
"type": "tconstruct:alloy",
"result": {
"fluid": "tconstruct:molten_rose_gold",
"amount": 576
},
"inputs": [
{
"name": "tconstruct:molten_copper",
"amount": 432
},
{
"name": "tconstruct:molten_gold",
"amount": 144
}
]
}