Add item lore data for special stats.
Adds spawn egg drop chance Adds custom enchantment
This commit is contained in:
parent
28c60f3a53
commit
e7e08902f0
17 changed files with 408 additions and 68 deletions
|
@ -2,6 +2,7 @@ plugins {
|
|||
id 'eclipse'
|
||||
id 'maven-publish'
|
||||
id 'net.minecraftforge.gradle' version '5.1.+'
|
||||
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
|
@ -29,7 +30,7 @@ minecraft {
|
|||
//
|
||||
// Use non-default mappings at your own risk. They may not always work.
|
||||
// Simply re-run your setup task after changing the mappings to update your workspace.
|
||||
mappings channel: 'official', version: "${mc_version}"
|
||||
mappings channel: 'parchment', version: "${parchment_version}-${mc_version}"
|
||||
|
||||
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.
|
||||
|
||||
|
@ -139,6 +140,7 @@ dependencies {
|
|||
// implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")
|
||||
implementation 'org.mariadb.jdbc:mariadb-java-client:3.0.8'
|
||||
compileOnly 'org.mariadb.jdbc:mariadb-java-client'
|
||||
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
|
||||
// For more info...
|
||||
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
||||
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
||||
|
|
Reference in a new issue