thermal: add a good mid-game biofuel processing line based on industrialforegoing

This commit is contained in:
2025-07-13 16:40:13 +02:00
parent fd5d608139
commit fc9780def5
6 changed files with 19 additions and 17 deletions

View File

@@ -147,12 +147,15 @@ ServerEvents.recipes(event => {
'thermal:niter_dust'
]);
// Pulverizer is gated behind brass, which requires create
/*event.replaceInput(
{id: 'thermal:machine_pulverizer'},
'#forge:gears/brass',
'#kubejs:grist/agricultural/basic'
);*/
// thermal processing line for creating biofuel
// 1000mb of biofuel should then produce 1000mb of refined fuel after another step of processing, which seems balanced
event.recipes.thermal.refinery(
[Fluid.of('thermal:light_oil', 75), Fluid.of('thermal:heavy_oil', 25)],
Fluid.of('industrialforegoing:biofuel', 100)
);
// Centrifuge comes already gated behind constantan
// Make industrial foregoing biofuel work in compression dynamo
// 1 bucket refined fuel = 1.5M RF
// 1 bucket biofuel = 640k RF
event.recipes.thermal.compression_fuel('industrialforegoing:biofuel').energy(640000);
});