* egh update * changelog and config * add spore blossom, remove beneath leaves (those are for mars) Signed-off-by: Pyritie <pyritie@gmail.com> * Update tags.beneath.js Signed-off-by: Pyritie <pyritie@gmail.com> --------- Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com>
302 lines
9.5 KiB
JavaScript
302 lines
9.5 KiB
JavaScript
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
const registerAFCRecipes = (event) => {
|
|
|
|
// #region Removes
|
|
|
|
global.AFC_DISABLED_ITEMS.forEach(item => {
|
|
event.remove({ input: item })
|
|
event.remove({ output: item })
|
|
})
|
|
|
|
event.remove({ id: "afc:pot/rubber" })
|
|
event.remove({ id: "afc:tree_tapping/hevea_latex" })
|
|
event.remove({ id: "afc:tree_tapping/rubber_fig_latex" })
|
|
event.remove({ id: "afc:crafting/1_birch_sugar" })
|
|
event.remove({ id: "afc:crafting/1_maple_sugar" })
|
|
event.remove({ id: "afc:crafting/0_birch_sugar_bucket" })
|
|
event.remove({ id: "afc:crafting/0_maple_sugar_bucket" })
|
|
|
|
|
|
// #endregion
|
|
|
|
// #region Wood crafts
|
|
|
|
global.AFC_WOOD_TYPES.forEach(wood => {
|
|
event.remove({ id: `afc:crafting/wood/${wood}_axle` })
|
|
event.remove({ id: `afc:crafting/wood/${wood}_bladed_axle` })
|
|
event.remove({ id: `afc:crafting/wood/${wood}_encased_axle` })
|
|
event.remove({ id: `afc:crafting/wood/${wood}_clutch` })
|
|
event.remove({ id: `afc:crafting/wood/${wood}_gear_box` })
|
|
event.remove({ id: `afc:crafting/wood/${wood}_water_wheel` })
|
|
|
|
// Бревна -> Пиломатериалы
|
|
generateCutterRecipe(event, `#afc:${wood}_logs`, `16x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_log`)
|
|
|
|
// Доски -> Пиломатериалы
|
|
generateCutterRecipe(event, `afc:wood/planks/${wood}`, `4x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_planks`)
|
|
|
|
// Ступень -> Пиломатериалы
|
|
generateCutterRecipe(event, `afc:wood/planks/${wood}_stairs`, `3x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_stairs`)
|
|
|
|
|
|
// Плита -> Пиломатериалы
|
|
generateCutterRecipe(event, `afc:wood/planks/${wood}_slab`, `2x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_slab`)
|
|
|
|
|
|
|
|
// ? -> Деревянная нажимная пластина
|
|
event.shaped(`afc:wood/planks/${wood}_pressure_plate`, [
|
|
' B ',
|
|
'CDC',
|
|
' E '
|
|
], {
|
|
B: '#tfc:hammers',
|
|
C: `afc:wood/planks/${wood}_slab`,
|
|
D: '#forge:small_springs',
|
|
E: '#forge:tools/screwdrivers'
|
|
}).id(`afc:crafting/wood/${wood}_pressure_plate`)
|
|
|
|
event.recipes.gtceu.assembler(`${wood}_pressure_plate`)
|
|
.itemInputs('#forge:small_springs', `2x afc:wood/planks/${wood}_slab`)
|
|
.circuit(3)
|
|
.itemOutputs(`2x afc:wood/planks/${wood}_pressure_plate`)
|
|
.duration(50)
|
|
.EUt(2)
|
|
|
|
// ? -> Деревянная кнопка
|
|
event.remove({ id: `afc:crafting/wood/${wood}_button` })
|
|
|
|
event.shapeless(`3x afc:wood/planks/${wood}_button`, [`afc:wood/planks/${wood}_pressure_plate`, '#forge:tools/saws'])
|
|
.id(`tfg:shapeless/saw_${wood}_pressure_plate_to_button`)
|
|
|
|
generateCutterRecipe(event, `afc:wood/planks/${wood}_pressure_plate`, `6x afc:wood/planks/${wood}_button`, 50, 2, `${wood}_button`)
|
|
|
|
//Stomping Barrel
|
|
event.remove({ id: `afc:crafting/wood/${wood}_stomping_barrel` })
|
|
|
|
event.shaped(`afc:wood/stomping_barrel/${wood}`, [
|
|
'ABA',
|
|
'AAA',
|
|
'BBB'
|
|
], {
|
|
A: `afc:wood/lumber/${wood}`,
|
|
B: 'tfc:glue'
|
|
|
|
}).id(`afc:crafting/wood/${wood}_stomping_barrel`)
|
|
|
|
event.recipes.gtceu.lathe(`tfg:stripping_${wood}_log`)
|
|
.itemInputs(`afc:wood/log/${wood}`)
|
|
.itemOutputs(`afc:wood/stripped_log/${wood}`)
|
|
.duration(50)
|
|
.EUt(2)
|
|
|
|
event.recipes.gtceu.lathe(`tfg:stripping_${wood}_wood`)
|
|
.itemInputs(`afc:wood/wood/${wood}`)
|
|
.itemOutputs(`afc:wood/stripped_wood/${wood}`)
|
|
.duration(50)
|
|
.EUt(2)
|
|
|
|
event.recipes.vintageimprovements.polishing(`afc:wood/stripped_log/${wood}`, `afc:wood/log/${wood}`)
|
|
.speedLimits(0)
|
|
.processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
|
.id(`tfg:vi/lathe/stripping_${wood}_log`)
|
|
|
|
event.recipes.vintageimprovements.polishing(`afc:wood/stripped_wood/${wood}`, `afc:wood/wood/${wood}`)
|
|
.speedLimits(0)
|
|
.processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
|
.id(`tfg:vi/lathe/stripping_${wood}_wood`)
|
|
});
|
|
|
|
global.AFC_SAPLINGS.forEach(wood => {
|
|
event.shaped(`4x afc:wood/fallen_leaves/${wood.sapling}`,[
|
|
'AA',
|
|
'AA'
|
|
], {
|
|
A: `afc:wood/leaves/${wood.sapling}`
|
|
}).id(`tfg:shaped/afc/${wood.sapling}_leaves_to_fallen_leaves`);
|
|
});
|
|
|
|
// #endregion
|
|
|
|
event.recipes.tfc.anvil('afc:tree_tap', '#forge:ingots/copper', ["hit_last", "upset_second_last", "upset_third_last"])
|
|
.tier(1)
|
|
.bonus(false)
|
|
.id('afc:anvil/tree_tap')
|
|
|
|
event.recipes.gtceu.extruder('afc:tree_tap')
|
|
.itemInputs('#forge:ingots/copper')
|
|
.notConsumable('gtceu:bottle_extruder_mold')
|
|
.itemOutputs('afc:tree_tap')
|
|
.duration(50)
|
|
.EUt(7)
|
|
.addMaterialInfo(true)
|
|
|
|
// TreeTap Heating
|
|
event.recipes.tfc.heating('afc:tree_tap', 1080)
|
|
.resultFluid(Fluid.of('gtceu:copper', 144))
|
|
.id('tfg:heating/tree_tap')
|
|
|
|
//Syrups
|
|
event.remove({ id: "afc:tree_tapping/maple_syrup" })
|
|
event.remove({ id: "afc:tree_tapping/birch_syrup" })
|
|
|
|
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/maple'))
|
|
.resultFluid(Fluid.of('afc:maple_sap', 5))
|
|
.minTemp(-15)
|
|
.maxTemp(5)
|
|
.requiresNaturalLog(true)
|
|
.id("tfg:tree_tapping/maple_log")
|
|
|
|
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/birch'))
|
|
.resultFluid(Fluid.of('afc:birch_sap', 5))
|
|
.minTemp(-15)
|
|
.maxTemp(5)
|
|
.requiresNaturalLog(true)
|
|
.id("tfg:tree_tapping/birch_log")
|
|
|
|
//#region Extractor Recipe
|
|
|
|
// Maple Syrup
|
|
|
|
event.recipes.gtceu.extractor('maple_from_log')
|
|
.itemInputs('#tfc:maple_logs')
|
|
.outputFluids(Fluid.of('afc:maple_sap', 250))
|
|
.duration(600)
|
|
.EUt(20)
|
|
|
|
event.recipes.gtceu.extractor('maple_from_sapling')
|
|
.itemInputs('#tfg:maple_saplings')
|
|
.outputFluids(Fluid.of('afc:maple_sap', 100))
|
|
.duration(750)
|
|
.EUt(20)
|
|
|
|
event.recipes.gtceu.extractor('maple_from_leaves')
|
|
.itemInputs('#tfg:maple_leaves')
|
|
.outputFluids(Fluid.of('afc:maple_sap', 50))
|
|
.duration(750)
|
|
.EUt(20)
|
|
|
|
// Birch Syrup
|
|
|
|
event.recipes.gtceu.extractor('birch_from_log')
|
|
.itemInputs('#tfc:birch_logs')
|
|
.outputFluids(Fluid.of('afc:birch_sap', 250))
|
|
.duration(600)
|
|
.EUt(20)
|
|
|
|
event.recipes.gtceu.extractor('birch_from_sapling')
|
|
.itemInputs('tfc:wood/sapling/birch')
|
|
.outputFluids(Fluid.of('afc:birch_sap', 100))
|
|
.duration(750)
|
|
.EUt(20)
|
|
|
|
event.recipes.gtceu.extractor('birch_from_leaves')
|
|
.itemInputs('tfc:wood/leaves/birch')
|
|
.outputFluids(Fluid.of('afc:birch_sap', 50))
|
|
.duration(750)
|
|
.EUt(20)
|
|
|
|
//#endregion
|
|
|
|
// Из бревна капока / Logs Centrifuge
|
|
|
|
event.recipes.gtceu.centrifuge('maple_syrup_log_separation')
|
|
.itemInputs('#tfc:maple_logs')
|
|
.chancedOutput('afc:maple_sugar', 7500, 0)
|
|
.chancedOutput('gtceu:plant_ball', 3750, 0)
|
|
.chancedOutput('gtceu:hardwood_dust', 2500, 0)
|
|
.outputFluids(Fluid.of('gtceu:methane', 60), Fluid.of('afc:maple_syrup', 100))
|
|
.duration(20 * 20)
|
|
.EUt(GTValues.VA[GTValues.MV])
|
|
|
|
event.recipes.gtceu.centrifuge('birch_syrup_log_separation')
|
|
.itemInputs('#tfc:birch_logs')
|
|
.chancedOutput('afc:birch_sugar', 7500, 0)
|
|
.chancedOutput('gtceu:plant_ball', 3750, 0)
|
|
.chancedOutput('gtceu:hardwood_dust', 2500, 0)
|
|
.outputFluids(Fluid.of('gtceu:methane', 60), Fluid.of('afc:birch_syrup', 100))
|
|
.duration(20 * 20)
|
|
.EUt(GTValues.VA[GTValues.MV])
|
|
|
|
//#endregion
|
|
|
|
//#region GT sap processing
|
|
|
|
event.recipes.gtceu.fluid_heater('maple_sap_condense')
|
|
.inputFluids(Fluid.of('afc:maple_sap', 1000))
|
|
.outputFluids(Fluid.of('afc:maple_syrup', 100))
|
|
.duration(20 * 25)
|
|
.EUt(GTValues.VA[GTValues.ULV])
|
|
|
|
event.recipes.gtceu.fluid_heater('birch_sap_condense')
|
|
.inputFluids(Fluid.of('afc:birch_sap', 1000))
|
|
.outputFluids(Fluid.of('afc:birch_syrup', 100))
|
|
.duration(20 * 35)
|
|
.EUt(GTValues.VA[GTValues.ULV])
|
|
|
|
|
|
event.recipes.gtceu.fluid_solidifier('maple_syrup')
|
|
.inputFluids(Fluid.of('afc:maple_syrup', 100))
|
|
.itemOutputs('afc:maple_sugar')
|
|
.duration(20 * 12)
|
|
.EUt(GTValues.VHA[GTValues.ULV])
|
|
|
|
event.recipes.gtceu.fluid_solidifier('birch_syrup')
|
|
.inputFluids(Fluid.of('afc:birch_syrup', 100))
|
|
.itemOutputs('afc:birch_sugar')
|
|
.duration(20 * 12)
|
|
.EUt(GTValues.VHA[GTValues.ULV])
|
|
|
|
//#endregion
|
|
|
|
|
|
// Syrup into sugar
|
|
|
|
event.recipes.tfc.barrel_sealed(24000)
|
|
.inputFluid(Fluid.of('afc:maple_syrup', 100))
|
|
.outputItem('afc:maple_sugar')
|
|
.id('tfg:barrel/maple_syrup_to_sugar')
|
|
|
|
event.recipes.tfc.barrel_sealed(24000)
|
|
.inputFluid(Fluid.of('afc:birch_syrup', 100))
|
|
.outputItem('afc:birch_sugar')
|
|
.id('tfg:barrel/birch_syrup_to_sugar')
|
|
|
|
const MORE_STRIPPING = [
|
|
{ wood: 'black_oak', stripped: 'oak', stripped_mod: 'tfc' },
|
|
{ wood: 'rainbow_eucalyptus', stripped: 'eucalyptus', stripped_mod: 'afc' },
|
|
{ wood: 'gum_arabic', stripped: 'acacia', stripped_mod: 'tfc' },
|
|
{ wood: 'redcedar', stripped: 'cypress', stripped_mod: 'afc' },
|
|
{ wood: 'rubber_fig', stripped: 'fig', stripped_mod: 'afc' },
|
|
{ wood: 'poplar', stripped: 'aspen', stripped_mod: 'tfc' }
|
|
];
|
|
|
|
MORE_STRIPPING.forEach(x => {
|
|
event.recipes.gtceu.lathe(`tfg:stripping_${x.wood}_log`)
|
|
.itemInputs(`afc:wood/log/${x.wood}`)
|
|
.itemOutputs(`${x.stripped_mod}:wood/stripped_log/${x.stripped}`)
|
|
.duration(50)
|
|
.EUt(2)
|
|
|
|
event.recipes.gtceu.lathe(`tfg:stripping_${x.wood}_wood`)
|
|
.itemInputs(`afc:wood/wood/${x.wood}`)
|
|
.itemOutputs(`${x.stripped_mod}:wood/stripped_wood/${x.stripped}`)
|
|
.duration(50)
|
|
.EUt(2)
|
|
|
|
event.recipes.vintageimprovements.polishing(`${x.stripped_mod}:wood/stripped_log/${x.stripped}`, `afc:wood/log/${x.wood}`)
|
|
.speedLimits(0)
|
|
.processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
|
.id(`tfg:vi/lathe/stripping_${x.wood}_log`)
|
|
|
|
event.recipes.vintageimprovements.polishing(`${x.stripped_mod}:wood/stripped_wood/${x.stripped}`, `afc:wood/wood/${x.wood}`)
|
|
.speedLimits(0)
|
|
.processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER)
|
|
.id(`tfg:vi/lathe/stripping_${x.wood}_wood`)
|
|
})
|
|
}
|