forked from Sparks-and-Rotation/woodencog
-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Manwe edited this page Feb 18, 2026
·
5 revisions
This mod also adds to heated recipes, they work as the create recipes.
-
temperatureSet item output temperature -
copyheatEnables the recipe to copy the heat of the input item (if enabled ignores temperature key) -
coolingAmount of temperature cooled by the recipe (only if copyheat enabled)
woodencog:heated_pressing
woodencog:heated_mixing
woodencog:heated_compacting
Example:
{
"type": "woodencog:heated_mixing",
"heatRequirement": 1060,
"ingredients": [
{
"type": "woodencog:heated",
"ingredient": {
"item": "tfc:metal/ingot/gold"
},
"max_temp": 3000,
"min_temp": 1060
}
],
"results": [
{
"amount": 100,
"fluid": "tfc:metal/gold"
}
]
}{
"type": "woodencog:heated_pressing",
"ingredients": [
{
"type": "woodencog:heated",
"ingredient": {
"item": "tfc:metal/double_ingot/gold"
},
"max_temp": 3000,
"min_temp": 636
}
],
"results": [
{
"type": "heated",
"cooling": 0,
"copy_heat": true,
"item": "tfc:metal/sheet/gold",
"temperature": 0
}
]
}{
"type": "woodencog:heated_compacting",
"ingredients": [
{
"type": "woodencog:heated",
"ingredient": {
"item": "tfc:metal/ingot/gold"
},
"max_temp": 3000,
"min_temp": 848
},
{
"type": "woodencog:heated",
"ingredient": {
"item": "tfc:metal/ingot/gold"
},
"max_temp": 3000,
"min_temp": 848
},
{
"type": "woodencog:heated",
"ingredient": {
"item": "tfc:powder/flux"
},
"max_temp": 3000
}
],
"results": [
{
"type": "heated",
"cooling": 0,
"copy_heat": true,
"item": "tfc:metal/double_ingot/gold",
"temperature": 0
}
]
}{
"type": "woodencog:heated_mixing",
"ingredients": [
{
"type": "woodencog:food",
"ingredient": {
"item": "tfc:food/maize_bread"
}
},
{
"type": "woodencog:food",
"ingredient": {
"item": "tfc:food/maize_bread"
}
},
{
"type": "woodencog:food",
"ingredient": {
"tag": "tfc:foods/usable_in_jam_sandwich"
}
},
{
"type": "woodencog:food",
"ingredient": {
"tag": "tfc:foods/usable_in_jam_sandwich"
}
},
{
"type": "woodencog:food",
"ingredient": {
"tag": "tfc:foods/preserves"
}
}
],
"results": [
{
"type": "food",
"count": 2,
"food_data": {
"decay_modifier": 4.5,
"hunger": 4,
"saturation": 1.0,
"water": 0.5
},
"item": "tfc:food/maize_bread_jam_sandwich",
"portions": [
{
"nutrient_modifier": 0.8,
"saturation_modifier": 0.8,
"water_modifier": 0.8
},
{
"nutrient_modifier": 0.5,
"saturation_modifier": 0.5,
"water_modifier": 0.5
}
]
}
]
}Results can be of type food, soup or salad Soup and salad nutritional values are dynamicaly calculated
"results": [
{
"type": "soup",
"count": 3,
"item": "minecraft:bowl"
}
]
"results": [
{
"type": "salad",
"item": "minecraft:bowl"
}
]