Well-rounded Minecraft 1.18.2 modpack featuring Tech, Magic, Exploration and Decoration content. Made with love. 💚
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.
 

14 lines
696 B

// priority: 0
onEvent("recipes", event => {
let primary = "2x ae2:certus_quartz_dust";
let secondary = Item.of("ae2:certus_quartz_crystal").withChance(0.25);
let input = "#forge:ores/certus_quartz";
event.recipes.thermal.pulverizer([ primary, secondary ], input);
event.recipes.immersiveengineeringCrusher("3x ae2:certus_quartz_dust", input);
let xp = Item.of("create:experience_nugget").withChance(0.75);
event.recipes.createCrushing([ primary, secondary, xp, Item.of("minecraft:cobblestone").withChance(0.125) ], "ae2:quartz_ore");
event.recipes.createCrushing([ primary, secondary, xp, Item.of("minecraft:deepslate").withChance(0.125) ], "ae2:deepslate_quartz_ore");
});