paper plugin that introduces the "Soulbound" enchantment

Prepare for release

Changed files
+5 -13
build-logic
src
+2
build-logic/src/main/kotlin/shadow-platform.gradle.kts
··· 12 12 shadowJar { 13 13 dependsOn(check) 14 14 archiveClassifier.set(null as String?) 15 + relocateDependency("io.leangen.geantyref") 16 + relocateDependency("org.spongepowered.configurate") 15 17 } 16 18 } 17 19
+3 -13
readme.md
··· 1 - # template 2 - 3 - Template to easily create Bukkit plugins for [paper](https://github.com/PaperMC/Paper). It is pretty 4 - heavily inspired by [Carbon](https://github.com/Hexaoxide/Carbon)'s project layout. 5 - This template was made as a personal convenience; I don't have any interest in providing support for 6 - usage, but PR's are welcome. :) 7 - 8 - ## Assumptions 9 - 10 - This template makes a few assumptions based solely on my personal preference: 11 - - Licensed under the [GPL](license.txt). 12 - - Shades jpenilla's [gremlin](https://github.com/jpenilla/gremlin-gradle). 13 - - Replaces the overworld on the test server with a custom generated checkerboard pattern (see [the datapack](plugin/run/world/datapacks/checkerboard)) 1 + # Soulbinding 14 2 3 + Introduces the "Soulbound" enchantment, obtainable as a rare drop from the Ender Dragon. Items with 4 + Soulbound stay in the player’s inventory after death. Works on weapons, armor, and tools. 15 5 ### Checkstyle 16 6 17 7 This template uses (a fork of) checkstyle to ensure code style is consistent across the entire project.