Added fun spell framework

This commit is contained in:
WayofTime 2014-01-17 19:59:31 -05:00
parent 17bbea0e74
commit e583fe429d
11 changed files with 710 additions and 5 deletions
BM_src/WayofTime/alchemicalWizardry/common/spell/complex

View file

@ -4,4 +4,18 @@ public class SpellModifier
{
public static final int DEFAULT = 0;
public static final int OFFENSIVE = 1;
public static final int DEFENSIVE = 2;
public static final int ENVIRONMENTAL = 3;
private int modifier;
public SpellModifier(int modifier)
{
this.modifier = modifier;
}
public int getModifier()
{
return this.modifier;
}
}