fix steel machine recipes

This commit is contained in:
Dmitry 2024-01-06 10:18:59 +07:00
parent fd9d823aa1
commit 566407ec7e
2 changed files with 90 additions and 1 deletions

View file

@ -32,4 +32,4 @@ REIEvents.hide('fluid', event => {
hideCreateFluids(event)
hideCreateAdditionsFluids(event)
})
})

View file

@ -962,6 +962,95 @@ const registerGTCEURecipes = (event) => {
//#endregion
//#region Выход: Стальные машины
// Экстрактор
event.shaped('gtceu:hp_steam_extractor', [
'BEB',
'CAC',
'DBD'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron',
E: '#forge:glass_panes'
}).id('gtceu:shaped/steam_extractor_steel')
// Дробитель
event.shaped('gtceu:hp_steam_macerator', [
'CCC',
'BAB',
'DDD'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_macerator_steel')
// Компрессор
event.shaped('gtceu:hp_steam_compressor', [
'BCB',
'DAD',
'BBB'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_compressor_steel')
// Молот
event.shaped('gtceu:hp_steam_forge_hammer', [
'DDD',
'BAB',
'CCC'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_hammer_steel')
// Печь
event.shaped('gtceu:hp_steam_furnace', [
'BCB',
'DAD',
'BCB'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_furnace_steel')
// Сплавщик
event.shaped('gtceu:hp_steam_alloy_smelter', [
'DCD',
'DAD',
'DBD'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_alloy_smelter_steel')
// Блоко-ломатель
event.shaped('gtceu:hp_steam_rock_crusher', [
'DCD',
'BAB',
'DDD'
], {
A: 'gtceu:steel_brick_casing',
B: '#forge:fluid_pipes/small/tin_alloy',
C: '#forge:plates/steel',
D: '#forge:plates/wrought_iron'
}).id('gtceu:shaped/steam_rock_breaker_steel')
//#endregion
// Удаление рецептов связанных с Primitive Blast Furnace
event.remove({id: 'gtceu:arc_furnace/arc_primitive_blast_furnace'})
event.remove({id: 'gtceu:macerator/macerate_primitive_blast_furnace'})