1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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;
}
}
|