package net.uomc.mineshaft; public enum MineshaftItem { COAL("coal"), IRON("iron"), COPPER("copper"), LAPIS("lapis"), REDSTONE("redstone"), GOLD("gold"), EMERALD("emerald"), DIAMOND("diamond"), NETHERITE("netherite"), OBSIDIAN("obsidian"), FISH("fish"), BOOK("book"), XP("xp"), ENCHANTING_TABLE("enchanting_table"), BOOKSHELF("bookshelf"), FURNACE("furnace") ; private final String text; MineshaftItem(String string) { text = string; } @Override public String toString() { return text; } }