
Do not consider anything outside of the true API safe to use. And even then, I'm changing things. Just wait. Please I beg you.
28 lines
577 B
Java
28 lines
577 B
Java
package WayofTime.bloodmagic.altar;
|
|
|
|
import java.util.Locale;
|
|
|
|
/**
|
|
* List of different components used to construct different tiers of altars.
|
|
*/
|
|
public enum EnumAltarComponent {
|
|
GLOWSTONE,
|
|
BLOODSTONE,
|
|
BEACON,
|
|
BLOODRUNE,
|
|
CRYSTAL,
|
|
NOTAIR;
|
|
|
|
public static final EnumAltarComponent[] VALUES = values();
|
|
private static final String BASE = "chat.bloodmagic.altar.comp.";
|
|
private String key;
|
|
|
|
EnumAltarComponent() {
|
|
this.key = BASE + name().toLowerCase(Locale.ENGLISH);
|
|
}
|
|
|
|
public String getKey() {
|
|
return key;
|
|
}
|
|
}
|