big tag/data refactor
This commit is contained in:
parent
5b612d88fd
commit
cc47fe55ce
49 changed files with 2601 additions and 2471 deletions
|
|
@ -14,6 +14,80 @@ function registerTFGWaxRecipes(event) {
|
|||
.duration(500)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
// Tapping
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/aspen"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 2))
|
||||
.minTemp(-10)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/aspen_resin")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_aspen"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 2))
|
||||
.minTemp(-10)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/ancient_aspen_resin")
|
||||
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/spruce"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 4))
|
||||
.minTemp(-15)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/spruce_resin")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_spruce"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 4))
|
||||
.minTemp(-15)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/ancient_spruce_resin")
|
||||
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/white_cedar"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 3))
|
||||
.minTemp(-8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/white_cedar_resin")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_white_cedar"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 3))
|
||||
.minTemp(-8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/ancient_white_cedar_resin")
|
||||
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/douglas_fir'))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 2))
|
||||
.minTemp(-8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/douglas_fir_resin")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_douglas_fir"))
|
||||
.resultFluid(Fluid.of('tfg:conifer_pitch', 2))
|
||||
.minTemp(-8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/ancient_douglas_fir_resin")
|
||||
|
||||
// Conifer Pitch
|
||||
event.recipes.gtceu.extractor('conifer_from_log')
|
||||
.itemInputs('#tfg:rosin_logs')
|
||||
.outputFluids(Fluid.of('tfg:conifer_pitch', 250))
|
||||
.duration(600)
|
||||
.EUt(20)
|
||||
|
||||
event.recipes.gtceu.extractor('conifer_from_sapling')
|
||||
.itemInputs('#tfg:rosin_saplings')
|
||||
.outputFluids(Fluid.of('tfg:conifer_pitch', 100))
|
||||
.duration(750)
|
||||
.EUt(20)
|
||||
|
||||
event.recipes.gtceu.extractor('conifer_from_leaves')
|
||||
.itemInputs('#tfg:rosin_leaves')
|
||||
.outputFluids(Fluid.of('tfg:conifer_pitch', 50))
|
||||
.duration(750)
|
||||
.EUt(20)
|
||||
|
||||
event.recipes.gtceu.centrifuge('conifer_log_separation')
|
||||
.itemInputs('#tfg:rosin_logs')
|
||||
.chancedOutput('tfg:conifer_rosin', 7500, 0)
|
||||
.chancedOutput('gtceu:plant_ball', 3750, 0)
|
||||
.chancedOutput('gtceu:sticky_resin', 2500, 0)
|
||||
.chancedOutput('gtceu:wood_dust', 2500, 0)
|
||||
.outputFluids(Fluid.of('gtceu:methane', 60))
|
||||
.duration(20 * 20)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
// Rosin
|
||||
event.recipes.firmalife.vat()
|
||||
.inputs('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue