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

Duchessentials

A lightweight library mod providing essential utilities and APIs for Minecraft mod development. Includes logging system, string/math/collection helpers, and mod registration API.

Загрузки
30K
Подписчики
2
Обновлён
17 августа 2026 г.
Лицензия
MIT

Опубликован 18 января 2026 г.

DuchEssentials

DuchEssentials is a small utility library made mainly for my Minecraft mods and plugins, but it can also be used by other developers.

It contains a few common systems and helpers that I kept rewriting between projects, so I decided to put them into one library instead.

What's included?

  • DuchLogger – simple logging system for mods
  • DuchAPI – basic API for registering mods
  • Utilities – various helpers for strings, math and collections

The library doesn't add any gameplay content by itself. It's just a dependency that other projects can use.

Example

DuchLogger.ModLogger logger =
        DuchLogger.createLogger("modid", "ModName");

DuchAPI.registerMod(
        "modid",
        "ModName",
        "1.0.0"
);

If your mod uses DuchEssentials, add it as a dependency:

"duchessentials": ">=1.0.0"

That's pretty much it. The goal is just to keep commonly used code in one place instead of copying the same utilities into every project.

Комментарии

Загружаем…