Crush

Add a new Crush recipe

server_scripts

These recipes will affect the usage of crush glyph on blocks and item entities.

KeyDescription
chanceThe chance of the output being produced, from 0-1
skip_block_placeWhether Crush will effect this item when floating in the world
ServerEvents.recipes(event => {
event.custom({
type: "ars_nouveau:crush",
input: {
item: "minecraft:azure_bluet",
},
output: [
{
chance: 1.0,
count: 2,
item: "minecraft:light_gray_dye",
maxRange: 1
}
],
skip_block_place: false
});
});