fixes + changelog
This commit is contained in:
parent
dd889aa811
commit
097dd72e72
5 changed files with 48 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ const registerGTCEURecipes = (event) => {
|
|||
'2x #forge:dusts/wood',
|
||||
'4x #forge:sand'
|
||||
)
|
||||
.circuit(1)
|
||||
.inputFluids(Fluid.of('minecraft:water', 1000))
|
||||
.itemOutputs('4x gtceu:fertilizer')
|
||||
.duration(300)
|
||||
|
|
@ -23,6 +24,7 @@ const registerGTCEURecipes = (event) => {
|
|||
'2x #forge:dusts/wood',
|
||||
'4x #forge:sand'
|
||||
)
|
||||
.circuit(1)
|
||||
.inputFluids(Fluid.of('minecraft:water', 1000))
|
||||
.itemOutputs('4x gtceu:fertilizer')
|
||||
.duration(300)
|
||||
|
|
|
|||
|
|
@ -2404,6 +2404,26 @@ const registerTFCRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Рецепты зерен
|
||||
|
||||
global.TFC_QUERN_GRAIN_RECIPE_COMPONENTS.forEach(element => {
|
||||
|
||||
event.recipes.gtceu.macerator(`tfg:${element.name}`)
|
||||
.itemInputs(element.input)
|
||||
.itemOutputs(element.output)
|
||||
.chancedOutput('tfc:straw', 7000, 500)
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
||||
event.recipes.tfc.quern(element.output, element.input)
|
||||
.id(`tfg:quern/${element.name}`)
|
||||
|
||||
event.recipes.createMilling(element.output, element.input)
|
||||
.id(`tfg:milling/${element.name}`)
|
||||
})
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Рецепты муки
|
||||
|
||||
global.TFC_QUERN_FLOUR_RECIPE_COMPONENTS.forEach(element => {
|
||||
|
|
|
|||
|
|
@ -204,6 +204,15 @@ const registerTFCBlockTags = (event) => {
|
|||
|
||||
event.add('tfc:glass_basin_blocks', 'gtceu:brass_block')
|
||||
event.add('tfc:glass_pouring_table', 'gtceu:brass_block')
|
||||
|
||||
event.add('tfc:glass_basin_blocks', 'tfc:red_kaolin_clay')
|
||||
event.add('tfc:glass_pouring_table', 'tfc:red_kaolin_clay')
|
||||
|
||||
event.add('tfc:glass_basin_blocks', 'tfc:pink_kaolin_clay')
|
||||
event.add('tfc:glass_pouring_table', 'tfc:pink_kaolin_clay')
|
||||
|
||||
event.add('tfc:glass_basin_blocks', 'tfc:white_kaolin_clay')
|
||||
event.add('tfc:glass_pouring_table', 'tfc:white_kaolin_clay')
|
||||
}
|
||||
|
||||
const registerTFCFluidTags = (event) => {
|
||||
|
|
|
|||
|
|
@ -921,6 +921,15 @@ global.TFC_QUERN_POWDER_RECIPE_COMPONENTS = [
|
|||
{ input: '#forge:dusts/borax', output: '4x tfc:powder/flux', name: 'flux_powder' }
|
||||
];
|
||||
|
||||
global.TFC_QUERN_GRAIN_RECIPE_COMPONENTS = [
|
||||
{ input: 'tfc:food/barley', output: 'tfc:food/barley_grain', name: 'barley_grain' },
|
||||
{ input: 'tfc:food/maize', output: 'tfc:food/maize_grain', name: 'maize_grain' },
|
||||
{ input: 'tfc:food/oat', output: 'tfc:food/oat_grain', name: 'oat_grain' },
|
||||
{ input: 'tfc:food/rye', output: 'tfc:food/rye_grain', name: 'rye_grain' },
|
||||
{ input: 'tfc:food/rice', output: 'tfc:food/rice_grain', name: 'rice_grain' },
|
||||
{ input: 'tfc:food/wheat', output: 'tfc:food/wheat_grain', name: 'wheat_grain' },
|
||||
];
|
||||
|
||||
global.TFC_QUERN_FLOUR_RECIPE_COMPONENTS = [
|
||||
{ input: 'tfc:food/barley_grain', output: '2x tfc:food/barley_flour', name: 'barley_flour' },
|
||||
{ input: 'tfc:food/maize_grain', output: '2x tfc:food/maize_flour', name: 'maize_flour' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue