Lazymodder Mod
LazyModder Mod 1.12.1, 1.11.2 is a core mod with useful functions for Modders. The core mod also adds a number of class for easy creation (blocks, food, potions, armor, tools, etc).
Basically it has a bunch of automatated functions. It just makes life (as a modder) easier. Modders who use this can expect faster project development and updating easier. How? Lazy Modder contains a number of easy to use classes that extend the Minecraft Item class and runs with it. Creating and registering an item is as easy as typing new EasyItem(“EasyItem”).
Example:
All the items were not only created extending the EasyItem but also compatible with other mods (in this case baubles.
Now here some coding examples. Creating a class can be as simple as:
public class BasicRing extends EasyItem { public BasicRing() { super("BasicRing"); } }
Looks simple, but there is a lot being done. The item registered it’s unlocalized name, registered itself to the game registry, etc.
Requires:
How to install:
How To Download & Install Mods with Minecraft Forge
How To Download & Install Fabric Mods
LazyModder Mod 1.12.1, 1.11.2 Download Links
For Minecraft 1.11.2
For Minecraft 1.12.1