Forbidden Smoothies
This modification requires Balm to function properly - make sure it's included in your project.
This mod introduces two new blocks to the game: Blender and Printer. Their functionality is based on using shapeless recipes with weight coefficients that are configured individually. Important note: the mod does not include pre-made recipes by default. To activate all capabilities, modpack developers need to configure recipes themselves through datapack. Without appropriate configuration, the mod has no practical use.
Core Features
- Blender - specialized block for mixing and combining source components to obtain new items (requires preliminary setup)
- Printer - device for creating items based on available ingredients (needs configuration)
- Weighted recipe system, allowing different results when multiple recipes match the same source materials
- Ugly Steel Plating - decorative element that can be applied to simplify the visualization of blenders and printers during mass usage
Configuration Guide
Modpack developers need to configure the mod to reveal its potential.
This requires using either datapack or specialized mods for modpack customization to add recipes for blender and printer.
Example for CraftTweaker (mixing red and blue dye to obtain purple):
recipes.addJsonRecipe("blend_purple_dye", {
type: "forbiddensmoothies:blender",
ingredients: [<item:minecraft:red_dye>, <item:minecraft:blue_dye>],
result: <item:minecraft:purple_dye>,
});
Example for CraftTweaker (creating emerald from three lime dyes):
recipes.addJsonRecipe("print_emerald", {
type: "forbiddensmoothies:printer",
ingredients: [<item:minecraft:lime_dye>, <item:minecraft:lime_dye>, <item:minecraft:lime_dye>],
result: <item:minecraft:emerald>,
});