neuralgia/kubejs/startup_scripts/tfg/materials.power_rework.js
TomPlop 6c4775d58e
Balance early power (#2319)
* balance update

* Add textures

* last balance tweaks

* Oupsi

* more fixes

* add changed quests

* push latest balance

* fix tallow

* add btx

* Update quests

* Oups

* Adding some nuclear stuffs so I can merge my branches

* fix tallow

* balance update

* Add textures

* last balance tweaks

* Oupsi

* more fixes

* add changed quests

* push latest balance

* fix tallow

* add btx

* Update quests

* Oups

* Adding some nuclear stuffs so I can merge my branches

* fix tallow

* fix

* add tfg:
2025-12-07 17:05:21 +00:00

55 lines
1.8 KiB
JavaScript

// priority: 0
"use strict";
const registerTFGPowerReworkMaterials = (event) => {
// Syngas
event.create('tfg:syngas')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(650))
.components('11x carbon', '20x hydrogen', '12x oxygen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
// Raw Aromatic Mix
event.create('tfg:raw_aromatic_mix')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(420))
.components('137x carbon', '154x hydrogen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0x8a4b3d)
.secondaryColor(0xd8b6ac)
// Aromatic Feedstock
event.create('tfg:aromatic_feedstock')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(450))
.components('67x carbon', '74x hydrogen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0x915c2f)
.secondaryColor(0xe2c49b)
// Reformed Aromatic Feedstock
event.create('tfg:reformed_aromatic_feedstock')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(500))
.components('133x carbon', '146x hydrogen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0x4e6b83)
.secondaryColor(0xbacdde)
// Reformate Gas
event.create('tfg:reformate_gas')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(540))
.components('13x carbon', '63x hydrogen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
// Cracker Off-Gas
event.create('tfg:cracker_off_gas')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(480))
.components('31x carbon', '128x hydrogen', '2x oxygen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xa36f2a)
.secondaryColor(0xecd8ae)
// Reformate Gas
event.create('tfg:btx_fuel')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(540))
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
}