neuralgia/kubejs/client_scripts/mods/firmalife.js
2024-01-10 18:55:04 +07:00

24 lines
No EOL
673 B
JavaScript

// priority: 0
const hideFirmaLifeStuff = (event) => {
global.TFC_STONE_TYPES.forEach(stoneTypeName => {
global.TFC_ORE_TYPES.forEach(oreTypeName => {
global.FIRMALIFE_ORE_MATERIALS.forEach(oreMaterialName => {
event.hide(`firmalife:ore/${oreTypeName}_${oreMaterialName}/${stoneTypeName}`)
})
})
})
global.FIRMALIFE_DISABLED_ITEMS.forEach(item => {
event.hide(item)
})
global.FIRMALIFE_HIDED_ITEMS.forEach(item => {
event.hide(item)
})
}
const hideFirmaLifeFluids = (event) => {
event.hide('firmalife:metal/chromium')
event.hide('firmalife:metal/stainless_steel')
}