promotional bannermobile promotional banner
premium banner
A mod that allows entity models to be defined in JSON (1.17+)

Description

Entity Model JSON

This is a Minecraft mod for Forge 1.18 which allows declaring entity models in JSON. It can be used to create powerful entity models in both mods and modpacks.

For modpack makers

For modpack makers, vanilla and modded entity models can be overridden in JSON using this system.

For modders

For modders, entity models can be declared in JSON and shipped as assets in the final jar, with a required dependency on this mod.

Getting Started Resources

For resources on how to declare and use JSON entity models, please see the following:

Adding as a mod dependency (modders)

To add this mod as a dependency, first add this to your repositories block:

repositories {
    // Entity Model JSON maven
    maven {
        url = 'https://sizableshrimp.me/maven'
    }
}

Then, add the dependency to your dependencies block. For the latest version, see here.

dependencies {
    implementation fg.deobf("me.sizableshrimp:entitymodeljson:${minecraft_version}-${entitymodeljson_version}")
}

For a complete example, see here.