Added an initial (read: rough) method to divine where a blood rune is missing for the next tier of altar

This commit is contained in:
WayofTime 2016-06-02 19:09:02 -04:00
parent 686d79570f
commit cf72036ff9
5 changed files with 125 additions and 23 deletions

View file

@ -1,8 +1,13 @@
package WayofTime.bloodmagic.api.altar;
import java.util.Locale;
import lombok.Getter;
/**
* List of different components used to construct different tiers of altars.
*/
@Getter
public enum EnumAltarComponent
{
GLOWSTONE,
@ -10,5 +15,13 @@ public enum EnumAltarComponent
BEACON,
BLOODRUNE,
CRYSTAL,
NOTAIR
NOTAIR;
private static final String BASE = "chat.BloodMagic.altar.comp.";
private String key;
EnumAltarComponent()
{
this.key = BASE + name().toLowerCase(Locale.ENGLISH);
}
}