2014-11-13 08:42:49 -05:00
|
|
|
package WayofTime.alchemicalWizardry.api.spell;
|
2014-06-27 19:43:09 -04:00
|
|
|
|
2014-10-13 22:33:20 +02:00
|
|
|
public class SpellEnhancement
|
2014-06-27 19:43:09 -04:00
|
|
|
{
|
2014-10-13 22:33:20 +02:00
|
|
|
public static final int POWER = 0;
|
|
|
|
public static final int EFFICIENCY = 1;
|
|
|
|
public static final int POTENCY = 2;
|
|
|
|
|
|
|
|
private int state = this.POWER;
|
|
|
|
|
|
|
|
protected SpellEnhancement(int state)
|
|
|
|
{
|
|
|
|
this.state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getState()
|
|
|
|
{
|
|
|
|
return this.state;
|
|
|
|
}
|
2014-06-27 19:43:09 -04:00
|
|
|
}
|