Add assembler and smelting recipes for firmalife ovens (#2220)

* Add assembler and smelting recipes for firmalife ovens

* Add oven heating recipes

* Update ids and changelog

---------

Signed-off-by: Redeix <brayden.j.m.ford@gmail.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
Spicy Noodles 2025-11-21 05:29:31 +00:00 committed by GitHub
parent 1a3ae0f4e7
commit 0abf0c3357
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 39 additions and 0 deletions

View file

@ -1015,4 +1015,21 @@ const registerFirmaLifeRecipes = (event) => {
},
"duration": 16000
}).id('tfg:barrel/shosha_wheel')
// #region Oven heating recipes
event.recipes.tfc.heating(`firmalife:oven_top`, 1399)
.resultItem(`firmalife:cured_oven_top`)
.id(`tfg:heating/oven_top`)
event.recipes.tfc.heating(`firmalife:oven_chimney`, 1399)
.resultItem(`firmalife:cured_oven_chimney`)
.id(`tfg:heating/oven_chimney`)
event.recipes.tfc.heating(`firmalife:oven_bottom`, 1399)
.resultItem(`firmalife:cured_oven_bottom`)
.id(`tfg:heating/oven_bottom`)
event.recipes.tfc.heating(`firmalife:oven_hopper`, 1399)
.resultItem(`firmalife:cured_oven_hopper`)
.id(`tfg:heating/oven_hopper`)
// #endregion
}