Armor Trims allows you to decorate your armor with gems and ores (and dusts and crushed ores and whatever else you define in the config).
The master branch is not active and only exists for images and documentation. There are appropriate branches for each Minecraft version the mod is on.
# How to Add to Dev Environment
Armor Trims Backport can be added to your development environment via [CurseMaven](cursemaven.com).
First add CurseMaven to your `repositories` block. Like this
```gradle
repositories {
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}
```
Then, add the mod to your `dependencies` block.
```
dependencies {
implementation fg.deobf("curse.maven:armor_trims-858570:4697214") // Version 1.3.3, which is the latest at time of writing. I will try to keep this up to date.
}
```
If you don't want to use version `1.3.3`, you can always navigate to your desired version and replace the last few numbers in the dependency with the last few numbers of the file's url.
Once you've done that, you should be able to reload your gradle project and have Armor Trims Backport readily available.
Note: You will probably want to make sure that the mod is present before calling any of its methods , unless this mod is a required dependency.