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:
parent
9c258d452f
commit
165cc8d2cd
4 changed files with 22 additions and 2 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Changes
|
### 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)
|
- 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)
|
- Greenhouse ports and sprinklers now work directly with gregtech pipes (Thomasx0)
|
||||||
- Added recipes for stainless steel greenhouse parts (Pyritie)
|
- Added recipes for stainless steel greenhouse parts (Pyritie)
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
{
|
{
|
||||||
"type": "patchouli:crafting",
|
"type": "patchouli:crafting",
|
||||||
"recipe": "tfchotornot:crafting/tongs/wood",
|
"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",
|
"type": "patchouli:image",
|
||||||
|
|
|
||||||
|
|
@ -2,4 +2,13 @@
|
||||||
|
|
||||||
const registerHotOrNotRecipes = (event) => {
|
const registerHotOrNotRecipes = (event) => {
|
||||||
|
|
||||||
|
event.shaped('tfchotornot:tongs/wood', [
|
||||||
|
'AB ',
|
||||||
|
'B ',
|
||||||
|
' '
|
||||||
|
], {
|
||||||
|
A: '#forge:tools/knives',
|
||||||
|
B: '#forge:rods/wooden'
|
||||||
|
}).id('tfchotornot:crafting/tongs/wood')
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -324,4 +324,13 @@ const registerTFCRecipes = (event) => {
|
||||||
.circuit(6)
|
.circuit(6)
|
||||||
.EUt(GTValues.VA[GTValues.ULV])
|
.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')
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue