ModsJava
Delight Lib Mod (26.2, 1.20.1) – Craft Your Own Cooking Recipes and Custom Crops
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…
⬇ DownloadDelight 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();
Delight Lib Mod Download Links
Delight Lib Mod (26.2, 1.20.1) – Craft Your Own Cooking Recipes and Custom Crops is a free Minecraft Java mod. Compatible with Minecraft 1.20.1. Download it and open it directly in the game.