-
Notifications
You must be signed in to change notification settings - Fork 798
Item Melting Recipe JSON
Princess edited this page Feb 2, 2021
·
12 revisions
Location: .jar/data/tconstruct/recipes/smeltery/melting/
type
: Must be "tconstruct:melting"
.
ingredient
: Ingredient. Item to be melted.
result
: FluidStack. Output fluid from the recipe.
temperature
: Integer. Minimum temperature of the fuel to melt the item.
time
: Time to melt the item. In ticks.
{
"type": "tconstruct:melting",
"ingredient": {
"tag": "forge:ingots/copper"
},
"result": {
"fluid": "tconstruct:molten_copper",
"amount": 144
},
"temperature": 500,
"time": 50
}
Location: .jar/data/tconstruct/recipes/smeltery/melting/
An extension of item melting. Uses the same keys, but boosts the recipe's output based on the smeltery.
type
: Must be "tconstruct:ore_melting"
.
{
"type": "tconstruct:ore_melting",
"ingredient": {
"tag": "forge:ores/cobalt"
},
"result": {
"fluid": "tconstruct:molten_cobalt",
"amount": 144
},
"temperature": 1300,
"time": 112
}
Location: .jar/data/tconstruct/recipes//tools/parts/melting/
type
: Must be "tconstruct:material_melting"
.
item
: IMaterialItem. Tool part to melt.
item_cost
: Integer. The amount of baseline "ingots" to output.
{
"type": "tconstruct:material_melting",
"item": "tconstruct:kama_head",
"item_cost": 2
}