BloodMagic/src/main/java/WayofTime/bloodmagic/altar/EnumAltarComponent.java

28 lines
577 B
Java
Raw Normal View History

package WayofTime.bloodmagic.altar;
import java.util.Locale;
/**
2016-04-05 20:16:17 +00:00
* List of different components used to construct different tiers of altars.
*/
2017-08-16 04:30:48 +00:00
public enum EnumAltarComponent {
GLOWSTONE,
BLOODSTONE,
BEACON,
BLOODRUNE,
CRYSTAL,
NOTAIR;
public static final EnumAltarComponent[] VALUES = values();
2017-01-02 09:18:29 +00:00
private static final String BASE = "chat.bloodmagic.altar.comp.";
private String key;
2017-08-16 04:30:48 +00:00
EnumAltarComponent() {
this.key = BASE + name().toLowerCase(Locale.ENGLISH);
}
public String getKey() {
return key;
}
}