recipes & items
This commit is contained in:
@@ -14,6 +14,18 @@ ServerEvents.recipes(event => {
|
||||
I: 'create:brass_ingot'
|
||||
}
|
||||
)
|
||||
|
||||
event.shaped('minecraft:elytra', [// arg 1: output
|
||||
'CDC',
|
||||
'MNM', // arg 2: the shape (array of strings)
|
||||
'M M'
|
||||
], {
|
||||
C: 'minecraft:chorus_fruit',
|
||||
N: 'minecraft:nether_star',
|
||||
M: 'minecraft:phantom_membrane', //arg 3: the mapping object
|
||||
D: 'minecraft:diamond', //arg 3: the mapping object
|
||||
}
|
||||
)
|
||||
//SHAPELESS
|
||||
event.shapeless('minecraft:blaze_rod', [ // arg 1: output
|
||||
'6x minecraft:blaze_powder'
|
||||
@@ -31,4 +43,11 @@ event.smelting('6x minecraft:blaze_powder', 'minecraft:blaze_rod')
|
||||
|
||||
// Burn sticks into torches on the Campfire:
|
||||
//event.campfireCooking('minecraft:leather', 'minecraft:rotten_flesh')
|
||||
event.recipes.melterMelting(Fluid.of('minecraft:lava', 1000),"minecraft:obsidian").processingTime(200);
|
||||
event.recipes.melterMelting(Fluid.of('create:honey', 1000),"minecraft:honey_block").processingTime(200);
|
||||
event.recipes.melterMelting(Fluid.of('minecraft:lava', 500),"#forge:stone").processingTime(200);
|
||||
|
||||
event.remove({ output: 'dimpaintings:end_painting' })
|
||||
|
||||
|
||||
})
|
||||
Reference in New Issue
Block a user