Alloy Kiln
Introducing a modification for creating unique metal alloys! This convenient tool opens up wide possibilities for modification developers and pack creators to customize in-game recipes.
The key element of this modification is a specialized furnace for melting and combining various metals. The device's operation is extremely simple: you load the components of the future alloy, wait for the process to complete, and receive the finished product.
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
});
The product comes pre-configured for KubeJS support, allowing for easy customization and addition of your own recipes. The modification includes a ready-made recipe example for quick start, helping developers understand the system's operating principle.