Перейти к содержимому
Mineforgian

Delight Lib

Create Farmer's Delight add-ons for many mod loaders and versions easily.

180K загрузок22 подписчиковMITfabricforgeneoforge

Обновлён 24 июня 2026 г. · опубликован 1 мая 2026 г.

  • Delight Lib Banner
  • Delight Lib Logo (without text)
  • Delight Lib Logo (with text)

Delight Lib

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();

Saving for a laptop!

Patreon Button PayPal Button Ko-Fi Button

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
26.06.23-26.2-fabricРелиз26.2fabric24 июня 2026 г..jar (60 КБ)
26.05.20-1.21.11-fabricРелиз1.21.11fabric21 мая 2026 г..jar (127 КБ)
26.05.18-26.1-fabricРелиз26.1, 26.1.1, 26.1.2fabric19 мая 2026 г..jar (61 КБ)
26.05.18-1.21-neoforgeРелиз1.21, 1.21.1neoforge19 мая 2026 г..jar (58 КБ)
26.05.18-1.21-fabricРелиз1.21, 1.21.1fabric19 мая 2026 г..jar (60 КБ)
26.05.18-1.20-forgeРелиз1.20, 1.20.1forge, neoforge19 мая 2026 г..jar (58 КБ)
26.05.18-1.20-fabricРелиз1.20, 1.20.1fabric19 мая 2026 г..jar (3.8 МБ)
26.05.09-26.1-fabricРелиз26.1, 26.1.1, 26.1.2fabric9 мая 2026 г..jar (58 КБ)
26.05.07-1.20-forgeРелиз1.20, 1.20.1forge, neoforge8 мая 2026 г..jar (56 КБ)
26.05.06-1.20-fabricРелиз1.20, 1.20.1fabric7 мая 2026 г..jar (3.8 МБ)
26.05.06-1.21-fabricРелиз1.21, 1.21.1fabric7 мая 2026 г..jar (57 КБ)
26.05.06-1.21-neoforgeРелиз1.21, 1.21.1neoforge7 мая 2026 г..jar (56 КБ)
26.05.06-1.20-forgeРелиз1.20, 1.20.1forge, neoforge7 мая 2026 г..jar (56 КБ)
26.05.06-1.20-fabricРелиз1.20, 1.20.1fabric7 мая 2026 г..jar (3.8 МБ)
26.05.03-1.21-neoforgeРелиз1.21, 1.21.1neoforge4 мая 2026 г..jar (52 КБ)

Показаны последние 15 из 20 версий. Все версии — на Modrinth.

Ченджлог

26.06.23-26.2-fabricРелиз26.2 · 24 июня 2026 г.

Delight Lib


✨ What's New:

  • Added support for Minecraft 26.2.

📝 Feedback and Support:

26.05.20-1.21.11-fabricРелиз1.21.11 · 21 мая 2026 г.

Delight Lib


✨ What's New:

  • Added support for Farmer's Delight Refabricated latest/1.21.11.

📝 Feedback and Support:

26.05.18-26.1-fabricРелиз26.1, 26.1.1, 26.1.2 · 19 мая 2026 г.

Delight Lib


✨ 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:

26.05.18-1.21-neoforgeРелиз1.21, 1.21.1 · 19 мая 2026 г.

Delight Lib


✨ 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:

26.05.18-1.21-fabricРелиз1.21, 1.21.1 · 19 мая 2026 г.

Delight Lib


✨ 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:

26.05.18-1.20-forgeРелиз1.20, 1.20.1 · 19 мая 2026 г.

Delight Lib


✨ 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:

26.05.18-1.20-fabricРелиз1.20, 1.20.1 · 19 мая 2026 г.

Delight Lib


✨ 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:

26.05.09-26.1-fabricРелиз26.1, 26.1.1, 26.1.2 · 9 мая 2026 г.

Delight Lib


✨ What's New:

  • Added support for Farmer's Delight Refabricated 1.3.1/26.1.

📝 Feedback and Support:

Полная история изменений — на Modrinth.

Комментарии

Загружаем…