added create sandpaper recipes for early game gems, unified observer recipes
This commit is contained in:
parent
4d7fc30409
commit
3d2ed09f9b
9 changed files with 61 additions and 8 deletions
|
|
@ -648,20 +648,50 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#region Выход: Наблюдатель
|
||||
|
||||
event.shaped('minecraft:observer', [
|
||||
'AAA',
|
||||
'BBC',
|
||||
'AAA'
|
||||
], {
|
||||
A: '#forge:cobblestone',
|
||||
B: 'minecraft:redstone',
|
||||
C: '#forge:gems/certus_quartz'
|
||||
}).id('tfg:shaped/observer_certus_q')
|
||||
|
||||
event.shaped('minecraft:observer', [
|
||||
'AAA',
|
||||
'BBC',
|
||||
'AAA'
|
||||
], {
|
||||
A: '#forge:cobblestone',
|
||||
B: 'minecraft:redstone',
|
||||
C: '#forge:gems/nether_quartz'
|
||||
}).id('tfg:shaped/observer_nether_q')
|
||||
|
||||
event.shaped('minecraft:observer', [
|
||||
'AAA',
|
||||
'BBC',
|
||||
'AAA'
|
||||
], {
|
||||
A: '#forge:cobblestone',
|
||||
B: 'minecraft:redstone',
|
||||
C: '#forge:gems/quartzite'
|
||||
}).id('tfg:shaped/observer_quartzite')
|
||||
|
||||
event.recipes.gtceu.assembler('observer_certus_quartz')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:plates/certus_quartz')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:gems/certus_quartz')
|
||||
.itemOutputs('minecraft:observer')
|
||||
.duration(100)
|
||||
.EUt(30)
|
||||
|
||||
event.recipes.gtceu.assembler('observer_nether_quartz')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:plates/nether_quartz')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:gems/nether_quartz')
|
||||
.itemOutputs('minecraft:observer')
|
||||
.duration(100)
|
||||
.EUt(30)
|
||||
|
||||
event.recipes.gtceu.assembler('observer_quartzite')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:plates/quartzite')
|
||||
.itemInputs('6x #forge:cobblestone', '2x minecraft:redstone', '#forge:gems/quartzite')
|
||||
.itemOutputs('minecraft:observer')
|
||||
.duration(100)
|
||||
.EUt(30)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue