Add new molds (#2470)

* Added bunch of stuff for molds

* Changed rod mold recipe to not collide with oven chimmney

Signed-off-by: glitch714 <119386229+glitchplaysgames714@users.noreply.github.com>

* Removed unneeded comments

Signed-off-by: glitch714 <119386229+glitchplaysgames714@users.noreply.github.com>

* Changed gear mold to be fireclay

* fixed issues with molds

* Added break chance

Signed-off-by: glitch714 <119386229+glitchplaysgames714@users.noreply.github.com>

* Update constants.js

Signed-off-by: Pyritie <pyritie@gmail.com>

* Update recipes.knapping.js

Signed-off-by: Pyritie <pyritie@gmail.com>

* Update recipes.materials.js

Signed-off-by: Pyritie <pyritie@gmail.com>

* Updated constants.js

Signed-off-by: glitch714 <119386229+glitchplaysgames714@users.noreply.github.com>

* Update items.primitive.js

Signed-off-by: Pyritie <pyritie@gmail.com>

* Update constants.js

Signed-off-by: Pyritie <pyritie@gmail.com>

* Update recipes.knapping.js

Signed-off-by: Pyritie <pyritie@gmail.com>

---------

Signed-off-by: glitch714 <119386229+glitchplaysgames714@users.noreply.github.com>
Signed-off-by: Pyritie <pyritie@gmail.com>
Co-authored-by: Pyritie <pyritie@gmail.com>
This commit is contained in:
glitch714 2025-12-19 13:22:29 -08:00 committed by GitHub
parent bdfbeb6851
commit 40ba6fe8b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 201 additions and 17 deletions

View file

@ -50,6 +50,10 @@ function registerTFGHeatData(event) {
event.itemHeat('tfg:food/brioche_bun', 1.0, null, null);
event.itemHeat('tfg:food/raw_burger_patty', 1.0, null, null);
event.itemHeat('tfg:food/cooked_burger_patty', 1.0, null, null);
event.itemHeat('tfg:unfired_rod_mold', 1.0, null, null);
event.itemHeat('tfg:unfired_small_gear_mold', 1.0, null, null);
event.itemHeat('tfg:unfired_nugget_mold', 1.0, null, null);
}
//#endregion
@ -312,6 +316,20 @@ function registerTFGItemSize(event) {
event.itemSize('#forge:tools/wrenches', 'very_large', 'very_heavy', 'wrenches')
event.itemSize('#forge:tools/mining_hammers', 'very_large', 'very_heavy', 'mining_hammers')
event.itemSize('#forge:tools/spades', 'very_large', 'very_heavy', 'spades')
event.itemSize(
orArray([
"tfg:unfired_rod_mold",
"tfg:unfired_small_gear_mold",
"tfg:unfired_nugget_mold",
"tfg:rod_mold",
"tfg:small_gear_mold",
"tfg:nugget_mold"
]),
"normal",
"medium",
"Molds"
)
}
//#endregion