
A basic Alloy Kiln, with an example recipe, and built in Kubejs support, mainly for Modpack Devs
event.custom({
type: 'alloykiln:alloy_kiln_processing',
ingredients: [
{ item: 'minecraft:iron_ingot' }, // First ingredient
{ item: 'minecraft:copper_ingot' } // Second ingredient
],
output_item: {
item: 'minecraft:gold_ingot', // Result
count: 1
},
processingTime: 200 // Processing time in ticks
});