AzureLib Armor
AzureLib Armor is a lightweight version of the AzureLib library that was specifically created to provide GeoArmor and GeoItem functions as a standalone module. All armor creation steps fully match the armor creation process in AzureLib.
Compatibility with Minecraft versions:
- Forge: 1.20.1
- NeoForge: 1.20.1
- Fabric: 1.20.1, 1.20.2
For developers: If you want to use this library in your mod, add the following lines to your build.gradle file:
repositories {
// Maven repository with mod source code
maven {url 'https://maven.azuredoom.com/mods'}
}
dependencies {
// Fabric or Quilt
modImplementation "mod.azure.azurelibarmor:azurelibarmor-fabric-MCVERSION:MODVERSION"
// NeoForge or Forge
implementation fg.deobf("mod.azure.azurelibarmor:azurelibarmor-neo-MCVERSION:MODVERSION")
}