added vacuumizer recipe for dandelions/goldenrod
This commit is contained in:
parent
c6d30fb0f8
commit
0cd0489998
3 changed files with 17 additions and 6 deletions
|
|
@ -15,6 +15,7 @@
|
|||
- Made pressure plates cheaper. @Pyritie
|
||||
- Added chisel recipes for stone walls. @Pyritie
|
||||
- Reduced electricity cost of electric greenhouse. @Pyritie
|
||||
- Added vacuumizer recipe for dandelions and goldenrod to latex. @Pyritie
|
||||
- More quest tweaks and fixes.
|
||||
|
||||
## [0.9.7] - 17.05.2025
|
||||
|
|
|
|||
|
|
@ -170,20 +170,20 @@ const registerAFCRecipes = (event) => {
|
|||
|
||||
|
||||
event.recipes.gtceu.extractor('latex_from_log')
|
||||
.itemInputs('4x #tfg:latex_logs')
|
||||
.outputFluids(Fluid.of('tfg:latex', 1000))
|
||||
.itemInputs('#tfg:latex_logs')
|
||||
.outputFluids(Fluid.of('tfg:latex', 250))
|
||||
.duration(600)
|
||||
.EUt(20)
|
||||
|
||||
event.recipes.gtceu.extractor('latex_from_sapling')
|
||||
.itemInputs('10x #tfg:rubber_saplings')
|
||||
.outputFluids(Fluid.of('tfg:latex', 1000))
|
||||
.itemInputs('#tfg:rubber_saplings')
|
||||
.outputFluids(Fluid.of('tfg:latex', 100))
|
||||
.duration(750)
|
||||
.EUt(20)
|
||||
|
||||
event.recipes.gtceu.extractor('latex_from_leaves')
|
||||
.itemInputs('20x #tfg:rubber_leaves')
|
||||
.outputFluids(Fluid.of('tfg:latex', 1000))
|
||||
.itemInputs('#tfg:rubber_leaves')
|
||||
.outputFluids(Fluid.of('tfg:latex', 50))
|
||||
.duration(750)
|
||||
.EUt(20)
|
||||
|
||||
|
|
|
|||
|
|
@ -577,12 +577,14 @@ function registerVintageImprovementsRecipes(event) {
|
|||
results: [{ fluid: 'tfg:latex', amount: 250 }],
|
||||
processingTime: 600
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_logs')
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
ingredients: [{ tag: 'tfg:rubber_saplings' }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 100 }],
|
||||
processingTime: 300
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_sapling')
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
ingredients: [{ tag: 'tfg:rubber_leaves' }],
|
||||
|
|
@ -590,6 +592,14 @@ function registerVintageImprovementsRecipes(event) {
|
|||
processingTime: 150
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_leaves')
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
ingredients: [{ tag: 'tfg:rubber_plants' }, { item: 'tfc:powder/soda_ash' }, { fluid: 'tfc:salt_water', amount: 50 }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 50 }],
|
||||
heatRequirement: "heated",
|
||||
processingTime: 40
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_plants')
|
||||
|
||||
// Vulc. latex to raw rubber pulp
|
||||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue