Add new spell types

This commit is contained in:
Electroblob
2018-06-09 17:33:37 +01:00
parent 438f5d7a2e
commit 719c6d5fbb
@@ -6,7 +6,14 @@ import net.minecraftforge.fml.relauncher.SideOnly;
public enum SpellType {
ATTACK("attack"), DEFENCE("defence"), UTILITY("utility"), MINION("minion");
ATTACK("attack"),
DEFENCE("defence"),
UTILITY("utility"),
MINION("minion"),
BUFF("buff"),
CONSTRUCT("construct"),
PROJECTILE("projectile"),
ALTERATION("alteration");
private final String unlocalisedName;