Skip to content

Alloying Recipe JSON

Princess edited this page Jan 27, 2021 · 9 revisions

Location: .jar/data/tconstruct/recipes/smeltery/alloys/

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