This commit is contained in:
Dmitry
2023-11-26 16:04:11 +07:00
parent 08d698c160
commit afb5d8c895
7 changed files with 71 additions and 1 deletions

View File

@@ -24,6 +24,20 @@ const registerGTRecipes = (event) => {
// Удаление рецептов связанных с BioChaff
event.remove({id: 'gtceu:macerator/dirt_from_bio_chaff'})
// Удаление рецептов связанных с Wheat Dust
event.remove({id: 'gtceu:packer/package_wheat_tiny_dust'})
event.remove({id: 'gtceu:packer/package_wheat_small_dust'})
event.remove({id: 'gtceu:packer/unpackage_wheat_tiny_dust'})
event.remove({id: 'gtceu:packer/unpackage_wheat_small_dust'})
event.remove({id: 'gtceu:shaped/tiny_dust_assembling_wheat'})
event.remove({id: 'gtceu:shaped/small_dust_assembling_wheat'})
event.remove({id: 'gtceu:shaped/tiny_dust_disassembling_wheat'})
event.remove({id: 'gtceu:shaped/small_dust_disassembling_wheat'})
event.remove({id: 'gtceu:macerator/macerate_wheat'})
event.remove({id: 'gtceu:macerator/macerate_hay_block'})
event.remove({id: 'gtceu:shapeless/wheat_to_dust'})
// Удаление других рецептов
//

View File

@@ -163,6 +163,13 @@ const registerMinecraftRecipes = (event) => {
event.remove({id: 'gtceu:shaped/iron_bars'})
event.remove({id: 'gtceu:assembler/iron_bars'})
// Удаление рецептов связанных с Wheat
event.remove({id: 'minecraft:packed_mud'})
event.remove({id: 'minecraft:cookie'})
event.remove({id: 'minecraft:cake'})
event.remove({id: 'minecraft:bread'})
event.remove({id: 'gtceu:packer/hay_block'})
// Удаление других рецептов
event.remove({id: 'minecraft:tripwire_hook'})
event.remove({id: 'minecraft:blast_furnace'})

View File

@@ -826,6 +826,48 @@ const registerTFCRecipes = (event) => {
.itemOutputs('16x tfc:mortar')
.duration(800)
.EUt(8)
// Barley Grain -> Barley Floor
event.recipes.gtceu.macerator('barley_flour')
.itemInputs('tfc:food/barley_grain')
.itemOutputs('2x tfc:food/barley_flour')
.duration(400)
.EUt(16)
// Maize Grain -> Maize Floor
event.recipes.gtceu.macerator('maize_flour')
.itemInputs('tfc:food/maize_grain')
.itemOutputs('2x tfc:food/maize_flour')
.duration(400)
.EUt(16)
// Oat Grain -> Oat Floor
event.recipes.gtceu.macerator('oat_flour')
.itemInputs('tfc:food/oat_grain')
.itemOutputs('2x tfc:food/oat_flour')
.duration(400)
.EUt(16)
// Rye Grain -> Rye Floor
event.recipes.gtceu.macerator('rye_flour')
.itemInputs('tfc:food/rye_grain')
.itemOutputs('2x tfc:food/rye_flour')
.duration(400)
.EUt(16)
// Rice Grain -> Rice Floor
event.recipes.gtceu.macerator('rice_flour')
.itemInputs('tfc:food/rice_grain')
.itemOutputs('2x tfc:food/rice_flour')
.duration(400)
.EUt(16)
// Wheat Grain -> Wheat Floor
event.recipes.gtceu.macerator('wheat_flour')
.itemInputs('tfc:food/wheat_grain')
.itemOutputs('2x tfc:food/wheat_flour')
.duration(400)
.EUt(16)
}
const registerAutoTFCHeatingRecipes = (event) => {