This mod adds a Blender and Printer block, allowing conversion of items based on weighted custom shapeless recipes. This mod does not add any blender or printer recipes by default. Modpack developers must define recipes themselves through a datapack. This mod is useless unless configured by a modpack.
Modpack developers must configure this mod in order for it to be useful.
That means using either a datapack or a modpack customization mod to add blender and printer recipes.
recipes.addJsonRecipe("blend_purple_dye", {
type: "forbiddensmoothies:blender",
ingredients: [<item:minecraft:red_dye>, <item:minecraft:blue_dye>],
result: <item:minecraft:purple_dye>,
});
recipes.addJsonRecipe("print_emerald", {
type: "forbiddensmoothies:printer",
ingredients: [<item:minecraft:lime_dye>, <item:minecraft:lime_dye>, <item:minecraft:lime_dye>],
result: <item:minecraft:emerald>,
});