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

30 lines
585 B
Java
Raw Normal View History

package WayofTime.bloodmagic.api.altar;
import java.util.Locale;
/**
2016-04-05 16:16:17 -04:00
* 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();
2017-01-02 01:18:29 -08:00
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;
}
}