
AmbleKit
A Fabric Library used in many of the AmbleLab Mods!
- Загрузки
- 48K
- Подписчики
- 4
- Обновлён
- 7 сентября 2025 г.
- Лицензия
- MIT
Опубликован 22 января 2025 г.
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?
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?
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")}")
}
Links & Community
GitHub • CurseForge • Modrinth • Discord • Website
Центр версий
12 версийЧенджлог
1.1.14.79-1.20.1-betaРелиз1.20.1 · 28 августа 2025 г.
What's Changed
- Fix ICantBreak stack overflow by @drtheodor in https://github.com/amblelabs/modkit/pull/36
1.1.13-1.20.1-betaАльфа1.20.1 · 10 августа 2025 г.
What's Changed
- extended ICantBreak by @MaketendoDev in https://github.com/amblelabs/modkit/pull/35
Full Changelog: https://github.com/amblelabs/modkit/compare/v1.1.12...v1.1.13
1.1.12-1.20.1-betaАльфа1.20.1 · 7 августа 2025 г.
What's Changed
- Update build.gradle by @rapbattlegod32 in https://github.com/amblelabs/modkit/pull/31
- fix: revert the weird submod stuff i was doing by @duzos in https://github.com/amblelabs/modkit/pull/33
- api: bedrock model support by @duzos in https://github.com/amblelabs/modkit/pull/32
New Contributors
- @rapbattlegod32 made their first contribution in https://github.com/amblelabs/modkit/pull/31
Full Changelog: https://github.com/amblelabs/modkit/compare/1.1.9...v1.1.12
1.1.11-1.20.1-betaАльфа1.20.1 · 8 июля 2025 г.
DO NOT USE WITH AIT
1.1.8-1.20.1+forge-betaБета1.20.1 · 24 июня 2025 г.
fix logo change versioning
1.1.8.93-1.20.1-betaАльфа1.20.1 · 22 июня 2025 г.
It works now! Forge Yeah!
1.1.8.93-1.20.1-betaРелиз1.20.4, 1.20.5, 1.20.6 · 28 февраля 2025 г.
TODO
1.1.5.91-1.20.1-betaРелиз1.20.4, 1.20.5, 1.20.6 · 19 февраля 2025 г.
TODO
Комментарии
Загружаем…
