small tweaks

This commit is contained in:
Pyritie 2025-09-05 01:52:46 +01:00
parent c5f7330380
commit 934ac6a792
2 changed files with 5 additions and 3 deletions

View file

@ -56,7 +56,7 @@ function registerTFGNuclearRecipes(event) {
event.recipes.gtceu.centrifuge('mars_semiheavy_water') event.recipes.gtceu.centrifuge('mars_semiheavy_water')
.inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000))
.outputFluids(Fluid.of('gtceu:semiheavy_water', 500)) .outputFluids(Fluid.of('tfg:semiheavy_water', 500))
.itemOutputs('2x #forge:tiny_dusts/ammonium_chloride') .itemOutputs('2x #forge:tiny_dusts/ammonium_chloride')
.duration(20*9) .duration(20*9)
.EUt(GTValues.VA[GTValues.MV]) .EUt(GTValues.VA[GTValues.MV])

View file

@ -49,16 +49,18 @@ const registerTFGNuclearMaterials = (event) => {
event.create('heavy_water') event.create('heavy_water')
.fluid() .fluid()
.temperature(236)
.components('2x deuterium', '1x oxygen') .components('2x deuterium', '1x oxygen')
.iconSet(GTMaterialIconSet.FINE) .iconSet(GTMaterialIconSet.FINE)
.color(0xB5B9FF) .color(0xB5B9FF)
.secondaryColor(0x81FFF9) .secondaryColor(0x81FFF9)
event.create('semiheavy_water') event.create('tfg:semiheavy_water')
.fluid() .fluid()
.temperature(213)
.components('1x deuterium','1x hydrogen', '1x oxygen') .components('1x deuterium','1x hydrogen', '1x oxygen')
.iconSet(GTMaterialIconSet.FINE) .iconSet(GTMaterialIconSet.FINE)
.color(0xb5d4ff) .color(0xb5ffff)
.secondaryColor(0x81FFF9) .secondaryColor(0x81FFF9)
event.create('uranium_waste') event.create('uranium_waste')