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'