diff --git a/CHANGELOG.md b/CHANGELOG.md index 904dcac3b..3acc7cf26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/finding_ores.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/finding_ores.json index 8b6fabe05..1fd784c67 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/finding_ores.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/finding_ores.json @@ -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", diff --git a/kubejs/server_scripts/hotornot/recipes.js b/kubejs/server_scripts/hotornot/recipes.js index 5ceac71f8..9db1a3a67 100644 --- a/kubejs/server_scripts/hotornot/recipes.js +++ b/kubejs/server_scripts/hotornot/recipes.js @@ -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') + } \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 5f2c122ac..123b5d7ef 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -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') + }