AmbleKit
ModA Fabric Library used in many of the AmbleLab Mods!
Type
Mod
Modrinth Downloads
38,743
Modrinth ID
ZNWAUUsB
Last Updated
Apr 12, 2026
Description
Presented by Amble Labs

This a library mod that can be used for code simplifying for developing on Fabric
This is used in many of our Fabric mods
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!
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!
repositories { maven { url "https://jitpack.io" metadataSources { artifact() // Look directly for artifact } } } dependencies { modImplementation("com.github.amblelabs:modkit:${project.modkit_version}") { exclude(group: "net.fabricmc.fabric-api") } }or if you are using kotlin
repositories { maven { url = uri("https://jitpack.io") metadataSources { artifact() // Look directly for artifact } } mavenCentral() } dependencies { modImplementation("com.github.amblelabs:modkit:${project.property("modkit_version")}") }GitHub • CurseForge • Modrinth • Discord • Website
Compatibility
Mod Loaders
Game Versions
Screenshots
Similar Mods
project-1142887
Adds compatibility between YUNG's Cave Biomes and Farmer's Delight. Vanilla style.
Odin
Hypixel Skyblock mod which focuses on end game Dungeons & Kuudra
Magical Map
A map to find structures!
Dragonite Gear
This mod introduces custom Ender-inspired weapons, armor, and tools that surpass netherite in quality.
Sculk Expansion
Adds new recipes and other functionality for sculk blocks, items, and the warden.
Dungeons Mod Lite
Dungeons Mod Port to Fabric