Some recipe changes (#1003)

* misc recipes

* add saw to jar lid recipe

* revert table salt name changing that didn't work
This commit is contained in:
Risuga 2025-05-14 11:42:32 -07:00 committed by GitHub
parent 9c258d452f
commit 165cc8d2cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 2 deletions

View file

@ -1,6 +1,8 @@
# Changelog
## [Unreleased]
### Changes
- Changed wooden tongs recipe from shapeless to shaped (Oosyrag)
- Added crafting recipe for tin jar lids (Oosyrag)
- Rebalanced the Large Boilers so now they consume WAY less fuel, so lava is no longer basically mandatory - see [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/pull/977) for the full math (Oosyrag)
- Greenhouse ports and sprinklers now work directly with gregtech pipes (Thomasx0)
- Added recipes for stainless steel greenhouse parts (Pyritie)

View file

@ -58,7 +58,7 @@
{
"type": "patchouli:crafting",
"recipe": "tfchotornot:crafting/tongs/wood",
"text": "Careful, the vessel will be hot! Craft $(thing)Wooden Tongs$() with two sticks and a knife and hold them in your off hand to handle the hot vessel safely. (This is a $(thing)Shapeless Recipe$(), you can make it in your inventory crafting grid)"
"text": "Careful, the vessel will be hot! Craft $(thing)Wooden Tongs$() with two sticks and a knife and hold them in your off hand to handle the hot vessel safely."
},
{
"type": "patchouli:image",

View file

@ -1,5 +1,14 @@
// priority: 0
const registerHotOrNotRecipes = (event) => {
event.shaped('tfchotornot:tongs/wood', [
'AB ',
'B ',
' '
], {
A: '#forge:tools/knives',
B: '#forge:rods/wooden'
}).id('tfchotornot:crafting/tongs/wood')
}

View file

@ -324,4 +324,13 @@ const registerTFCRecipes = (event) => {
.circuit(6)
.EUt(GTValues.VA[GTValues.ULV])
});
// Jar lids
event.shapeless('8x tfc:jar_lid', [
'gtceu:tin_ingot',
'#forge:tools/hammers',
'#forge:tools/saws'
]).id('tfc:shapeless/jar_lid')
}