🌐 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.

Delight Lib Mod

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

Filter by

For Minecraft 26.2

Fabric 60 KB Aug 29, 2026
Fabric 60 KB Aug 29, 2026

For Minecraft 26.1.2, 26.1.1, 26.1

Fabric 61 KB Aug 29, 2026

For Minecraft 1.21.11, 1.21.10, 1.21.9

NeoForge 58 KB Aug 29, 2026
Fabric 127 KB Aug 29, 2026

For Minecraft 1.21.1, 1.21

Fabric 60 KB Aug 29, 2026

For Minecraft 1.20.1, 1.20

Fabric 4 MB Aug 29, 2026
Forge, NeoForge 58 KB Aug 29, 2026

Click to rate this post!
[Total: 0 Average: 0]