Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stellarwind22/fabric-shield-lib
Library for easily adding new shields, shield enchantments, and enabling you to enchant shields in general without worry of conflictions.
https://github.com/stellarwind22/fabric-shield-lib
enchantments fabric fabric-api fabric-mod fabric-shield-lib fabricmc fabricmc-mod library minecraft minecraftmod shields
Last synced: 25 days ago
JSON representation
Library for easily adding new shields, shield enchantments, and enabling you to enchant shields in general without worry of conflictions.
- Host: GitHub
- URL: https://github.com/stellarwind22/fabric-shield-lib
- Owner: StellarWind22
- License: lgpl-2.1
- Created: 2020-05-03T06:50:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T18:33:30.000Z (8 months ago)
- Last Synced: 2024-05-21T13:04:15.372Z (6 months ago)
- Topics: enchantments, fabric, fabric-api, fabric-mod, fabric-shield-lib, fabricmc, fabricmc-mod, library, minecraft, minecraftmod, shields
- Language: Java
- Homepage: https://www.curseforge.com/minecraft/mc-mods/fabric-shield-lib
- Size: 691 KB
- Stars: 40
- Watchers: 5
- Forks: 21
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![](https://jitpack.io/v/CrimsonDawn45/Fabric-Shield-Lib.svg)](https://jitpack.io/#CrimsonDawn45/Fabric-Shield-Lib)
# Fabric Shield Lib
Library for easily adding new shields, shield enchantments, and enabling you to enchant shields in general without worry of conflictions.## Importing
library is distributed via [jitpack.io](https://jitpack.io/#CrimsonDawn45/Fabric-Shield-Lib)#### put this in gradle.properties
```properties
fabric_shield_lib_version=1.7.2-1.21.1
```#### build.gradle under repositories just above dependencies
```gradle
maven { url = 'https://jitpack.io' }
```if this mod is your only dependency it should look something like this.
```gradle
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
//Fabric Shield Lib
modImplementation "com.github.CrimsonDawn45:Fabric-Shield-Lib:v${project.fabric_shield_lib_version}"
}
```#### **build.gradle** under dependencies
```gradle
modImplementation "com.github.CrimsonDawn45:Fabric-Shield-Lib:v${project.fabric_shield_lib_version}"
```- - - -
## Documentation?
Tutorial available on [Fabric Wiki](https://fabricmc.net/wiki/tutorial:shield).The [example mod repo](https://github.com/CrimsonDawn45/Fabric-Shield-Lib-Example-Mod) is a template repo you can use to quickly get started if your making a new mod. Although it isn't updated as frequently.