/Fabric-Shield-Lib

Library for easily adding new shields, shield enchantments, and enabling you to enchant shields in general without worry of conflictions or having to write your own mixins.

Primary LanguageJavaGNU Lesser General Public License v2.1LGPL-2.1

Fabric Shield Lib

Library for easily adding new shields, shield enchantments, and enabling you to enchant shields in general without worry of conflictions or having to write your own mixins.

Importing

this library is distributed via jitpack.io

gradle.properties

fabric_shield_lib_version=1.3.1a

build.gradle under dependencies

modImplementation "com.github.CrimsonDawn45:Fabric-Shield-Lib:${project.fabric_shield_lib_version}-${project.minecraft_version}"

build.gradle under repositories near the end of the file.

maven { url 'https://jitpack.io' }

if this mod is your only dependency it should look something like this.

repositories {
    allprojects {
        repositories {
            maven { url 'https://jitpack.io' }
	}
    }
}

Documentation?

head over to the example mod repo it's a template repo that shows how to implement custom shields, shield enchantments, and how the dependency should be setup in the build.gradle.