Minecraft Modpack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
811 B

// priority: 0
onEvent("recipes", event => {
for (let material of Object.values(global.unification))
if (material.ingot && material.dust)
event.recipes.createCrushing(material.dust[0], material.ingot[0]);
for (let item of [ "apatite", "cinnabar", "niter", "sulfur" ])
event.recipes.createCrushing(`thermal:${item}_dust`, `thermal:${item}`);
for (let item of [ "diamond", "emerald", "quartz" ])
event.recipes.createCrushing(`thermal:${item}_dust`, `minecraft:${item}`);
event.recipes.createCrushing("thermal:lapis_dust", "minecraft:lapis_lazuli");
event.recipes.createCrushing("ae2:certus_quartz_dust", "#ae2:all_certus_quartz");
event.recipes.createCrushing("ae2:fluix_dust", "ae2:fluix_crystal");
event.recipes.createCrushing("ae2:sky_dust", "ae2:sky_stone_block");
});