From 52afdd3af84dd5f9cb3f90613622bfff51cb512c Mon Sep 17 00:00:00 2001 From: TomPlop Date: Sat, 21 Feb 2026 10:57:02 -0500 Subject: [PATCH 1/2] Update changelog Updated crafting recipes for MV Machine Hulls, Hatches, and Buses. Adjusted centrifuging output and modified Create Spout requirements. Signed-off-by: TomPlop --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22bf1cf5c..d88f46f72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ ## Unreleased ### Changes +- MV Machine Hulls shaped recipe needs 4 Bakelite Plates and 2 Aluminum Plates but can be crafted with Bakanite in an Assembler +- MV Hatches and Buses now can be crafted with Bakalite +- Centrifuging Connifer Resin now gives way more plantballs +- Create Spout don't require foil but plates so the Rolling Mill isn't mandatory anymore + ### Bug fixes +- Uraninium Triplatinium Alloy Blast Smelter recipe now requires Radon too ### Translation updates ## [0.11.22] - 16-02-2026 From 23239b4e2d39447945c0e691fc66419aae08b453 Mon Sep 17 00:00:00 2001 From: TomPlop Date: Sat, 21 Feb 2026 10:59:04 -0500 Subject: [PATCH 2/2] change to mv stuffs with bakalite (#3133) --- .../tfg/machines/recipes.bakelite.js | 57 ++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfg/machines/recipes.bakelite.js b/kubejs/server_scripts/tfg/machines/recipes.bakelite.js index dbe8f9bbc..f3d531981 100644 --- a/kubejs/server_scripts/tfg/machines/recipes.bakelite.js +++ b/kubejs/server_scripts/tfg/machines/recipes.bakelite.js @@ -88,7 +88,62 @@ function registerTFGBakeliteRecipes(event) { .EUt(GTValues.VA[GTValues.MV]) // machine hull changes/additions - event.replaceInput({ id: 'gtceu:shaped/mv_machine_hull' }, '#forge:plates/wrought_iron', '#forge:plates/bakelite') + + // To Move to MV Rework after + event.remove({ id: 'gtceu:shaped/mv_machine_hull'}) + event.shaped('gtceu:mv_machine_hull', [ + 'ABA', + 'DCD', + 'ABA' + ], { + A: '#forge:plates/bakelite', + B: '#forge:plates/aluminum', + C: 'gtceu:mv_machine_casing', + D: 'gtceu:copper_single_cable' + }).id('tfg:shaped/mv_machine_hull') + + event.remove({ id: 'gtceu:assembler/hull_mv_annealed'}) + event.recipes.gtceu.assembler('tfg:mv_machine_hull') + .itemInputs('gtceu:mv_machine_casing', '2x gtceu:copper_single_cable') + .inputFluids('tfg:bakelite 576') + .itemOutputs('gtceu:mv_machine_hull') + .duration(20*2.5) + .EUt(GTValues.VH[GTValues.LV]) + + // MV Buses + event.recipes.gtceu.assembler('tfg:mv_input_bus') + .itemInputs('gtceu:mv_machine_hull', '#tfg:any_bronze_crate') + .inputFluids('tfg:bakelite 576') + .itemOutputs('gtceu:mv_input_bus') + .duration(20*15) + .EUt(GTValues.VA[GTValues.MV]) + .circuit(1) + + event.recipes.gtceu.assembler('tfg:mv_output_bus') + .itemInputs('gtceu:mv_machine_hull', '#tfg:any_bronze_crate') + .inputFluids('tfg:bakelite 576') + .itemOutputs('gtceu:mv_output_bus') + .duration(20*15) + .EUt(GTValues.VA[GTValues.MV]) + .circuit(2) + + // MV Hatches + event.recipes.gtceu.assembler('tfg:mv_input_hatch') + .itemInputs('gtceu:mv_machine_hull', '#tfg:any_bronze_drum') + .inputFluids('tfg:bakelite 576') + .itemOutputs('gtceu:mv_input_hatch') + .duration(20*15) + .EUt(GTValues.VA[GTValues.MV]) + .circuit(1) + + event.recipes.gtceu.assembler('tfg:mv_output_hatch') + .itemInputs('gtceu:mv_machine_hull', '#tfg:any_bronze_drum') + .inputFluids('tfg:bakelite 576') + .itemOutputs('gtceu:mv_output_hatch') + .duration(20*15) + .EUt(GTValues.VA[GTValues.MV]) + .circuit(2) + // End of MV Changes event.recipes.gtceu.assembler('tfg:ulv_hull_bakelite') .itemInputs('gtceu:ulv_machine_casing', '2x #forge:single_cables/red_alloy')