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