
Delight Lib
Create Farmer's Delight add-ons for many mod loaders and versions easily.
Обновлён 24 июня 2026 г. · опубликован 1 мая 2026 г.

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.
Geting Started | Create your own Farmer's Delight add-on for beginners
✨ 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. Read the documentation 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:
var DelightLib = DelightAddon.create("Mod Name", bus)
.withCreativeTab("Mod Name", () -> new ItemStack(Items.BREAD));
Knives
Register a custom knife:
addon.knife("obsidian_knife", Tiers.DIAMOND).build();
Food Items
Register a food item with custom stats:
addon.food("fried_egg")
.nutrition(4)
.saturation(0.4f)
.fast()
.build();
Cooking Pot Recipes
Register a cooking pot recipe with custom ingredients:
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:
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:
addon.crop("corn").build();
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 26.06.23-26.2-fabric | Релиз | 26.2 | fabric | 24 июня 2026 г. | .jar (60 КБ) |
| 26.05.20-1.21.11-fabric | Релиз | 1.21.11 | fabric | 21 мая 2026 г. | .jar (127 КБ) |
| 26.05.18-26.1-fabric | Релиз | 26.1, 26.1.1, 26.1.2 | fabric | 19 мая 2026 г. | .jar (61 КБ) |
| 26.05.18-1.21-neoforge | Релиз | 1.21, 1.21.1 | neoforge | 19 мая 2026 г. | .jar (58 КБ) |
| 26.05.18-1.21-fabric | Релиз | 1.21, 1.21.1 | fabric | 19 мая 2026 г. | .jar (60 КБ) |
| 26.05.18-1.20-forge | Релиз | 1.20, 1.20.1 | forge, neoforge | 19 мая 2026 г. | .jar (58 КБ) |
| 26.05.18-1.20-fabric | Релиз | 1.20, 1.20.1 | fabric | 19 мая 2026 г. | .jar (3.8 МБ) |
| 26.05.09-26.1-fabric | Релиз | 26.1, 26.1.1, 26.1.2 | fabric | 9 мая 2026 г. | .jar (58 КБ) |
| 26.05.07-1.20-forge | Релиз | 1.20, 1.20.1 | forge, neoforge | 8 мая 2026 г. | .jar (56 КБ) |
| 26.05.06-1.20-fabric | Релиз | 1.20, 1.20.1 | fabric | 7 мая 2026 г. | .jar (3.8 МБ) |
| 26.05.06-1.21-fabric | Релиз | 1.21, 1.21.1 | fabric | 7 мая 2026 г. | .jar (57 КБ) |
| 26.05.06-1.21-neoforge | Релиз | 1.21, 1.21.1 | neoforge | 7 мая 2026 г. | .jar (56 КБ) |
| 26.05.06-1.20-forge | Релиз | 1.20, 1.20.1 | forge, neoforge | 7 мая 2026 г. | .jar (56 КБ) |
| 26.05.06-1.20-fabric | Релиз | 1.20, 1.20.1 | fabric | 7 мая 2026 г. | .jar (3.8 МБ) |
| 26.05.03-1.21-neoforge | Релиз | 1.21, 1.21.1 | neoforge | 4 мая 2026 г. | .jar (52 КБ) |
Показаны последние 15 из 20 версий. Все версии — на Modrinth.
Ченджлог
26.06.23-26.2-fabricРелиз26.2 · 24 июня 2026 г.

✨ What's New:
- Added support for Minecraft 26.2.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.20-1.21.11-fabricРелиз1.21.11 · 21 мая 2026 г.

✨ What's New:
- Added support for Farmer's Delight Refabricated latest/1.21.11.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.18-26.1-fabricРелиз26.1, 26.1.1, 26.1.2 · 19 мая 2026 г.

✨ What's New:
- Refactor builders and introduce
RecipeRequiredBuilder(thanks, EvanHsieh0415!). - Add Javadoc for public API, refactor public api interface for access (thanks, EvanHsieh0415!).
- Minor improvements.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.18-1.21-neoforgeРелиз1.21, 1.21.1 · 19 мая 2026 г.

✨ What's New:
- Refactor builders and introduce
RecipeRequiredBuilder(thanks, EvanHsieh0415!). - Add Javadoc for public API, refactor public api interface for access (thanks, EvanHsieh0415!).
- Minor improvements.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.18-1.21-fabricРелиз1.21, 1.21.1 · 19 мая 2026 г.

✨ What's New:
- Refactor builders and introduce
RecipeRequiredBuilder(thanks, EvanHsieh0415!). - Add Javadoc for public API, refactor public api interface for access (thanks, EvanHsieh0415!).
- Minor improvements.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.18-1.20-forgeРелиз1.20, 1.20.1 · 19 мая 2026 г.

✨ What's New:
- Refactor builders and introduce
RecipeRequiredBuilder(thanks, EvanHsieh0415!). - Add Javadoc for public API, refactor public api interface for access (thanks, EvanHsieh0415!).
- Minor improvements.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.18-1.20-fabricРелиз1.20, 1.20.1 · 19 мая 2026 г.

✨ What's New:
- Refactor builders and introduce
RecipeRequiredBuilder(thanks, EvanHsieh0415!). - Add Javadoc for public API, refactor public api interface for access (thanks, EvanHsieh0415!).
- Minor improvements.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
26.05.09-26.1-fabricРелиз26.1, 26.1.1, 26.1.2 · 9 мая 2026 г.

✨ What's New:
- Added support for Farmer's Delight Refabricated 1.3.1/26.1.
📝 Feedback and Support:
- Found a bug or have suggestions? Submit an issue on GitHub.
- Support this mod by creating your own server or donating via PayPal.
Полная история изменений — на Modrinth.
Комментарии
Загружаем…





