MythicDrops is an open source Bukkit plugin that brings an RPG-like system of drops to Minecraft. Items can have unique names, lore, and enchantments added randomly to them through a tier system.
https://www.spigotmc.org/resources/mythicdrops.6114/
MythicDrops is published to Maven Central.
repositories {
mavenCentral()
}
dependencies {
compileOnly "io.pixeloutlaw.mythicdrops:mythicdrops-api:x.y.z"
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("io.pixeloutlaw.mythicdrops:mythicdrops-api:x.y.z")
}
<dependencies>
<!-- other dependencies... -->
<dependency>
<groupId>io.pixeloutlaw.mythicdrops</groupId>
<artifactId>mythicdrops-api</artifactId>
<version>x.y.z</version>
<scope>provided</scope>
</dependency>
</dependencies>