hide firmaciv shit

This commit is contained in:
Dmitry 2024-01-01 13:43:47 +07:00
parent f8acc92f24
commit ba16c37b6f
3 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,8 @@
// priority: 0
const hideFirmaLifeStuff = (event) => {
global.FIRMACIV_DISABLED_ITEMS.forEach(item => {
event.hide(item)
})
}

View file

@ -3,6 +3,8 @@
const registerFirmaCivRecipes = (event) => { const registerFirmaCivRecipes = (event) => {
event.remove({ id: '/firmaciv:quern/' }) event.remove({ id: '/firmaciv:quern/' })
event.remove({ id: 'firmaciv:anvil/copper_bolt' })
event.recipes.tfc.heating('firmaciv:oarlock', 1535) event.recipes.tfc.heating('firmaciv:oarlock', 1535)
.resultFluid(Fluid.of('tfc:metal/cast_iron', 288)) .resultFluid(Fluid.of('tfc:metal/cast_iron', 288))

View file

@ -0,0 +1,14 @@
// priority: 0
/**
* Список хранит предметы,
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
*/
global.FIRMACIV_DISABLED_ITEMS = [
'firmaciv:copper_bolt',
'firmaciv:kayak_with_paddle_icon_only',
'firmaciv:canoe_icon_only',
'firmaciv:canoe_with_paddle_icon_only',
'firmaciv:rowboat_icon_only',
'firmaciv:wood/canoe_component_block/mangrove'
];