reduced required rpm for the VI centrifuge because it works badly on low tps servers
This commit is contained in:
parent
c5ada8c136
commit
69cde26b65
3 changed files with 5 additions and 0 deletions
|
|
@ -49,6 +49,7 @@ function registerTFGMarsRecipes(event) {
|
||||||
|
|
||||||
event.recipes.vintageimprovements.centrifugation([Fluid.of('tfg:semiheavy_water', 500), '2x #forge:tiny_dusts/ammonium_chloride'], Fluid.of('tfg:semiheavy_ammoniacal_water', 1000))
|
event.recipes.vintageimprovements.centrifugation([Fluid.of('tfg:semiheavy_water', 500), '2x #forge:tiny_dusts/ammonium_chloride'], Fluid.of('tfg:semiheavy_ammoniacal_water', 1000))
|
||||||
.processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
.processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
||||||
|
.minimalRPM(32)
|
||||||
.id('tfg:vi/centrifuge_mars_semiheavy_water')
|
.id('tfg:vi/centrifuge_mars_semiheavy_water')
|
||||||
|
|
||||||
event.recipes.gtceu.distillery('mars_semiheavy_water')
|
event.recipes.gtceu.distillery('mars_semiheavy_water')
|
||||||
|
|
|
||||||
|
|
@ -404,6 +404,7 @@ function processImpureDust(event, material) {
|
||||||
[dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)],
|
[dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)],
|
||||||
impureDustItem)
|
impureDustItem)
|
||||||
.processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
.processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
||||||
|
.minimalRPM(32)
|
||||||
.id(`tfg:vi/centrifuge/${materialName}_dust_from_impure`)
|
.id(`tfg:vi/centrifuge/${materialName}_dust_from_impure`)
|
||||||
|
|
||||||
// Dropping in water
|
// Dropping in water
|
||||||
|
|
@ -455,6 +456,7 @@ function processPureDust(event, material) {
|
||||||
[dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)],
|
[dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)],
|
||||||
pureDustItem)
|
pureDustItem)
|
||||||
.processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
.processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
||||||
|
.minimalRPM(32)
|
||||||
.id(`tfg:vi/centrifuge/${materialName}_dust_from_pure`)
|
.id(`tfg:vi/centrifuge/${materialName}_dust_from_pure`)
|
||||||
|
|
||||||
// Dropping in water
|
// Dropping in water
|
||||||
|
|
|
||||||
|
|
@ -196,10 +196,12 @@ function registerTFGClothRecipes(event) {
|
||||||
|
|
||||||
event.recipes.vintageimprovements.centrifugation(['2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus'], 'tfg:flax_product')
|
event.recipes.vintageimprovements.centrifugation(['2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus'], 'tfg:flax_product')
|
||||||
.processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
.processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
||||||
|
.minimalRPM(32)
|
||||||
.id('tfg:vi_seperate_flax')
|
.id('tfg:vi_seperate_flax')
|
||||||
|
|
||||||
event.recipes.vintageimprovements.centrifugation(['18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus'], 'tfg:flax_bundle')
|
event.recipes.vintageimprovements.centrifugation(['18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus'], 'tfg:flax_bundle')
|
||||||
.processingTime(1500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
.processingTime(1500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
||||||
|
.minimalRPM(32)
|
||||||
.id('tfg:vi_seperate_flax_from_bundle')
|
.id('tfg:vi_seperate_flax_from_bundle')
|
||||||
|
|
||||||
// #endregion
|
// #endregion
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue