Skip to content

Commit

Permalink
fix(recipes): ✏️[Gas Turbine Controller] buff all fuels x1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Krutoy242 committed Feb 27, 2024
1 parent 17e4ba2 commit ba5914a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
42 changes: 21 additions & 21 deletions config/AdvGenerators/overrides/turbine.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -127,25 +127,25 @@ recipes {

// MJ per mB, not counting FuelConsumptionMultiplier

turbine-fuel: gasoline 10 MJ/mB
turbine-fuel: canolaoil 20 MJ/mB
turbine-fuel: refinedcanolaoil 40 MJ/mB
turbine-fuel: oil 50 MJ/mB
turbine-fuel: biomass 60 MJ/mB
turbine-fuel: biodiesel 80 MJ/mB
turbine-fuel: crystaloil 80 MJ/mB
turbine-fuel: ic2biogas 100 MJ/mB
turbine-fuel: diesel 140 MJ/mB
turbine-fuel: "bio.ethanol" 180 MJ/mB
turbine-fuel: biofuel 180 MJ/mB
turbine-fuel: refined_oil 190 MJ/mB // thermal foundation naphta
turbine-fuel: rocket_fuel 190 MJ/mB
turbine-fuel: ethene 320 MJ/mB
turbine-fuel: liquidethene 320 MJ/mB
turbine-fuel: syngas 400 MJ/mB
turbine-fuel: refined_fuel 210 MJ/mB
turbine-fuel: empoweredoil 240 MJ/mB
turbine-fuel: fire_water 240 MJ/mB
turbine-fuel: rocketfuel 82000 MJ/mB
turbine-fuel: perfect_fuel 10000000 MJ/mB
turbine-fuel: gasoline 15 MJ/mB
turbine-fuel: canolaoil 30 MJ/mB
turbine-fuel: refinedcanolaoil 60 MJ/mB
turbine-fuel: oil 75 MJ/mB
turbine-fuel: biomass 90 MJ/mB
turbine-fuel: biodiesel 120 MJ/mB
turbine-fuel: crystaloil 120 MJ/mB
turbine-fuel: ic2biogas 150 MJ/mB
turbine-fuel: diesel 210 MJ/mB
turbine-fuel: "bio.ethanol" 270 MJ/mB
turbine-fuel: biofuel 270 MJ/mB
turbine-fuel: refined_oil 285 MJ/mB // thermal foundation naphta
turbine-fuel: rocket_fuel 285 MJ/mB
turbine-fuel: ethene 480 MJ/mB
turbine-fuel: liquidethene 480 MJ/mB
turbine-fuel: syngas 600 MJ/mB
turbine-fuel: refined_fuel 315 MJ/mB
turbine-fuel: empoweredoil 360 MJ/mB
turbine-fuel: fire_water 360 MJ/mB
turbine-fuel: rocketfuel 123000 MJ/mB
turbine-fuel: perfect_fuel 15000000 MJ/mB
}
38 changes: 19 additions & 19 deletions scripts/jei/mod/advgenerators.zs
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@ return `${pairs
.map(([name, mj_mb]) => ` ${name.replace(/"/g,"'").padEnd(16)}: ${Math.max(1, Math.round(common / Number(mj_mb)))},`)
.join('\n')}\n};\nval rfProduced = ${common * 10};`
} */
gasoline : 10000,
canolaoil : 5000,
refinedcanolaoil: 2500,
oil : 2000,
biomass : 1667,
biodiesel : 1250,
crystaloil : 1250,
ic2biogas : 1000,
diesel : 714,
'bio.ethanol' : 556,
biofuel : 556,
refined_oil : 526,
rocket_fuel : 526,
refined_fuel : 476,
empoweredoil : 417,
fire_water : 417,
ethene : 313,
liquidethene : 313,
syngas : 250,
gasoline : 6667,
canolaoil : 3333,
refinedcanolaoil: 1667,
oil : 1333,
biomass : 1111,
biodiesel : 833,
crystaloil : 833,
ic2biogas : 667,
diesel : 476,
'bio.ethanol' : 370,
biofuel : 370,
refined_oil : 351,
rocket_fuel : 351,
refined_fuel : 317,
empoweredoil : 278,
fire_water : 278,
ethene : 208,
liquidethene : 208,
syngas : 167,
rocketfuel : 1,
perfect_fuel : 1,
};
Expand Down

0 comments on commit ba5914a

Please sign in to comment.