Skip to content

Commit

Permalink
Merge pull request #724 from Pyritie/mv_superwire
Browse files Browse the repository at this point in the history
Moved MV superconductor to early HV instead of late HV
  • Loading branch information
Exzept1on authored Jan 18, 2025
2 parents b6fa89f + 5035130 commit c9c8179
Showing 1 changed file with 35 additions and 2 deletions.
37 changes: 35 additions & 2 deletions kubejs/server_scripts/gregtech/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1812,6 +1812,40 @@ const registerGTCEURecipes = (event) => {

// #endregion

// #region Move MV superconductor to early HV instead of post-vac freezer

event.remove({id: 'gtceu:shaped/hv_chemical_bath' })
event.shaped('gtceu:hv_chemical_bath', [
'ABC',
'DEA',
'FGF'
], {
A: 'gtceu:hv_conveyor_module',
B: 'gtceu:tempered_glass',
C: 'gtceu:gold_single_cable',
D: 'gtceu:hv_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')

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)

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)

// #endregion

// #region Add all glass colors to macerator/hammer
event.remove({id: "gtceu:macerator/macerate_glass"});
event.recipes.gtceu.macerator("gtceu:macerator/macerate_glass")
Expand All @@ -1831,8 +1865,7 @@ const registerGTCEURecipes = (event) => {
.duration(6)
.EUt(2)

event.replaceInput(
{id: "gtceu:shaped/glass_dust_hammer"},
event.replaceInput({id: "gtceu:shaped/glass_dust_hammer"},
"minecraft:glass",
"#forge:glass"
);
Expand Down

0 comments on commit c9c8179

Please sign in to comment.