New content for ULV + LV (#2873)

* require black steel plates before the forge hammer, add some blue steel things post-deployer that require a colored steel anvil, start refractory clay dust

* first draft of bakelite, new phenolic boards, new cupro coils

* add another page to the medicine quest

* cl

* backup of lv quests

* quest stuff and some recipe tweaks

* tweak

---------

Co-authored-by: Redeix <redeix.m@gmail.com>
This commit is contained in:
Pyritie 2026-01-27 00:10:22 +00:00 committed by GitHub
parent 1190408623
commit f324e7e6da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 1092 additions and 493 deletions

View file

@ -0,0 +1,70 @@
"use strict";
function registerTFGBakeliteRecipes(event) {
// TODO: move oil PE to MV
event.recipes.gtceu.chemical_reactor('tfg:formaldehyde_from_methane')
.inputFluids('gtceu:methane 1000', 'gtceu:oxygen 1000')
.outputFluids('gtceu:formaldehyde 1000', 'gtceu:hydrogen 2000')
.circuit(1)
.duration(200)
.EUt(GTValues.VA[GTValues.LV])
// add phenol and methane to distillation
event.recipes.gtceu.distillation_tower('gtceu:distill_creosote')
.inputFluids('gtceu:creosote 1000')
.outputFluids('gtceu:lubricant 500')
.outputFluids('gtceu:phenol 50')
.outputFluids('gtceu:carbon_dioxide 200')
.outputFluids('gtceu:methane 250')
// this adds single-block distillery recipes too
.disableDistilleryRecipes(false)
.duration(8 * 20)
.EUt(96)
event.recipes.gtceu.chemical_reactor('tfg:syngas_to_methane')
.inputFluids('tfg:syngas 1000')
.notConsumable('#forge:dusts/silver')
.outputFluids('gtceu:methane 100')
.duration(100)
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.chemical_reactor('tfg:phenolic_resin')
.inputFluids('gtceu:phenol 500', 'gtceu:formaldehyde 1000')
.notConsumable('#forge:dusts/sodium_hydroxide')
.outputFluids('tfg:phenolic_resin 1000')
.duration(100)
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.mixer('tfg:bakelite_wood')
.inputFluids('tfg:phenolic_resin 144')
.itemInputs('tfg:treated_chipboard_composite')
.outputFluids('tfg:bakelite 144')
.duration(100)
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.mixer('tfg:bakelite_asbestos')
.inputFluids('tfg:phenolic_resin 144')
.itemInputs('#forge:dusts/asbestos')
.outputFluids('tfg:bakelite 144')
.duration(100)
.EUt(GTValues.VA[GTValues.LV])
event.remove({ id: 'gtceu:assembler/phenolic_board' })
event.recipes.gtceu.forming_press('tfg:phenolic_board')
.itemInputs('2x #forge:foils/bakelite', '2x minecraft:paper', 'gtceu:resin_circuit_board')
.itemOutputs('gtceu:phenolic_circuit_board')
.duration(7.5 * 20)
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.assembler('tfg:phenolic_board_pe')
.itemInputs('2x #forge:foils/polyethylene', 'gtceu:wood_plate')
.inputFluids('gtceu:phenol 50')
.itemOutputs('gtceu:phenolic_circuit_board')
.duration(7.5 * 20)
.EUt(GTValues.VA[GTValues.MV])
event.replaceInput({ id: 'gtceu:shaped/mv_machine_hull' }, '#forge:plates/wrought_iron', '#forge:plates/bakelite')
}

View file

@ -0,0 +1,77 @@
"use strict";
function registerTFGCoilRecipes(event) {
// #region Cupronickel Coil
event.smelting('tfg:refractory_clay_dust', 'tfc:fire_clay')
event.recipes.gtceu.chemical_reactor('tfg:magnesium_hydroxide')
.itemInputs('#forge:dusts/magnesium')
.inputFluids('tfc:lye 2000')
.itemOutputs('#forge:dusts/magnesium_hydroxide', '2x #forge:dusts/sodium')
.duration(5 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.coke_oven('tfg:magnesia')
.itemInputs('#forge:dusts/magnesium_hydroxide')
.itemOutputs('#forge:dusts/magnesia')
.duration(20 * 20)
event.recipes.gtceu.pyrolyse_oven('tfg:magnesia')
.itemInputs('#forge:dusts/magnesium_hydroxide')
.itemOutputs('#forge:dusts/magnesia')
.duration(20 * 20)
.EUt(GTValues.VHA[GTValues.MV])
event.recipes.gtceu.mixer('tfg:magnesia_refractory_brick_dust_sticky')
.itemInputs('#forge:dusts/magnesia', '#forge:dusts/refractory_clay', '#forge:dusts/graphite', '5x gtceu:sticky_resin')
.itemOutputs('3x #forge:dusts/magnesia_refractory_brick')
.duration(5 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.mixer('tfg:magnesia_refractory_brick_dust_sticky_powder')
.itemInputs('#forge:dusts/magnesia', '#forge:dusts/refractory_clay', '4x tfc:powder/graphite', '5x gtceu:sticky_resin')
.itemOutputs('3x #forge:dusts/magnesia_refractory_brick')
.duration(5 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.mixer('tfg:magnesia_refractory_brick_dust_phenolic')
.itemInputs('#forge:dusts/magnesia', '#forge:dusts/refractory_clay', '#forge:dusts/graphite')
.inputFluids(Fluid.of('tfg:phenolic_resin', 144))
.itemOutputs('3x #forge:dusts/magnesia_refractory_brick')
.duration(5 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.mixer('tfg:magnesia_refractory_brick_dust_phenolic_powder')
.itemInputs('#forge:dusts/magnesia', '#forge:dusts/refractory_clay', '4x tfc:powder/graphite')
.inputFluids(Fluid.of('tfg:phenolic_resin', 144))
.itemOutputs('3x #forge:dusts/magnesia_refractory_brick')
.duration(5 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.alloy_smelter('tfg:magnesia_refractory_brick')
.itemInputs('#forge:dusts/magnesia_refractory_brick')
.notConsumable('gtceu:ingot_casting_mold')
.itemOutputs('#forge:ingots/magnesia_refractory_brick')
.duration(8 * 20)
.EUt(GTValues.VA[GTValues.LV])
.category(GTRecipeCategories.INGOT_MOLDING)
event.recipes.gtceu.forming_press('tfg:magnesia_refractory_brick')
.itemInputs('#forge:dusts/magnesia_refractory_brick')
.notConsumable('gtceu:ingot_casting_mold')
.itemOutputs('#forge:ingots/magnesia_refractory_brick')
.duration(4 * 20)
.EUt(GTValues.VHA[GTValues.LV])
event.recipes.gtceu.assembler('gtceu:coil_cupronickel')
.itemInputs('8x #forge:double_wires/cupronickel', '8x #forge:foils/blue_steel', '8x #forge:ingots/magnesia_refractory_brick')
.inputFluids('gtceu:tin_alloy 144')
.itemOutputs('gtceu:cupronickel_coil_block')
.duration(10 * 20)
.EUt(GTValues.VA[GTValues.LV])
.addMaterialInfo(true, true)
// #endregion
}

View file

@ -98,7 +98,7 @@ function registerTFGMultiblockRecipes(event) {
'ACA',
'ABA'
], {
A: '#forge:plates/brass',
A: '#forge:plates/bronze',
B: 'gtceu:potin_large_fluid_pipe',
C: 'gtceu:hp_steam_compressor'
}).addMaterialInfo().id('gtceu:shaped/steam_squasher')
@ -108,7 +108,7 @@ function registerTFGMultiblockRecipes(event) {
'ACA',
'ABA'
], {
A: '#forge:plates/brass',
A: '#forge:plates/bronze',
B: 'tfc:metal/anvil/steel',
C: 'gtceu:hp_steam_forge_hammer',
D: 'gtceu:potin_large_fluid_pipe'

View file

@ -67,6 +67,35 @@ function registerTFGAlloyingRecipes(event) {
.circuit(1)
.EUt(GTValues.VA[GTValues.MV])
.blastFurnaceTemp(1000)
event.remove({ id: 'greate:mixing/integration/gtceu/mixer/red_steel' })
event.remove({ id: 'greate:mixing/integration/gtceu/mixer/blue_steel' })
event.recipes.greate.mixing('#forge:dusts/weak_red_steel',
['4x #forge:dusts/black_steel', '2x #forge:dusts/steel', '#forge:dusts/brass', '#forge:dusts/rose_gold'])
.recipeTier(1)
.circuitNumber(2)
.heated()
.id('tfg:weak_red_steel_greate')
event.recipes.greate.mixing('#forge:dusts/weak_blue_steel',
['4x #forge:dusts/black_steel', '2x #forge:dusts/steel', '#forge:dusts/bismuth_bronze', '#forge:dusts/sterling_silver'])
.recipeTier(1)
.circuitNumber(2)
.heated()
.id('tfg:weak_blue_steel_greate')
event.recipes.greate.mixing('#forge:dusts/red_steel',
['4x #forge:dusts/black_steel', '2x #forge:dusts/steel', '#forge:dusts/brass', '#forge:dusts/rose_gold'])
.recipeTier(2)
.circuitNumber(1)
.id('tfg:red_steel_greate')
event.recipes.greate.mixing('#forge:dusts/blue_steel',
['4x #forge:dusts/black_steel', '2x #forge:dusts/steel', '#forge:dusts/bismuth_bronze', '#forge:dusts/sterling_silver'])
.recipeTier(2)
.circuitNumber(1)
.id('tfg:blue_steel_greate')
//#endregion

View file

@ -156,7 +156,7 @@ function processToolHead(event, headTagPrefix, tagPrefixName, extruderMold, cera
.circuit(circuitMeta)
.itemOutputs(toolHeadItem)
.duration(material.getMass() * 6)
.EUt(GTValues.VA[GTValues.LV])
.EUt(GTValues.VA[GTValues.MV])
}
addMaterialRecycling(event, toolHeadItem, material, tagPrefixName, headTagPrefix);

View file

@ -187,19 +187,16 @@ function registerTFGClayRecipes(event) {
.duration(20)
.EUt(2)
event.recipes.gtceu.macerator('tfg:casting_channel')
.itemInputs('tfcchannelcasting:channel')
.itemOutputs('1x #forge:dusts/brick')
.category(GTRecipeCategories.MACERATOR_RECYCLING)
.duration(20)
.EUt(2)
event.recipes.gtceu.macerator('tfg:mold_table')
.itemInputs('tfcchannelcasting:mold_table')
.itemOutputs('5x #forge:dusts/brick')
.category(GTRecipeCategories.MACERATOR_RECYCLING)
.duration(20)
.EUt(2)
var refractoryClay = GTMaterials.get('tfg:refractory_clay');
TFGHelpers.registerMaterialInfo('tfc:blast_furnace', [GTMaterials.WroughtIron, 16, refractoryClay, 5])
TFGHelpers.registerMaterialInfo('tfc:fire_bricks', [refractoryClay, 5])
TFGHelpers.registerMaterialInfo('tfc:crucible', [refractoryClay, 5])
TFGHelpers.registerMaterialInfo('tfc:ceramic/fire_brick', [refractoryClay, 1])
TFGHelpers.registerMaterialInfo('tfcchannelcasting:channel', [refractoryClay, 5/4])
TFGHelpers.registerMaterialInfo('tfcchannelcasting:mold_table', [refractoryClay, 5])
TFGHelpers.registerMaterialInfo('tfc:ceramic/fire_ingot_mold', [refractoryClay, 5/2])
TFGHelpers.registerMaterialInfo('tfg:rod_mold', [refractoryClay, 5])
TFGHelpers.registerMaterialInfo('tfg:small_gear_mold', [refractoryClay, 5])
// Renewable clay
event.recipes.gtceu.rock_breaker("clay_duping")

View file

@ -128,13 +128,6 @@ function registerTFGChipboardRecipes(event) {
.duration(100)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.chemical_bath('gtceu:bath_high_density_treated_fiberboard')
.itemInputs('1x gtceu:wood_plate')
.inputFluids(Fluid.of('gtceu:creosote', 50))
.itemOutputs('tfg:high_density_treated_fiberboard')
.duration(100)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.chemical_bath('gtceu:bath_treated_wood_dust')
.itemInputs('#tfg:wood_dusts')
.inputFluids(Fluid.of('gtceu:creosote', 50))
@ -142,17 +135,9 @@ function registerTFGChipboardRecipes(event) {
.duration(100)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.compressor('tfg:compressed_treated_chipboard_composite')
.itemInputs('tfg:treated_chipboard_composite')
.itemOutputs('tfg:high_density_treated_fiberboard')
.duration(200)
.EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.assembler('tfg:resin_circuit_assembler')
.itemInputs('gtceu:wood_plate', '2x gtceu:sticky_resin')
.itemOutputs('gtceu:resin_circuit_board')
.duration(20 * 10)
.EUt(GTValues.VA[GTValues.ULV])
event.replaceInput({ id: 'gtceu:assembler/phenolic_board' }, '#tfg:wood_dusts', 'tfg:high_density_treated_fiberboard')
}

View file

@ -56,6 +56,8 @@ const registerTFGRecipes = (event) => {
registerTFGMultiblockRecipes(event)
registerTFGSteamBloomeryRecipes(event)
registerTFGElectronicComponentsRecipes(event)
registerTFGBakeliteRecipes(event)
registerTFGCoilRecipes(event)
registerTFGEarlyGasRecipes(event)
registerTFGBoilerRecipes(event)