Add decompozition for heavy and semiheavy water (#1745)
* add semiheavy water * add semiheavy water to centrifuge * fix color
This commit is contained in:
parent
2f172a7d31
commit
07f896b9d6
2 changed files with 8 additions and 2 deletions
|
|
@ -56,7 +56,7 @@ function registerTFGNuclearRecipes(event) {
|
|||
|
||||
event.recipes.gtceu.centrifuge('mars_semiheavy_water')
|
||||
.inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000))
|
||||
.outputFluids(Fluid.of('minecraft:water', 500))
|
||||
.outputFluids(Fluid.of('gtceu:semiheavy_water', 500))
|
||||
.itemOutputs('2x #forge:tiny_dusts/ammonium_chloride')
|
||||
.duration(20*9)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
|
|
|||
|
|
@ -50,11 +50,17 @@ const registerTFGNuclearMaterials = (event) => {
|
|||
event.create('heavy_water')
|
||||
.fluid()
|
||||
.components('2x deuterium', '1x oxygen')
|
||||
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
|
||||
.iconSet(GTMaterialIconSet.FINE)
|
||||
.color(0xB5B9FF)
|
||||
.secondaryColor(0x81FFF9)
|
||||
|
||||
event.create('semiheavy_water')
|
||||
.fluid()
|
||||
.components('1x deuterium','1x hydrogen', '1x oxygen')
|
||||
.iconSet(GTMaterialIconSet.FINE)
|
||||
.color(0xb5d4ff)
|
||||
.secondaryColor(0x81FFF9)
|
||||
|
||||
event.create('uranium_waste')
|
||||
.liquid(new GTFluidBuilder().customStill().temperature(3850))
|
||||
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue