Added fun spell framework
This commit is contained in:
parent
17bbea0e74
commit
e583fe429d
11 changed files with 710 additions and 5 deletions
BM_src/WayofTime/alchemicalWizardry/common/spell/complex
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue