Added a recipe to craft old gregtech facades into ones with a new texture
This commit is contained in:
parent
7c96161bd7
commit
8e77b5dfc5
2 changed files with 10 additions and 0 deletions
|
|
@ -7,6 +7,7 @@
|
|||
- Added some mossy cobblestone to the beneath @Pyritie
|
||||
- Hardened non-TFC rocks are now craftable (#2447) @glitchplaysgames714
|
||||
- Magma blocks are now hot to hold @Pyritie
|
||||
- Added a recipe to craft old gregtech facades into ones with a new texture @Pyritie
|
||||
### Bug fixes
|
||||
- Fixed some curving press tool head recipes being cheaper than intended (#2478) @Pyritie
|
||||
- Fixed some bastion chests being empty @Pyritie
|
||||
|
|
|
|||
|
|
@ -190,6 +190,15 @@ const registerGTCEURecipes = (event) => {
|
|||
return result;
|
||||
}).id('gtceu:facade_cover32');
|
||||
|
||||
event.shapeless(Item.of('gtceu:facade_cover', 8, '{Facade: {Count:1b,id:"minecraft:stone"}}'), ['4x gtceu:facade_cover', "#tfg:whitelisted/facades", '4x gtceu:facade_cover'])
|
||||
.modifyResult((craftingGrid, result) => {
|
||||
let blockID = craftingGrid.find(Ingredient.of("#tfg:whitelisted/facades")).id
|
||||
|
||||
let facadeNBT = `{Facade: {Count:1b,id:` + `'${blockID}'` + `}}`
|
||||
result.nbt = facadeNBT
|
||||
return result;
|
||||
}).id('gtceu:facade_cover_recycle');
|
||||
|
||||
// Diamond gear
|
||||
event.recipes.gtceu.laser_engraver('tfg:diamond_gear')
|
||||
.itemInputs('4x #forge:plates/diamond')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue