#custom celestisynth recipe script
5 messages · Page 1 of 1 (latest)
let me just send the raw code
ServerEvents.recipes(e => {
e.custom({
type: 'celestisynth:starlit_factory',
// the item that appears in the left slot
core_material: {
item: 'minecraft:grass_block'
},
// the item that appears in the bottom slot
extra_core_material: {
item: 'minecraft:dirt'
},
// recipe duration IN TICKS!!!
forging_time: 360,
result: "goety_revelation:apocalyptium_ingot",
// item that appears in the right slot
supporting_core_material: {
item: 'minecraft:stone'
// pretty self explanatory i'd say? hopefully?
},
supporting_material_bottom: {
item: 'minecraft:iron_ingot'
},
supporting_material_middle: {
item: 'minecraft:gold_ingot'
},
supporting_material_top: {
item: 'minecraft:iron_ingot'
},
})
});
