lots of changes, I lsot track

This commit is contained in:
2025-05-24 19:19:55 +02:00
parent b092ef3170
commit 3fab0664bc
58 changed files with 1235 additions and 1196 deletions

View File

@ -29,6 +29,17 @@ ServerEvents.recipes(event => {
'#kubejs:grist/intelligent/basic'
);
// Gate the mixer behind aluminum
event.replaceInput({output: 'create:whisk'},
'#forge:plates/iron',
'#forge:plates/aluminum'
);
event.replaceInput({output: 'create:propeller'},
'#forge:plates/iron',
'#forge:plates/invar'
);
// Allow certus quartz to be used for rose quartz
event.replaceInput({output: 'create:rose_quartz'},
'minecraft:quartz',

View File

@ -33,12 +33,12 @@ ServerEvents.recipes(event => {
event.recipes.thermal.pulverizer_catalyst('kubejs:grist_build_radiant').primaryMod(5.0).secondaryMod(6.0).energyMod(1.1).useChance(0.1);
// Steel is used mostly for early solar, it shouldn't be so hard to make
event.recipes.thermal.smelter('4x thermal:steel_ingot', ["minecraft:charcoal", global.ingotItem('iron', 4)]);
/*event.recipes.thermal.smelter('4x thermal:steel_ingot', ["minecraft:charcoal", global.ingotItem('iron', 4)]);
event.recipes.thermal.smelter('4x thermal:steel_ingot', ["minecraft:charcoal", '4x #forge:dusts/iron']);
event.recipes.thermal.smelter('thermal:steel_ingot', ["#minecraft:logs_that_burn", global.ingotItem('iron')]);
event.recipes.thermal.smelter('thermal:steel_ingot', ["#minecraft:logs_that_burn", '#forge:dusts/iron']);
event.recipes.thermal.smelter('thermal:steel_block', ['thermal:charcoal_block', global.ingotItem('iron', 9)]);
event.recipes.thermal.smelter('thermal:steel_block', ['thermal:charcoal_block', '9x #forge:dusts/iron']);
event.recipes.thermal.smelter('thermal:steel_block', ['thermal:charcoal_block', '9x #forge:dusts/iron']);*/
// The flux tools can be very easily OP after upgrades and enchants, make them mid-game
event.replaceInput(
@ -131,7 +131,16 @@ ServerEvents.recipes(event => {
event.replaceInput(
{id: 'thermal:device_fisher'},
'forge:gears/copper',
'#forge:gears/copper',
'#kubejs:grist/agricultural/basic'
);
// Pulverizer is gated behind brass, which requires create
/*event.replaceInput(
{id: 'thermal:machine_pulverizer'},
'#forge:gears/brass',
'#kubejs:grist/agricultural/basic'
);*/
// Centrifuge comes already gated behind constantan
});