neuralgia/kubejs/startup_scripts/firmalife/constants.js
Redeix 900e1de8e9
The big green PR (#2694)
* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* firmalife gh stuff

* chloroplasts and brick regex

* gh recipes

* pisciculture fishery

* I am going insane

* more casings = more gooder

* rotten voiding cover

* greenhouse glory

* Is this it chat

* not needed

Signed-off-by: Redeix <redeix.m@gmail.com>

* missed in conflicts

Signed-off-by: Redeix <redeix.m@gmail.com>

* consumerism

* re-add tag import

* remove unused object map

* id normalizer function

---------

Signed-off-by: Redeix <redeix.m@gmail.com>
2026-01-10 19:30:46 -06:00

128 lines
No EOL
5.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// priority: -100
"use strict";
/**
* Список хранит предметы,
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
*/
global.FIRMALIFE_DISABLED_ITEMS = [
// Chromite
'firmalife:metal/ingot/chromium',
'firmalife:metal/double_ingot/chromium',
'firmalife:metal/sheet/chromium',
'firmalife:metal/double_sheet/chromium',
'firmalife:metal/rod/chromium',
'firmalife:metal/bucket/chromium',
// Stainless Steel
'firmalife:metal/ingot/stainless_steel',
'firmalife:metal/double_ingot/stainless_steel',
'firmalife:metal/sheet/stainless_steel',
'firmalife:metal/double_sheet/stainless_steel',
'firmalife:metal/rod/stainless_steel',
'firmalife:metal/bucket/stainless_steel',
// Other
'firmalife:compost_tumbler',
// Greenhouse shit
'firmalife:pumping_station',
'firmalife:copper_pipe',
'firmalife:oxidized_copper_pipe',
'firmalife:irrigation_tank',
// disabled so people use tongs instead
'firmalife:peel',
'firmalife:bucket/chocolate',
'firmalife:bucket/fruity_fluid',
'firmalife:bucket/metal/chromium',
'firmalife:bucket/metal/stainless_steel'
];
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: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',
'firmalife:weathered_treated_wood_greenhouse_wall',
'firmalife:weathered_treated_wood_greenhouse_panel_wall',
'firmalife:weathered_treated_wood_greenhouse_panel_roof',
'firmalife:weathered_treated_wood_greenhouse_roof',
'firmalife:weathered_treated_wood_greenhouse_roof_top',
'firmalife:weathered_treated_wood_greenhouse_trapdoor',
'firmalife:weathered_treated_wood_greenhouse_door',
'firmalife:weathered_treated_wood_greenhouse_port'
];
global.FIRMALIFE_ORE_MATERIALS = [
'chromite'
];
global.FIRMALIFE_JAMS = [
"fig",
"pineapple",
"red_grapes",
"white_grapes"
]
global.FIRMALIFE_GREENHOUSE_FRUIT_RECIPE_COMPONENTS = [
{ input: 'firmalife:plant/cocoa_sapling', output: 'firmalife:food/cocoa_beans'},
{ input: 'firmalife:plant/fig_sapling', output: 'firmalife:food/fig'},
{ input: 'firmalife:plant/pineapple_bush', output: 'firmalife:food/pineapple'},
{ input: 'firmalife:plant/nightshade_bush', output: 'firmalife:food/nightshade_berry'},
{ input: 'firmalife:seeds/red_grape', output: 'firmalife:food/red_grapes'},
{ input: 'firmalife:seeds/white_grape', output: 'firmalife:food/white_grapes'}
];
global.FIRMALIFE_COOKING_RECIPE_COMPONENTS = [
{ input: 'firmalife:food/white_chocolate_blend', output: 'firmalife:food/white_chocolate', name: 'white_chocolate' },
{ input: 'firmalife:food/dark_chocolate_blend', output: 'firmalife:food/dark_chocolate', name: 'dark_chocolate' },
{ input: 'firmalife:food/milk_chocolate_blend', output: 'firmalife:food/milk_chocolate', name: 'milk_chocolate' },
{ input: 'firmalife:food/raw_pizza', output: 'firmalife:food/cooked_pizza', name: 'cooked_pizza' },
{ input: 'firmalife:food/corn_tortilla', output: 'firmalife:food/taco_shell', name: 'taco_shell' },
{ input: 'firmalife:food/cookie_dough', output: 'firmalife:food/sugar_cookie', name: 'sugar_cookie' },
{ input: 'firmalife:food/chocolate_chip_cookie_dough', output: 'firmalife:food/chocolate_chip_cookie', name: 'chocolate_chip_cookie' },
{ input: 'firmalife:food/hardtack_dough', output: 'firmalife:food/hardtack', name: 'hardtack' },
{ input: 'firmalife:food/filled_pie', output: 'firmalife:food/cooked_pie', name: 'cooked_pie' },
{ input: 'firmalife:food/cocoa_beans', output: 'firmalife:food/roasted_cocoa_beans', name: 'roasted_cocoa_beans' },
{ input: 'firmalife:food/raw_pumpkin_pie', output: 'minecraft:pumpkin_pie', name: 'pumpkin_pie' },
{ input: 'tfc:food/soybean', output: 'firmalife:food/dehydrated_soybeans', name: 'dehydrated_soybeans' },
{ input: 'firmalife:food/raw_lasagna', output: 'firmalife:food/cooked_lasagna', name: 'cooked_lasagna' },
{ input: 'firmalife:food/bacon', output: 'firmalife:food/cooked_bacon', name: 'cooked_bacon' },
{ input: '#firmalife:foods/slices', output: 'firmalife:food/toast', name: 'toast' }
];