LazyModder
Mods using LazyModder:
- M'Ore Seeds (Grow ores) - 1.12.1
- Adventure Time 2 - 1.12.1
- MCConfig - 1.12.1
About the Modification
Despite its name, LazyModder is a powerful tool for mod developers that significantly simplifies the process of creating game content. The library provides ready-made solutions for quickly adding items, blocks, tools, creatures, living entities, plants, and much more.
The main goal of LazyModder is to reduce mod development time and speed up adaptation to new versions of Minecraft. This is achieved by automating registration processes in the background, allowing developers to focus on the functionality of their projects.
For Developers
Ease of Use
LazyModder offers a set of convenient classes that extend the standard capabilities of Minecraft. Creating and registering a new item takes just one line of code:
public class BasicRing extends EasyItem {
public BasicRing() {
super("BasicRing");
}
}
Despite the simplicity of the code, the system automatically handles all necessary processes: registration of unlocalized names, addition to the game registry, and other technical details.
Additional Features
The library includes specialized classes for creating:
- Blocks
- Food
- Potions
- Armor
- Tools
Compatibility
All created elements are automatically compatible with other mods. For example, in the Blood Baubles project, items not only inherit from EasyItem but also integrate with the Baubles accessory system.

Video Tutorials
Adding items, blocks, recipes, tile entities, and living entities:
Current Status
The project is in active development. Documentation and website are being prepared for release. Many developers note the incredible ease of use of the system and wonder why such solutions weren't implemented earlier.
Experience shows that transitioning between Minecraft versions is significantly simplified. For example, the Blood Baubles mod was updated from version 1.9.4 to 1.11 in just two days, with most of the time spent on code reorganization rather than technical adaptation.