neuralgia/kubejs/startup_scripts/create/constants.js
Ujhik 00a61f8f0d
feature: Add create casings, shadow and radiance (#2256)
* feature: Add create casings, shadow and radiance

Added recipes for create:
- shadow steel casing
- refined radiance casing

closes #2224

* fix: radiant casing recipe

- Fixed and changed radiant casing recipe
- Moved adding to create tab logic to a dedicated file for organization
- Added constants.js for tab names to prevent typos and improve maintainability

* Changed radiant casing recipe to glowstone plate

---------

Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
2025-11-22 14:09:58 -06:00

81 lines
2.1 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: 0
"use strict";
/**
* Список хранит предметы,
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
*/
global.CREATE_DISABLED_ITEMS = [
// Ores
'create:zinc_ore',
'create:deepslate_zinc_ore',
// Raw Ores
'create:raw_zinc',
// Raw Block Ores
'create:raw_zinc_block',
// Sheets
'create:iron_sheet',
// Flour
'create:wheat_flour',
'create:wheat_flour',
// Blocks
'create:andesite_alloy_block',
'create:experience_block',
// Cardboard (create 6)
'create:cardboard_chestplate',
'create:cardboard_helmet',
'create:cardboard_leggings',
'create:cardboard_boots',
'create:cardboard_sword',
'create:pulp',
// Other
'create:honey_bucket',
'create:chocolate_bucket',
'create:crushed_raw_quicksilver',
'create:crushed_raw_aluminum',
'create:crushed_raw_uranium',
'create:crushed_raw_nickel',
'create:creative_blaze_cake',
'create:blaze_cake',
'create:blaze_cake_base',
'create:sturdy_sheet',
'create:polished_rose_quartz',
'create:cinder_flour',
'create:dough',
'create:bar_of_chocolate',
'create:sweet_roll',
'create:chocolate_glazed_berries',
'create:honeyed_apple',
'create:builders_tea',
'create:andesite_alloy',
'create:chromatic_compound',
'create:shadow_steel',
'create:refined_radiance',
'create:crushed_raw_platinum',
'create:crushed_raw_osmium',
'create:crushed_raw_iron',
'create:experience_nugget',
'create:tree_fertilizer',
'create:handheld_worldshaper',
'create:creative_crate',
'create:creative_fluid_tank',
'create:unprocessed_obsidian_sheet',
'create:creative_motor',
'create:wooden_bracket',
'create:red_sand_paper',
'create:empty_blaze_burner',
'create:minecart_contraption',
'create:furnace_minecart_contraption',
'create:chest_minecart_contraption',
'create:mechanical_pump',
'create:peculiar_bell',
'create:haunted_bell',
'create:adjustable_chain_gearshift'
];