Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
AmbleKit

AmbleKit

A Fabric Library used in many of the AmbleLab Mods!

7,890
3
Game Mechanics
Library
Utility

Compatibility

Minecraft: Java Edition

1.20.1–1.20.6

Platforms

Fabric
Forge

Supported environments

Client and server

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Join Discord server
DonateDonate on Ko-fi

Creators

Details

Licensed MIT
Published 4 months ago
Updated 5 days ago
DescriptionGalleryChangelogVersions

Presented by Amble Labs

Amble Kit

curseforge modrinth fabric forge


This a library mod that can be used for code simplifying for developing on Fabric

This is used in many of our Fabric mods

What does this libary add? What does this libary add?

Minecraft Registration

Instead of having to manually register each and every thing, you can simple extend or implement one of our RegistryContainer classes.

These utility interfaces are recognised by our mod by sticking RegistryContainer.register(ClassName.class, MOD_ID into your mods #onInitialize method.

Datapack Workflow

We provide a custom class called SimpleDatapackRegistry

This allows your own classes to be read and registered straight from datapacks with ease!

For the kit to recognise your registry, in your mods #onInitialize method, you need to call register on your instance OR AmbleRegistries.register(MyRegistry.getInstance()))

Data Generation

We utilise annotations and the previously mentioned registry containers to automatically generate many features.

For example, automatic english translation for blocks -

By simply creating an instance of AmbleLanguageProvider and passing in your BlockContainer with the #withBlocks method, next time you run datagen all these blocks will have english translations based off their identifiers.

There are more datagen utilities akin to this.

Much more!

Where can I start with this? Where can I start with this?

You can start with our template for amblekit!

Github Template for Fabric 1.20.1 Modkit

If you have an already existing mod and want the amblekit then add this to your build.gradle!

dependencies {
    // To change the versions see the gradle.properties file
    minecraft "com.mojang:minecraft:${project.minecraft_version}"
    mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
    modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

    // Fabric API. This is technically optional, but you probably want it anyway.
    modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
    modImplementation("com.github.amblelabs:modkit:${project.modkit_version}") {
        exclude(group: "net.fabricmc.fabric-api")
    }
    include(modImplementation("com.github.DrTheodor:mc-scheduler:${project.scheduler_version}")) {
        exclude(group: "net.fabricmc.fabric-api")
    }
}

Links & Community Links & Community

GitHub • CurseForge • Modrinth • Discord

Modrinth is open source.

main@4bafae8

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.