2018-02-05 17:04:38 -08:00
|
|
|
package WayofTime.bloodmagic.apibutnotreally.altar;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2016-06-02 19:09:02 -04:00
|
|
|
import java.util.Locale;
|
|
|
|
|
2016-03-22 21:10:05 -04:00
|
|
|
/**
|
2016-04-05 16:16:17 -04:00
|
|
|
* List of different components used to construct different tiers of altars.
|
2016-03-22 21:10:05 -04:00
|
|
|
*/
|
2017-08-15 21:30:48 -07:00
|
|
|
public enum EnumAltarComponent {
|
2016-01-02 17:56:37 -05:00
|
|
|
GLOWSTONE,
|
|
|
|
BLOODSTONE,
|
|
|
|
BEACON,
|
|
|
|
BLOODRUNE,
|
|
|
|
CRYSTAL,
|
2016-06-02 19:09:02 -04:00
|
|
|
NOTAIR;
|
|
|
|
|
2017-08-15 18:14:28 -07:00
|
|
|
public static final EnumAltarComponent[] VALUES = values();
|
2017-01-02 01:18:29 -08:00
|
|
|
private static final String BASE = "chat.bloodmagic.altar.comp.";
|
2016-06-02 19:09:02 -04:00
|
|
|
private String key;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
EnumAltarComponent() {
|
2016-06-02 19:09:02 -04:00
|
|
|
this.key = BASE + name().toLowerCase(Locale.ENGLISH);
|
|
|
|
}
|
2017-08-14 20:53:42 -07:00
|
|
|
|
|
|
|
public String getKey() {
|
|
|
|
return key;
|
|
|
|
}
|
2015-10-29 20:22:14 -07:00
|
|
|
}
|