firmalife integration (I suppose)
This commit is contained in:
parent
8332513790
commit
42559acf97
4 changed files with 80 additions and 2 deletions
|
|
@ -9,10 +9,13 @@ const hideFirmaLifeStuff = (event) => {
|
|||
})
|
||||
})
|
||||
|
||||
|
||||
global.FIRMALIFE_DISABLED_ITEMS.forEach(item => {
|
||||
event.hide(item)
|
||||
})
|
||||
|
||||
global.FIRMALIFE_HIDED_ITEMS.forEach(item => {
|
||||
event.hide(item)
|
||||
})
|
||||
}
|
||||
|
||||
const hideFirmaLifeFluids = (event) => {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,23 @@
|
|||
// priority: 0
|
||||
|
||||
const registerFirmaLifeRecipes = (event) => {
|
||||
|
||||
|
||||
//#region Нержавеющая теплица
|
||||
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_wall' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_panel_wall' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_panel_roof' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_roof' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_roof_top' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_trapdoor' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_door' })
|
||||
event.remove({ id: 'firmalife:crafting/greenhouse/stainless_steel_greenhouse_port' })
|
||||
|
||||
//#endregion
|
||||
|
||||
event.remove({ id: 'firmalife:crafting/compost_tumbler' })
|
||||
event.remove({ id: 'firmalife:crafting/pumping_station' })
|
||||
|
||||
// - Chromium
|
||||
|
||||
// Ingot
|
||||
|
|
|
|||
|
|
@ -1033,6 +1033,15 @@ const registerGTCEURecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: некоторые рецепты пылей
|
||||
|
||||
event.remove({id: 'gtceu:shapeless/dust_brass'})
|
||||
event.remove({id: 'gtceu:shapeless/glass_dust_flint'})
|
||||
event.remove({id: 'gtceu:shapeless/dust_bronze'})
|
||||
event.remove({id: 'gtceu:shapeless/potin_dust'})
|
||||
|
||||
//#endregion
|
||||
|
||||
// Удаление рецептов связанных с Primitive Blast Furnace
|
||||
event.remove({id: 'gtceu:arc_furnace/arc_primitive_blast_furnace'})
|
||||
event.remove({id: 'gtceu:macerator/macerate_primitive_blast_furnace'})
|
||||
|
|
|
|||
|
|
@ -33,8 +33,58 @@ global.FIRMALIFE_DISABLED_ITEMS = [
|
|||
'firmalife:metal/block/stainless_steel_slab',
|
||||
|
||||
// Other
|
||||
'firmalife:compost_tumbler',
|
||||
'firmalife:pumping_station'
|
||||
];
|
||||
|
||||
global.FIRMALIFE_HIDED_ITEMS = [
|
||||
'firmalife:weathered_copper_greenhouse_wall',
|
||||
'firmalife:weathered_copper_greenhouse_panel_wall',
|
||||
'firmalife:weathered_copper_greenhouse_panel_roof',
|
||||
'firmalife:weathered_copper_greenhouse_roof',
|
||||
'firmalife:weathered_copper_greenhouse_roof_top',
|
||||
'firmalife:weathered_copper_greenhouse_trapdoor',
|
||||
'firmalife:weathered_copper_greenhouse_door',
|
||||
'firmalife:weathered_copper_greenhouse_port',
|
||||
|
||||
'firmalife:stainless_steel_greenhouse_wall',
|
||||
'firmalife:stainless_steel_greenhouse_panel_wall',
|
||||
'firmalife:stainless_steel_greenhouse_panel_roof',
|
||||
'firmalife:stainless_steel_greenhouse_roof',
|
||||
'firmalife:stainless_steel_greenhouse_roof_top',
|
||||
'firmalife:stainless_steel_greenhouse_trapdoor',
|
||||
'firmalife:stainless_steel_greenhouse_door',
|
||||
'firmalife:stainless_steel_greenhouse_port',
|
||||
|
||||
'firmalife:rusted_iron_greenhouse_wall',
|
||||
'firmalife:rusted_iron_greenhouse_panel_wall',
|
||||
'firmalife:rusted_iron_greenhouse_panel_roof',
|
||||
'firmalife:rusted_iron_greenhouse_roof',
|
||||
'firmalife:rusted_iron_greenhouse_roof_top',
|
||||
'firmalife:rusted_iron_greenhouse_trapdoor',
|
||||
'firmalife:rusted_iron_greenhouse_door',
|
||||
'firmalife:rusted_iron_greenhouse_port',
|
||||
|
||||
'firmalife:oxidized_copper_greenhouse_wall',
|
||||
'firmalife:oxidized_copper_greenhouse_panel_wall',
|
||||
'firmalife:oxidized_copper_greenhouse_panel_roof',
|
||||
'firmalife:oxidized_copper_greenhouse_roof',
|
||||
'firmalife:oxidized_copper_greenhouse_roof_top',
|
||||
'firmalife:oxidized_copper_greenhouse_trapdoor',
|
||||
'firmalife:oxidized_copper_greenhouse_door',
|
||||
'firmalife:oxidized_copper_greenhouse_port',
|
||||
|
||||
'firmalife:exposed_copper_greenhouse_wall',
|
||||
'firmalife:exposed_copper_greenhouse_panel_wall',
|
||||
'firmalife:exposed_copper_greenhouse_panel_roof',
|
||||
'firmalife:exposed_copper_greenhouse_roof',
|
||||
'firmalife:exposed_copper_greenhouse_roof_top',
|
||||
'firmalife:exposed_copper_greenhouse_trapdoor',
|
||||
'firmalife:exposed_copper_greenhouse_door',
|
||||
'firmalife:exposed_copper_greenhouse_port',
|
||||
];
|
||||
|
||||
|
||||
global.FIRMALIFE_ORE_MATERIALS = [
|
||||
'chromite'
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue