Double the amount of energy produced by chemical generator from fuels

This commit is contained in:
DBotThePony 2024-01-08 00:11:26 +07:00
parent 54a6f9f152
commit 7d08b90020
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -70,7 +70,7 @@ object MachinesConfig : AbstractConfig("machines") {
private val CHEMICAL_GENERATOR = workerValues(
MNames.CHEMICAL_GENERATOR,
energyStorage = Decimal(24_000),
energyStorage = Decimal(32_000),
energyThroughput = Decimal(160),
energyConsumption = Decimal(40),
workTimeMultiplier = null
@ -80,7 +80,7 @@ object MachinesConfig : AbstractConfig("machines") {
object ChemicalGenerator {
val VALUES by ::CHEMICAL_GENERATOR
val RATIO: Int by builder.comment("This amount of burn ticks result in 1 generation tick").defineInRange("RATIO", 4, 0)
val RATIO: Int by builder.comment("This amount of burn ticks result in 1 generation tick").defineInRange("RATIO", 2, 0)
}
object MatterBottler {