AmbleKit

⭐ — (4 endorsements) 📥 53,968 downloads 📌 v1.1.14-1.20.1+forge-beta 📅 2/13/2025
🟠 Updated over a year ago

By Loqor · fabric

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 9/7/2025 📅 Created: 2/13/2025
⚠️ Install Order · 2 steps
1🛠️ Forge — Minecraft Forge (mod loader) Download ↗
2🛠️ Fabric — Fabric Loader Download ↗

Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.

🔍 Analysis

  • 👍 0.0% endorsement rate
  • 🏆 #489 of 983 fabric mods in this game by downloads

📋 About This Mod

<div align="center"> ### **Presented by (https://amblelabs.github.io)** !(https://cdn.modrinth.com/data/cached_images/d356695702e6fbdc33ad1ecd0bcbb344dffd4cb6_0.webp) (https://www.curseforge.com/minecraft/mc-mods/amblekit) <!-- SVG version --> (https://modrinth.com/mod/amblekit) <!-- SVG version --> (https://fabricmc.net/) <!-- SVG version --> (https://files.minecraftforge.net) <!-- SVG version --> </div> --- <div align="center"> ### This a library mod that can be used for code simplifying for developing on Fabric ***This is used in many of our Fabric mods*** </div> <h2> <img src="https://cdn.modrinth.com/data/cached_images/b18b275a0e9bb4000e015b935b65037166301538.png" alt="What does this libary add?" width="25" height="25" style="vertical-align: middle; margin-right: 8px;"> What does this libary add? </h2> ### 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! <h2> <img src="https://cdn.modrinth.com/data/cached_images/808c7934614530076d21dd0cf5c5e2e992595985.png" alt="Where can I start with this?" width="25" height="25" style="vertical-align: middle; margin-right: 8px;"> Where can I start with this? </h2> ### You can start with our template for amblekit! (https://github.com/amblelabs/modkit-template) ### 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")}") } ``` <h2> <img src="https://cdn.modrinth.com/data/cached_images/23b97ecfe49586f70c6a7d4e4ca63ac14d47e6e1.png" alt="Links & Community" width="25" height="25" style="vertical-align: middle; margin-right: 8px;"> Links & Community </h2> <a href="https://github.com/amblelabs/modkit/" style="text-decoration: none; color: inherit; display: inline-block; margin: 0 8px;">GitHub</a> <span style="display: inline-block; margin: 0 4px;">•</span> <a href="https://www.curseforge.com/minecraft/mc-mods/amblekit" style="text-decoration: none; color: inherit; display: inline-block; margin: 0 8px;">CurseForge</a> <span style="display: inline-block; margin: 0 4px;">•</span> <a href="https://modrinth.com/mod/amblekit" style="text-decoration: none; color: inherit; display: inline-block; margin: 0 8px;">Modrinth</a> <span style="display: inline-block; margin: 0 4px;">•</span> <a href="https://discord.com/invite/WjKhRjavCj" style="text-decoration: none; color: inherit; display: inline-block; margin: 0 8px;">Discord</a> <span style="display: inline-block; margin: 0 4px;">•</span> <a href="https://amblelabs.github.io/"

### Presented by (https://amblelabs.github.io)**

!(https://cdn.modrinth.com/data/cached_images/d356695702e6fbdc33ad1ecd0bcbb344dffd4cb6_0.webp)

[curseforge](https://www.curseforge.com/minecraft/mc-mods/amblekit) [modrinth](https://modrinth.com/mod/amblekit) [fabric](https://fabricmc.net/) [forge](https://files.minecraftforge.net)

  • --
  • ### 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!

(https://github.com/amblelabs/modkit-template)

### 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")}") } ```

Links & Community Links & Community

GitHub • CurseForge • Modrinth • Discord •

📊 Mod Details

Game
Minecraft Mods
Author
Loqor
Version
1.1.14-1.20.1+forge-beta
Downloads
53,968
Endorsements
4
Category
fabric
Created
2/13/2025
Updated
9/7/2025
Game Versions
1.20.1
Tags
game-mechanics, library, utility

🔧 How to Install Minecraft Mods Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Mods →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Mods versions does AmbleKit support?

The author lists 1.20.1. Other versions may work but are untested by the author.

What is the latest version of AmbleKit?

Version 1.1.14-1.20.1+forge-beta, published 2025-09-07 with 53,968 downloads recorded at the source.

Keep browsing — more Minecraft Mods mods await

📋 All Minecraft Mods Mods 🏆 Top 25 📂 More fabric 👤 More by Loqor 🔎 Similar Mods 🌐 Best fabric (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods