Merge pull request #680 from Juzrm/main
Craft recipe for framed chest so it isn't cheaper then the alternatives
This commit is contained in:
commit
7d6755d4b9
1 changed files with 25 additions and 1 deletions
|
|
@ -409,4 +409,28 @@ const registerFramedBlocksRecipes = (event) => {
|
||||||
E: 'framedblocks:framed_cube'
|
E: 'framedblocks:framed_cube'
|
||||||
}).id('framedblocks:powered_framing_saw')
|
}).id('framedblocks:powered_framing_saw')
|
||||||
|
|
||||||
|
// Framed Chest
|
||||||
|
event.shapeless(
|
||||||
|
Item.of('framedblocks:framed_chest', 1),
|
||||||
|
[
|
||||||
|
'gtceu:wood_crate',
|
||||||
|
'framedblocks:framed_cube',
|
||||||
|
]
|
||||||
|
).id('framedblocks:framed_chest')
|
||||||
|
|
||||||
|
event.custom({
|
||||||
|
type: "framedblocks:frame",
|
||||||
|
additives: [
|
||||||
|
{
|
||||||
|
"count": 1,
|
||||||
|
"ingredient": {
|
||||||
|
item: "gtceu:wood_crate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
material: 6144,
|
||||||
|
result: {
|
||||||
|
item: "framedblocks:framed_chest"
|
||||||
|
}
|
||||||
|
}).id('framedblocks:framing_saw/framed_chest')
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue