mirror of
https://github.com/5vl/ItemAdder.git
synced 2025-05-24 06:46:59 +00:00
10 lines
334 B
Kotlin
10 lines
334 B
Kotlin
package me.fivevl.itemadder
|
|
|
|
import org.bukkit.Material
|
|
import org.bukkit.plugin.java.JavaPlugin
|
|
|
|
class Main : JavaPlugin() {
|
|
override fun onEnable() {
|
|
Item("TEST_ITEM", Utils.color("<blue>Test Item"), Rarity.EPIC, Material.STONE_SWORD, Type.WEAPON, "<red>The most basic testing</red>\n<blue>sword, by 5vl</blue>")
|
|
}
|
|
} |