Delight Lib
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
🖼️ Gallery (3 images)
🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #1262 of 1284 fabric mods in this game by downloads
📋 About This Mod
<center> !(https://cdn.modrinth.com/data/rmDY6fYt/images/5d6afc0c897d26557b68c4b6ae51872d42b0ae89.png) </center> **A utility library for Farmer's Delight add-on developers** that makes it a lot easier to create food items, knives, crates and bags, cabinets, and manage recipes. This means developers can make their own add-ons much quicker and only worry about the textures and models. (https://github.com/axperty/delightlib/wiki/Getting-Started) | (https://github.com/axperty/delightlib/wiki/Create-your-own-Farmer's-Delight-add‐on) ## ✨ Features: Delight Lib allows the creation of these items and blocks for Farmer's Delight using just a few lines of code: - Food items - Placeable food items - Cabinets - Crates and bags - Knives - Crops ## 🛠️ Code Examples: Below are minimal examples showing the library syntax. (https://github.com/axperty/delightlib/wiki/Getting-Started) for full tutorials on building a complete add-on from scratch. ### Creative Tab: Initialize your add-on and create a creative tab with a custom item icon: ```java var DelightLib = DelightAddon.create("Mod Name", bus) .withCreativeTab("Mod Name", () -> new ItemStack(Items.BREAD)); ``` ### Knives Register a custom knife: ```java addon.knife("obsidian_knife", Tiers.DIAMOND).build(); ``` ### Food Items Register a food item with custom stats: ```java addon.food("fried_egg") .nutrition(4) .saturation(0.4f) .fast() .build(); ``` ### Cooking Pot Recipes Register a cooking pot recipe with custom ingredients: ```java 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 Register a custom cabinet with a crafting recipe: ```java addon.cabinet("spruce_cabinet") .recipe(b -> b.grid("SSS", "T T", "SSS") .define('S', "minecraft:spruce_slab") .define('T', "minecraft:spruce_trapdoor")) .build(); ``` ### Crops Register a full crop system: ```java addon.crop("corn").build(); ``` <center> (https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/patreon-singular_64h.png)](https://www.patreon.com/Axperty) (https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/paypal-singular_64h.png)](https://paypal.me/kevgelhorn) (https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/kofi-singular_64h.png)](https://ko-fi.com/axperty) </center>
!(https://cdn.modrinth.com/data/rmDY6fYt/images/5d6afc0c897d26557b68c4b6ae51872d42b0ae89.png)
A utility library for Farmer's Delight add-on developers that makes it a lot easier to create food items, knives, crates and bags, cabinets, and manage recipes. This means developers can make their own add-ons much quicker and only worry about the textures and models.
(https://github.com/axperty/delightlib/wiki/Getting-Started) | (https://github.com/axperty/delightlib/wiki/Create-your-own-Farmer's-Delight-add‐on)
## ✨ Features:
Delight Lib allows the creation of these items and blocks for Farmer's Delight using just a few lines of code:
- Food items
- Placeable food items
- Cabinets
- Crates and bags
- Knives
- Crops
## 🛠️ Code Examples:
Below are minimal examples showing the library syntax. (https://github.com/axperty/delightlib/wiki/Getting-Started) for full tutorials on building a complete add-on from scratch.
### Creative Tab: Initialize your add-on and create a creative tab with a custom item icon: ```java var DelightLib = DelightAddon.create("Mod Name", bus) .withCreativeTab("Mod Name", () -> new ItemStack(Items. BREAD)); ```
### Knives Register a custom knife: ```java addon.knife("obsidian_knife", Tiers. DIAMOND).build(); ```
### Food Items Register a food item with custom stats: ```java addon.food("fried_egg") .nutrition(4) .saturation(0. 4f) .fast() .build(); ```
### Cooking Pot Recipes Register a cooking pot recipe with custom ingredients: ```java 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 Register a custom cabinet with a crafting recipe: ```java addon.cabinet("spruce_cabinet") .recipe(b -> b.grid("SSS", "T T", "SSS") .define('S', "minecraft:spruce_slab") .define('T', "minecraft:spruce_trapdoor")) .build(); ```
### Crops Register a full crop system: ```java addon.crop("corn").build(); ```
[!(https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/patreon-singular_64h.png)](https://www.patreon.com/Axperty) [!(https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/paypal-singular_64h.png)](https://paypal.me/kevgelhorn) [!(https://raw.githubusercontent.com/intergrav/devins-badges/refs/heads/v3/assets/cozy/donate/kofi-singular_64h.png)](https://ko-fi.com/axperty)
📊 Mod Details
- Game
- Minecraft Mods
- Author
- Axperty
- Version
- 26.06.23-26.2-fabric
- Downloads
- 426,304
- Endorsements
- 45
- Category
- fabric
- Created
- 5/5/2026
- Updated
- 6/24/2026
- Game Versions
- 26.2
- Tags
- library
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Delight Lib support?
The author lists 26.2. Other versions may work but are untested by the author.
What is the latest version of Delight Lib?
Version 26.06.23-26.2-fabric, published 2026-06-24 with 426,304 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await


