who is peat and why does he have a use?

This commit is contained in:
Pyritie 2026-01-15 22:58:10 +00:00
parent e6f7b5e4ee
commit e3a365fa84
3 changed files with 27 additions and 1 deletions

View file

@ -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

View file

@ -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', [

View file

@ -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)