Created utility function to add circuit numbers to pre-existing recipes (#1320)

* - Yeast recipe conflict fix

* - Fixed seed oil voiding in barrels. And item weight inconsistency.

* - Reduced loading screen logo size by 4MB

* - Update Changelog

* - Compressed loading screen images to maybe help with ram

* - Added default gui scale to make the main menu look better on first launch

* - Update Changelog

* - Added utility script for adding circuits to existing recipes

* fixed changelog conflict

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>

---------

Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>
This commit is contained in:
Redeix 2025-07-14 04:10:37 -05:00 committed by GitHub
parent 4c2d71ad25
commit 911ede670a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 139 additions and 25 deletions

View file

@ -1,7 +1,9 @@
// priority: 0
//#region Disabled Items
/** @global */
global.GTCEU_DISABLED_ITEMS = [
// Пыль пшеницы
// Пыль пшеницы (Wheat Dusts)
'gtceu:wheat_dust',
'gtceu:small_wheat_dust',
'gtceu:tiny_wheat_dust',
@ -22,14 +24,14 @@ global.GTCEU_DISABLED_ITEMS = [
'gtceu:lp_steam_solar_boiler',
'gtceu:charcoal_pile_igniter',
// Примитивная помпа
// Примитивная помпа (Primitive Pump)
'gtceu:infinite_water_cover',
'gtceu:ender_fluid_link_cover',
'gtceu:pump_deck',
'gtceu:pump_hatch',
'gtceu:primitive_pump',
// Другое
// Другое (Other)
'gtceu:flint_mortar',
'gtceu:flint_knife',
'gtceu:firebrick',
@ -175,7 +177,11 @@ global.GTCEU_DISABLED_ITEMS = [
'gtceu:cracked_marble_bricks',
'gtceu:mossy_marble_bricks'
];
//#endregion
//#region Hidden Items
/** @global */
global.GTCEU_HIDED_ITEMS = [
'gtceu:netherrack_dust',
'gtceu:small_netherrack_dust',
@ -183,7 +189,10 @@ global.GTCEU_HIDED_ITEMS = [
'gtceu:sus_record'
];
//#endregion
//#region Armor
/** @global */
global.GTCEU_ARMORS = [
'gtceu:hazmat_chestpiece',
'gtceu:hazmat_leggings',
@ -201,7 +210,10 @@ global.GTCEU_ARMORS = [
'gtceu:quarktech_helmet',
'gtceu:advanced_quarktech_chestplate'
];
//#endregion
//#region Extruder Molds
/** @global */
global.TFG_EXTRUDER_MOLDS = [
'tfg:mining_hammer_head_extruder_mold',
'tfg:sword_head_extruder_mold',
@ -230,14 +242,20 @@ global.TFG_EXTRUDER_MOLDS = [
'tfg:shell_casing_extruder_mold',
'tfg:large_casing_extruder_mold'
];
//#endregion
//#region Casting Molds
/** @global */
global.TFG_CASTING_MOLDS = [
'tfg:lamp_casting_mold',
'tfg:trapdoor_casting_mold',
'tfg:chain_casting_mold',
'tfg:bell_casting_mold'
];
//#endregion
//#region Ore Bearing Stone
/** @global */
global.ORE_BEARING_STONES = [
'gabbro',
'shale',
@ -271,4 +289,13 @@ global.ORE_BEARING_STONES = [
'mercury_stone',
'glacio_stone'
];
//#endregion
//#region Add Circuits
/** @global */
global.ADD_CIRCUIT = [
{recipeId: 'gtceu:chemical_reactor/tetrafluoroethylene_from_chloroform', circuitNumber: 1},
{recipeId: 'gtceu:chemical_reactor/hydrofluoric_acid_from_elements', circuitNumber: 2},
];
//#endregion