Delight Lib Mod (26.2, 1.20.1) – Craft Your Own Cooking Recipes and Custom Crops
🌐 Read this article in your language! Choose your preferred language below.
Or pick the one you like:
Delight Lib Mod helps you make custom Farmer’s Delight add-ons with very short lines of code. This library handles the heavy setup for food, tools, crops, and storage blocks so you can focus on making textures and models. It works across different mod loaders to save time during content creation. You can easily register new recipes, cooking pot meals, and unique kitchen cabinets in just a few steps.
![]()
Features:
- Lets you add new food items and placeable dishes with custom nutrition and saturation stats.
- Makes it simple to add custom kitchen cabinets with built-in crafting recipes.
- Provides quick setup for storage crates and bags to pack extra crops.
- Adds custom farmer knives with different material tiers.
- Allows fast registration of brand new crops and farming items.
- Sets up custom cooking pot recipes with specific ingredients, cooking time, and experience rewards.
Code Examples:
Creative Tab:
var DelightLib = DelightAddon.create("Mod Name", bus)
.withCreativeTab("Mod Name", () -> new ItemStack(Items.BREAD));
Knives:
addon.knife("obsidian_knife", Tiers.DIAMOND).build();
Food Items:
addon.food("fried_egg")
.nutrition(4)
.saturation(0.4f)
.fast()
.build();
Cooking Pot Recipes:
addon.cookingRecipe("beef_stew")
.addIngredient("minecraft:cooked_beef")
.addIngredient("minecraft:carrot")
.addIngredient("minecraft:potato")
.result("mymod:beef_stew")
.experience(1.0f)
.cookingTime(200)
.recipeBookTab("meals")
.build();
Cabinets:
addon.cabinet("spruce_cabinet")
.recipe(b -> b.grid("SSS", "T T", "SSS")
.define('S', "minecraft:spruce_slab")
.define('T', "minecraft:spruce_trapdoor"))
.build();
Crops:
addon.crop("corn").build();
How to Install:
New to Minecraft? Follow our step-by-step guide to install Mods on your PC.View Guide
Delight Lib Mod Download Links
For Minecraft 26.2
For Minecraft 26.1.2, 26.1.1, 26.1
For Minecraft
1.21.11,
1.21.10,
1.21.9
All Versions Covered
1.21.11
1.21.10
1.21.9
1.21.8
1.21.7
1.21.6
1.21.5
1.21.4
1.21.1
1.21
All Versions Covered
1.21.11
1.21.10
1.21.9
1.21.8
1.21.7
1.21.6
1.21.5
1.21.4
1.21.1
1.21
For Minecraft 1.21.1, 1.21
For Minecraft 1.20.1, 1.20
Click to rate this post!
[Total: 0 Average: 0]
0




This post has no comments yet. Be the first — your comment will appear here.