-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathcombustion_rebalancing.js
More file actions
33 lines (28 loc) · 1.3 KB
/
combustion_rebalancing.js
File metadata and controls
33 lines (28 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* Replaces some base GregTech combustion recipes with more balanced versions.
* Well, "balanced" in a pack where synthetic Octane and JEAN exist.
*/
ServerEvents.recipes(event => {
// For a reference point, Gasoline is 50 ticks per mB or 1600 EU/mB.
// Similarly, High Octane Gasoline is 100 ticks per mB or 3200 EU/mB.
event.recipes.gtceu.combustion_generator("naphtha")
.inputFluids("gtceu:naphtha 1")
.duration(8) // 20% less than default GT
.EUt(-GTValues.V[GTValues.LV])
event.recipes.gtceu.combustion_generator("biodiesel")
.inputFluids("gtceu:bio_diesel 1")
.duration(15) // 87.5% more than default GT
.EUt(-GTValues.V[GTValues.LV])
event.recipes.gtceu.combustion_generator("diesel")
.inputFluids("gtceu:diesel 1")
.duration(20) // 33% more than default GT
.EUt(-GTValues.V[GTValues.LV])
event.recipes.gtceu.combustion_generator("cetane_diesel")
.inputFluids("gtceu:cetane_boosted_diesel 1") // -50% cost compared to default GT
.duration(45)
.EUt(-GTValues.V[GTValues.LV])
event.recipes.gtceu.combustion_generator("rocket_fuel")
.inputFluids("gtceu:rocket_fuel 8") // -50% cost compared to default GT
.duration(125)
.EUt(-GTValues.V[GTValues.LV])
})