added chisel recipes for stone walls
This commit is contained in:
parent
54e9155f49
commit
0e6b6d5998
2 changed files with 9 additions and 4 deletions
|
|
@ -467,6 +467,14 @@ function registerTFCStoneRecipes(event) {
|
|||
|
||||
//#region Стена
|
||||
|
||||
event.recipes.tfc.chisel(`tfc:rock/raw/${stone}_wall`, `tfc:rock/raw/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/cobble/${stone}_wall`, `tfc:rock/cobble/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/smooth/${stone}_wall`, `tfc:rock/smooth/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/bricks/${stone}_wall`, `tfc:rock/bricks/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/cracked_bricks/${stone}_wall`, `tfc:rock/cracked_bricks/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/mossy_cobble/${stone}_wall`, `tfc:rock/mossy_cobble/${stone}_slab`, 'smooth')
|
||||
event.recipes.tfc.chisel(`tfc:rock/mossy_bricks/${stone}_wall`, `tfc:rock/mossy_bricks/${stone}_slab`, 'smooth')
|
||||
|
||||
// Сырой
|
||||
event.recipes.gtceu.macerator(`raw_wall_${stone}_to_dust`)
|
||||
.itemInputs(`tfc:rock/raw/${stone}_wall`)
|
||||
|
|
|
|||
|
|
@ -179,7 +179,6 @@ function registerTFGRockRecipes(event) {
|
|||
CUTTER.forEach(x => {
|
||||
if ("stair" in x) {
|
||||
event.recipes.tfc.chisel(x.stair, x.raw, 'stair')
|
||||
//event.stonecutting(x.stair, x.raw).id(`${x.raw}_to_${x.stair}`.replace(/:/g, '_'))
|
||||
|
||||
event.recipes.gtceu.macerator(`macerate_${x.stair}`.replace(/:/g, '_'))
|
||||
.itemInputs(x.stair)
|
||||
|
|
@ -194,7 +193,6 @@ function registerTFGRockRecipes(event) {
|
|||
}
|
||||
if ("slab" in x) {
|
||||
event.recipes.tfc.chisel(x.slab, x.raw, 'slab').extraDrop(x.slab)
|
||||
//event.stonecutting(`2x ${x.slab}`, x.raw).id(`${x.raw}_to_${x.slab}`.replace(/:/g, '_'))
|
||||
|
||||
event.recipes.gtceu.macerator(`macerate_${x.slab}`.replace(/:/g, '_'))
|
||||
.itemInputs(`2x ${x.slab}`)
|
||||
|
|
@ -208,8 +206,7 @@ function registerTFGRockRecipes(event) {
|
|||
}
|
||||
}
|
||||
if ("wall" in x) {
|
||||
event.recipes.tfc.chisel(x.slab, x.raw, 'smooth')
|
||||
//event.stonecutting(x.wall, x.raw).id(`${x.raw}_to_${x.wall}`.replace(/:/g, '_'))
|
||||
event.recipes.tfc.chisel(x.wall, x.slab, 'smooth')
|
||||
|
||||
event.recipes.gtceu.macerator(`macerate_${x.wall}`.replace(/:/g, '_'))
|
||||
.itemInputs(x.wall)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue