diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b09a46d..27947abf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,9 +29,11 @@ - You can now also use mars water in gregtech and create boilers @Pyritie - Changed the texture of out-of-season blood lilies so they're findable year-round @Pyritie - Added alloy smelter recipes for jar lids (#2705) @thederpysockdude123 -- Reduced the amount of ambient awoos at night, and crickets/cicadas now require grass plants instead of grass blocks (#2680) @Pyritie +- Reduced the amount of ambient awoos at night, and crickets/cicadas now require grass plants instead of grass blocks. Rivers now have a louder water sound and lakes have a quieter one. (#2680) @Pyritie - You can now use any wrench to remove the extruder molds from the curving press instead of just the create wrench @Pyritie - Added wrapped locometal to gregtech facade blocks (#2726) @Pyritie +- Peat can now be turned into creosote @Pyritie +- Coke oven bricks now require mortar to craft @Pyritie ### Bug fixes - Fixed not being able to craft Paracetamol or Rad-Away @Pyritie - Fixed the missing dried fruit to yeast starter recipe (#2673) @Mqrius diff --git a/kubejs/server_scripts/gregtech/recipes.machines.js b/kubejs/server_scripts/gregtech/recipes.machines.js index 33e2fdc9a..652ba3d16 100644 --- a/kubejs/server_scripts/gregtech/recipes.machines.js +++ b/kubejs/server_scripts/gregtech/recipes.machines.js @@ -238,6 +238,25 @@ function registerGTCEuMachineRecipes(event) { //#region CokeOven + event.remove({ id: 'gtceu:shaped/casing_coke_bricks' }) + event.remove({ id: 'gtceu:compressor/coke_bricks' }) + + event.shaped('gtceu:coke_oven_bricks', [ + 'ABA', + 'BAB', + 'ABA' + ], { + A: 'tfc:mortar', + B: 'gtceu:coke_oven_brick' + }).id('tfg:shaped/coke_oven_bricks') + + event.recipes.gtceu.assembler('tfg:coke_oven_bricks') + .itemInputs('4x gtceu:coke_oven_bricks') + .inputFluids(Fluid.of('gtceu:concrete 90')) + .itemOutputs('gtceu:coke_oven_bricks') + .duration(50) + .EUt(2); + // Coke Oven removeMaceratorRecipe(event, 'macerate_coke_oven') event.recipes.gtceu.shaped('gtceu:coke_oven', [ diff --git a/kubejs/server_scripts/tfg/powergen/recipes.coal.js b/kubejs/server_scripts/tfg/powergen/recipes.coal.js index 6c9227430..a037b573a 100644 --- a/kubejs/server_scripts/tfg/powergen/recipes.coal.js +++ b/kubejs/server_scripts/tfg/powergen/recipes.coal.js @@ -20,6 +20,11 @@ function registerTFGCoalRecipes(event) { .outputFluids(Fluid.of('gtceu:creosote', 2000)) .duration(900) + event.recipes.gtceu.coke_oven("tfg:peat") + .itemInputs('tfc:peat') + .outputFluids(Fluid.of('gtceu:creosote', 1000)) + .duration(900) + event.recipes.gtceu.pyrolyse_oven("tfg:rich_coal_to_tar") .itemInputs('3x gtceu:rich_raw_coal') .chancedOutput('gtceu:dark_ash_dust', 5000, 0)