/trigger jodek.config
5555ff lib is the shared library that powers all of my datapacks/mods. It handles cross pack compatibility, provides a management interface and includes shared utilites
Some of my packs require this library (especially those that modify vanilla loot tables), for others its just optional The packs then work standalone, but gain some extras when the library is installed.
When multiple datapacks modify the same vanilla loot table (e.g. Mob Heads adding a head and e.g. Name Tag adding the name tag drop) only one can win, the other one gets overwritten. 5555ff helps me managing that, preventing clutter in datapacks and making it easier for me to create new datapacks.
Beyond compatibility, the library also serves as a central hub for managing all datapacks.
In the future I will most likely include more features and more shared code.
Multiple of my datapacks can modify the same vanilla loot table without overwriting each other.
See which datapack is installed
Access the config of each installed datapack through the librarys interface
Enable or disable the chat messages that packs display when they load.
Show or hide the advancement overviews for individual packs.
Uninstall any datapack through the menu.
Common functionality like predicates (e.g. sneak detection) and reusable code that multiple packs rely on --> maintained in one place instead of duplicated across packs.
This library supports most of my datapacks. Any pack that lists 5555ff lib as a dependency will work.
5555ff lib acts as a central dispatch layer for vanilla loot tables. Instead of each datapack overriding vanilla tables directly (which causes conflicts when multiple packs modify the same mob), the library handles all vanilla overrides. This way, multiple packs can modify the same mob's drops without overwriting each other.
If you're interested in making your pack compatible, feel free to reach out on Discord or open an issue on GitHub.
Why the name? 5555ff is the color used as the background in all of my icons





