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”).

LazyModder Mod

Example:

LazyModder Mod 1

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:

Minecraft Forge

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

Download from Server 1

For Minecraft 1.12.1

Download from Server 1

Click to rate this post!
[Total: 2 Average: 5]