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

@ -158,4 +158,12 @@ function registerTFGClayRecipes(event) {
.adjacentFluids(["tfc:salt_water", "tfc:spring_water"])
.duration(50)
.EUt(GTValues.VA[GTValues.LV])
// heating
event.recipes.tfc.heating('tfg:unfired_rod_mold', 1399)
.resultItem('tfg:rod_mold')
event.recipes.tfc.heating('tfg:unfired_small_gear_mold', 1399)
.resultItem('tfg:small_gear_mold')
event.recipes.tfc.heating('tfg:unfired_nugget_mold', 1399)
.resultItem('tfg:nugget_mold')
}

View file

@ -212,7 +212,6 @@ function registerTFGKnappingRecipes(event) {
"XXX",
"XXX",
"XXX"
])
.ingredient('tfc:straw')
.outsideSlotRequired(false)
@ -223,10 +222,40 @@ function registerTFGKnappingRecipes(event) {
event.recipes.tfc.knapping('tfcambiental:straw_hat', 'tfg:straw', [
" XXX ",
"XXXXX"
])
.ingredient('tfc:straw')
.outsideSlotRequired(false)
.id('sns:straw_knapping/straw_hat')
// Molds
event.recipes.tfc.knapping('tfg:unfired_rod_mold', 'tfc:fire_clay', [
"XXXXX",
"XXX X",
"XX XX",
"X XXX",
"XXXXX"
])
.ingredient('5x tfc:fire_clay')
.id('tfg:fire_clay_knapping/unfired_rod_mold')
event.recipes.tfc.knapping('tfg:unfired_small_gear_mold', 'tfc:fire_clay', [
"XX XX",
"X X",
" X ",
"X X",
"XX XX"
])
.ingredient('5x tfc:fire_clay')
.id('tfg:fire_clay_knapping/unfired_small_gear_mold')
event.recipes.tfc.knapping('tfg:unfired_nugget_mold', 'tfc:clay', [
"XXXXX",
"X X X",
"XXXXX",
"X X X",
"XXXXX"
])
.ingredient('5x minecraft:clay_ball')
.id('tfg:fire_clay_knapping/unfired_nugget_mold')
}
}