Merge branch 'dev' into feature/food
This commit is contained in:
commit
c83dae8b7d
12 changed files with 149 additions and 97 deletions
|
|
@ -86,39 +86,36 @@ const registerAFCRecipes = (event) => {
|
|||
.id('tfg:heating/tree_tap')
|
||||
|
||||
//Custom rubber and hevea tappings
|
||||
//Hevea is the most efficient but requires the warmest temperatures
|
||||
//Rubber fig requires average temperatures and its mildly efficient
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/hevea"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 3))
|
||||
.minTemp(22)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/hevea")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_hevea"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 3))
|
||||
.minTemp(22)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/ancient_hevea")
|
||||
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/rubber_fig"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 2))
|
||||
.minTemp(12)
|
||||
.resultFluid(Fluid.of("tfg:latex", 1))
|
||||
.minTemp(4)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/rubber_fig")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_rubber_fig"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 2))
|
||||
.minTemp(12)
|
||||
.resultFluid(Fluid.of("tfg:latex", 1))
|
||||
.minTemp(4)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/ancient_rubber_fig")
|
||||
|
||||
//Kapok Grandfathered, least efficient but works as long as the temperature is not freezing
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/hevea"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 2))
|
||||
.minTemp(8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/hevea")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_hevea"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 2))
|
||||
.minTemp(8)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/latex/ancient_hevea")
|
||||
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/kapok"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 1))
|
||||
.minTemp(1)
|
||||
.resultFluid(Fluid.of("tfg:latex", 3))
|
||||
.minTemp(12)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/kapok_latex")
|
||||
event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/ancient_kapok"))
|
||||
.resultFluid(Fluid.of("tfg:latex", 1))
|
||||
.minTemp(1)
|
||||
.resultFluid(Fluid.of("tfg:latex", 3))
|
||||
.minTemp(12)
|
||||
.requiresNaturalLog(true)
|
||||
.id("tfg:tree_tapping/ancient_kapok_latex")
|
||||
|
||||
|
|
|
|||
|
|
@ -186,18 +186,19 @@ function registerGreateRecipes(event) {
|
|||
event.shaped('greate:steel_millstone', [
|
||||
'FBF',
|
||||
'DCE',
|
||||
'AAA'
|
||||
'AGA'
|
||||
], {
|
||||
A: '#forge:smooth_stone',
|
||||
B: 'gtceu:treated_wood_slab',
|
||||
C: '#forge:small_gears/wrought_iron',
|
||||
C: '#forge:small_gears/steel',
|
||||
D: '#forge:tools/hammers',
|
||||
E: '#forge:tools/wrenches',
|
||||
F: '#forge:dusts/diamond'
|
||||
F: '#forge:dusts/diamond',
|
||||
G: 'greate:steel_shaft'
|
||||
}).id('greate:shaped/steel_millstone')
|
||||
|
||||
event.recipes.gtceu.assembler('greate:steel_millstone')
|
||||
.itemInputs('3x #forge:smooth_stone', 'gtceu:treated_wood_slab', '#forge:small_gears/wrought_iron', '2x #forge:dusts/diamond')
|
||||
.itemInputs('2x #forge:smooth_stone', 'gtceu:treated_wood_slab', '#forge:small_gears/steel', '2x #forge:dusts/diamond', 'greate:steel_shaft')
|
||||
.itemOutputs('greate:steel_millstone')
|
||||
.duration(200)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
|
|
|||
|
|
@ -103,19 +103,20 @@ function registerGreateRecyclingRecipes(event) {
|
|||
event.recipes.gtceu.macerator('greate:steel_millstone')
|
||||
.itemInputs('greate:steel_millstone')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 3),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.WroughtIron, 1),
|
||||
ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Steel, 10),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Stone, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Diamond, 2),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.TreatedWood, 2))
|
||||
.duration(GTMaterials.Steel.getMass() * 4)
|
||||
.duration(GTMaterials.Stone.getMass() * 4)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('greate:steel_millstone')
|
||||
.itemInputs('greate:steel_millstone')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 3),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.WroughtIron, 1))
|
||||
.duration(GTMaterials.Steel.getMass() * 4)
|
||||
ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Steel, 10),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Diamond, 2))
|
||||
.duration(GTMaterials.Stone.getMass() * 4)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
|
|
|
|||
|
|
@ -46,14 +46,14 @@ function registerTFCLunchBoxRecipes(event) {
|
|||
|
||||
event.recipes.gtceu.canner('tfclunchbox:fill_capsule_with_ice')
|
||||
.itemInputs('tfclunchbox:universal_capsule')
|
||||
.inputFluids(Fluid.of('gtceu:ice', 144))
|
||||
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:10}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||
.inputFluids(Fluid.of('gtceu:ice', 45 * 144))
|
||||
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:500}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
event.recipes.gtceu.canner('tfclunchbox:fill_capsule_with_ice_solid')
|
||||
.itemInputs('tfclunchbox:universal_capsule', 'minecraft:ice')
|
||||
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:10}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||
.itemInputs('tfclunchbox:universal_capsule', '5x minecraft:packed_ice')
|
||||
.itemOutputs(Item.of('tfclunchbox:universal_capsule', '{Durability:500}').withName(Text.translate('item.tfclunchbox.universal_capsule.filled')))
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -575,21 +575,21 @@ function registerVintageImprovementsRecipes(event) {
|
|||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
ingredients: [{ tag: 'tfg:latex_logs' }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 250 }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 100 }],
|
||||
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 }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 25 }],
|
||||
processingTime: 300
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_sapling')
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:vacuumizing',
|
||||
ingredients: [{ tag: 'tfg:rubber_leaves' }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 50 }],
|
||||
results: [{ fluid: 'tfg:latex', amount: 10 }],
|
||||
processingTime: 150
|
||||
}).id('tfg:vi/vacuumizing/latex_from_rubber_leaves')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue