
Added the framework for Rituals, including the automatic registration of rituals using the annotation. This includes: - The Master Ritual Stone - The regular Ritual Stones (all 7 types) - The Ritual Registration system - The activation crystal items. - Reintroduction of the Demon Will Aura (changed saved Dimension ID from Integer to ResourceLocation) Localization needs to be completed, as well as the implementation of all the rituals.
22 lines
No EOL
382 B
Java
22 lines
No EOL
382 B
Java
package wayoftime.bloodmagic.ritual;
|
|
|
|
import java.util.Locale;
|
|
|
|
import net.minecraft.util.IStringSerializable;
|
|
|
|
public enum EnumReaderBoundaries implements IStringSerializable
|
|
{
|
|
SUCCESS, VOLUME_TOO_LARGE, NOT_WITHIN_BOUNDARIES;
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return name().toLowerCase(Locale.ROOT);
|
|
}
|
|
|
|
@Override
|
|
public String getString()
|
|
{
|
|
return toString();
|
|
}
|
|
} |