added assembler recipes for the create deco bricks, fixed vanilla bricks only crafting a single at a time
This commit is contained in:
parent
d8c85170eb
commit
b5eafc98ac
3 changed files with 17 additions and 1 deletions
|
|
@ -147,6 +147,13 @@ const registerCreatedecoRecipes = (event) => {
|
|||
D: powder,
|
||||
M: `tfc:mortar`
|
||||
});
|
||||
|
||||
event.recipes.gtceu.assembler(`createdeco:${type}_bricks`)
|
||||
.itemInputs('5x minecraft:brick', powder)
|
||||
.inputFluids(Fluid.of('gtceu:concrete', 144))
|
||||
.itemOutputs(`4x createdeco:${type}_bricks`)
|
||||
.duration(50)
|
||||
.EUt(7)
|
||||
});
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -607,4 +607,6 @@ function removeGTCEURecipes(event) {
|
|||
event.remove({ id: 'gtceu:assembler/spyglass' })
|
||||
|
||||
event.remove({ id: 'gtceu:chemical_reactor/ghast_tear_separation' })
|
||||
|
||||
event.remove({ id: 'gtceu:compressor/bricks' })
|
||||
}
|
||||
|
|
|
|||
|
|
@ -772,7 +772,7 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#region Выход: Кирпич
|
||||
|
||||
event.shaped('minecraft:bricks', [
|
||||
event.shaped('4x minecraft:bricks', [
|
||||
'BAB',
|
||||
'ABA',
|
||||
'BAB'
|
||||
|
|
@ -781,6 +781,13 @@ const registerMinecraftRecipes = (event) => {
|
|||
B: 'minecraft:brick'
|
||||
}).id('tfc:crafting/bricks')
|
||||
|
||||
event.recipes.gtceu.assembler('minecraft:bricks')
|
||||
.itemInputs('5x minecraft:brick')
|
||||
.inputFluids(Fluid.of('gtceu:concrete', 144))
|
||||
.itemOutputs(`4x minecraft:bricks`)
|
||||
.duration(50)
|
||||
.EUt(7)
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Элитра
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue