changing some other recipes to use bolts instead of nuggets

This commit is contained in:
Pyritie 2025-07-01 02:39:34 +01:00
parent be7995a04e
commit f36e7b860f
4 changed files with 12 additions and 12 deletions

View file

@ -451,7 +451,7 @@ const registerAdAstraRecipes = (event) => {
'DTD',
' P '
], {
N: '#forge:nuggets/steel',
N: '#forge:bolts/steel',
T: 'minecraft:glowstone',
D: `minecraft:${color}_stained_glass_pane`,
P: '#forge:rods/steel'

View file

@ -1297,7 +1297,7 @@ const registerCreateRecipes = (event) => {
'BBB'
], {
A: '#forge:plates/wrought_iron',
B: '#forge:nuggets/wrought_iron'
B: '#forge:bolts/wrought_iron'
}).id('tfg:create/shaped/metal_girder')
// Стеклянная дверь

View file

@ -79,7 +79,7 @@ const registerCreatedecoRecipes = (event) => {
let ingredients = {
T: `minecraft:glowstone`,
N: `#forge:nuggets/${replacementLampType}`,
N: `#forge:bolts/${replacementLampType}`,
P: `#forge:plates/${replacementLampType}`,
D: null,
X: null
@ -97,15 +97,15 @@ const registerCreatedecoRecipes = (event) => {
}
if (lampType === 'iron') {
ingredients.N = '#forge:nuggets/wrought_iron';
ingredients.N = '#forge:bolts/wrought_iron';
ingredients.P = '#forge:plates/wrought_iron';
}
if (lampType === 'andesite') {
ingredients.N = '#forge:nuggets/tin_alloy';
ingredients.N = '#forge:bolts/tin_alloy';
ingredients.P = '#forge:plates/tin_alloy';
}
if (lampType === 'industrial_iron') {
ingredients.N = '#forge:nuggets/steel';
ingredients.N = '#forge:bolts/steel';
ingredients.P = '#forge:plates/steel';
}

View file

@ -208,13 +208,13 @@ const registerRailWaysRecipes = (event) => {
'DA '
], {
A: '#forge:storage_blocks/charcoal',
B: '#forge:nuggets/black_steel',
B: '#forge:bolts/black_steel',
C: '#forge:plates/black_steel',
D: '#forge:tools/hammers'
}).id('tfg:railways/shaped/smokestack_caboosestyle')
event.recipes.gtceu.assembler('tfg:railways/smokestack_caboosestyle')
.itemInputs('#forge:storage_blocks/charcoal', '2x #forge:nuggets/black_steel', '#forge:plates/black_steel')
.itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/black_steel', '#forge:plates/black_steel')
.circuit(4)
.itemOutputs('railways:smokestack_caboosestyle')
.duration(200)
@ -226,12 +226,12 @@ const registerRailWaysRecipes = (event) => {
'BAB'
], {
A: '#forge:storage_blocks/charcoal',
B: '#forge:nuggets/black_steel',
B: '#forge:bolts/black_steel',
C: '#forge:tools/hammers'
}).id('tfg:railways/shaped/smokestack_long')
event.recipes.gtceu.assembler('tfg:railways/smokestack_long')
.itemInputs('#forge:storage_blocks/charcoal', '2x #forge:nuggets/black_steel')
.itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/black_steel')
.circuit(5)
.itemOutputs('railways:smokestack_long')
.duration(200)
@ -297,12 +297,12 @@ const registerRailWaysRecipes = (event) => {
], {
A: '#forge:storage_blocks/charcoal',
B: '#forge:plates/black_steel',
C: '#forge:nuggets/black_steel',
C: '#forge:bolts/black_steel',
D: '#forge:tools/hammers'
}).id('tfg:railways/shaped/smokestack_woodburner')
event.recipes.gtceu.assembler('tfg:railways/smokestack_woodburner')
.itemInputs('#forge:storage_blocks/charcoal', '3x #forge:plates/black_steel', '2x #forge:nuggets/black_steel')
.itemInputs('#forge:storage_blocks/charcoal', '3x #forge:plates/black_steel', '2x #forge:bolts/black_steel')
.circuit(9)
.itemOutputs('railways:smokestack_woodburner')
.duration(200)