parent
aa85b679c7
commit
519e7403ad
3 changed files with 42 additions and 1 deletions
|
|
@ -7,6 +7,9 @@ const registerCreateConnectedRecipes = (event) => {
|
|||
event.remove({ output: item })
|
||||
})
|
||||
|
||||
event.stonecutting('create_connected:copycat_box', '#forge:ingots/zinc')
|
||||
event.stonecutting('2x create_connected:copycat_catwalk', '#forge:ingots/zinc')
|
||||
|
||||
// Remove Fluid Vessel Crafting
|
||||
event.remove({ id: 'create_connected:crafting/kinetics/fluid_vessel' })
|
||||
|
||||
|
|
|
|||
|
|
@ -176,7 +176,44 @@ const registerCreatedecoRecipes = (event) => {
|
|||
//#endregion
|
||||
|
||||
event.stonecutting('4x createdeco:andesite_mesh_fence', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('4x createdeco:andesite_catwalk', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('2x createdeco:andesite_catwalk_stairs', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('8x createdeco:andesite_catwalk_railing', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('4x createdeco:andesite_facade', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('3x createdeco:andesite_support_wedge', '#forge:ingots/tin_alloy')
|
||||
event.stonecutting('4x createdeco:iron_mesh_fence', '#forge:ingots/wrought_iron')
|
||||
event.stonecutting('4x createdeco:iron_catwalk', '#forge:ingots/wrought_iron')
|
||||
event.stonecutting('2x createdeco:iron_catwalk_stairs', '#forge:ingots/wrought_iron')
|
||||
event.stonecutting('8x createdeco:iron_catwalk_railing', '#forge:ingots/wrought_iron')
|
||||
event.stonecutting('4x createdeco:iron_facade', '#forge:ingots/wrought_iron')
|
||||
event.stonecutting('3x createdeco:iron_support_wedge', '#forge:ingots/wrought_iron')
|
||||
|
||||
event.shaped('8x createdeco:iron_catwalk_railing', [
|
||||
'AAA',
|
||||
'B B',
|
||||
'B B'
|
||||
], {
|
||||
A: '#forge:plates/wrought_iron',
|
||||
B: 'tfc:metal/bars/wrought_iron'
|
||||
}).id('createdeco:iron_catwalk_railing')
|
||||
|
||||
event.shaped('4x createdeco:iron_catwalk', [
|
||||
' A ',
|
||||
'ABA',
|
||||
' A '
|
||||
], {
|
||||
A: '#forge:plates/wrought_iron',
|
||||
B: 'tfc:metal/bars/wrought_iron'
|
||||
}).id('createdeco:iron_catwalk')
|
||||
|
||||
event.shaped('2x createdeco:iron_catwalk_stairs', [
|
||||
' A',
|
||||
'AB'
|
||||
], {
|
||||
A: 'createdeco:iron_catwalk',
|
||||
B: 'tfc:metal/bars/wrought_iron'
|
||||
}).id('createdeco:iron_catwalk_stairs')
|
||||
|
||||
|
||||
// #region Bars + Doors
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,8 @@ const registerCreateDecoItemTags = (event) => {
|
|||
});
|
||||
//#endregion
|
||||
|
||||
event.remove('createdeco:internal/blocks/iron_blocks', '#forge:storage_blocks/iron')
|
||||
event.remove('createdeco:internal/blocks/iron_blocks', 'minecraft:iron_block')
|
||||
event.remove('createdeco:internal/blocks/industrial_iron_blocks', 'create:industrial_iron_block')
|
||||
|
||||
//#region Apply Tags
|
||||
metalBars.forEach(metalBars => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue