From 29782635b560f666b81c29f7c3d30891b87925a6 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Fri, 2 Jan 2026 20:27:30 +0000 Subject: [PATCH] change magnesium dioboride cooling --- kubejs/server_scripts/gregtech/recipes.js | 24 +++++++++++----------- kubejs/server_scripts/minecraft/recipes.js | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 950e45fe6..dc3bb4756 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -80,37 +80,37 @@ const registerGTCEURecipes = (event) => { //#endregion - // #region Move MV superconductor to early HV instead of post-vac freezer + // #region Move MV superconductor to mid-late MV instead of post-vac freezer - event.remove({ id: 'gtceu:shaped/hv_chemical_bath' }) - event.shaped('gtceu:hv_chemical_bath', [ + event.remove({ id: 'gtceu:shaped/mv_chemical_bath' }) + event.shaped('gtceu:mv_chemical_bath', [ 'ABC', 'DEA', 'FGF' ], { - A: 'gtceu:hv_conveyor_module', - B: 'gtceu:tempered_glass', - C: 'gtceu:gold_single_cable', - D: 'gtceu:hv_electric_pump', + A: 'gtceu:mv_conveyor_module', + B: '#forge:glass', + C: 'gtceu:copper_single_cable', + D: 'gtceu:mv_electric_pump', // swap one of the tempered glass for a PE pipe to ensure they've finished the plastic part of MV E: 'gtceu:polyethylene_normal_fluid_pipe', - F: '#gtceu:circuits/hv', - G: 'gtceu:hv_machine_hull' - }).id('tfg:shaped/hv_chemical_bath') + F: '#gtceu:circuits/mv', + G: 'gtceu:mv_machine_hull' + }).id('tfg:shaped/mv_chemical_bath') event.recipes.gtceu.chemical_bath('tfg:magnesium_diboride_cool_down_distilled_water') .itemInputs('gtceu:hot_magnesium_diboride_ingot') .inputFluids(Fluid.of('gtceu:distilled_water', 100)) .itemOutputs('gtceu:magnesium_diboride_ingot') .duration(250) - .EUt(480) + .EUt(GTValues.VA[GTValues.MV]) event.recipes.gtceu.chemical_bath('tfg:magnesium_diboride_cool_down') .itemInputs('gtceu:hot_magnesium_diboride_ingot') .inputFluids(Fluid.of('minecraft:water', 100)) .itemOutputs('gtceu:magnesium_diboride_ingot') .duration(400) - .EUt(480) + .EUt(GTValues.VA[GTValues.MV]) // #endregion diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index a472e3d45..2909ccf4d 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -988,14 +988,14 @@ const registerMinecraftRecipes = (event) => { .inputFluids(Fluid.of('gtceu:glowstone', 512)) .itemOutputs('16x minecraft:glow_ink_sac') .duration(20) - .EUt(GTValues.VA[GTValues.HV]) + .EUt(GTValues.VA[GTValues.LV]) event.recipes.gtceu.chemical_bath('minecraft:glow_inc_sac1') .itemInputs("#forge:dyes/black") .inputFluids(Fluid.of('gtceu:glowstone', 144)) .itemOutputs('minecraft:glow_ink_sac') .duration(40) - .EUt(GTValues.VA[GTValues.MV]) + .EUt(GTValues.VA[GTValues.LV]) //#endregion