2014-01-18 16:45:31 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
|
|
|
|
|
|
|
|
public class SpellEnhancement
|
|
|
|
{
|
|
|
|
public static final int POWER = 0;
|
|
|
|
public static final int EFFICIENCY = 1;
|
2014-01-19 03:16:39 +00:00
|
|
|
public static final int POTENCY = 2;
|
2014-01-18 16:45:31 +00:00
|
|
|
|
|
|
|
private int state = this.POWER;
|
|
|
|
|
|
|
|
protected SpellEnhancement(int state)
|
|
|
|
{
|
|
|
|
this.state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getState()
|
|
|
|
{
|
|
|
|
return this.state;
|
|
|
|
}
|
|
|
|
}
|