Skip to content

Alloying Recipe JSON

Princess edited this page Jan 25, 2021 · 8 revisions

Keys

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.

Example

{
  "type": "tconstruct:alloy",
  "result": {
    "fluid": "tconstruct:molten_rose_gold",
    "amount": 576
  },
  "inputs": [
    {
      "name": "tconstruct:molten_copper",
      "amount": 432
    },
    {
      "name": "tconstruct:molten_gold",
      "amount": 144
    }
  ]
}
Clone this wiki locally