Finished self-spells for Fire

This commit is contained in:
WayofTime 2014-01-19 16:15:10 -05:00
parent 091bb3db3f
commit 4f0b6199f6
7 changed files with 153 additions and 15 deletions

View file

@ -154,4 +154,19 @@ public abstract class SpellEffect
protected abstract int getCostForOffenseMelee();
protected abstract int getCostForDefenseMelee();
protected abstract int getCostForEnvironmentMelee();
public int getPowerEnhancements()
{
return this.powerEnhancement;
}
public int getCostEnhancements()
{
return this.costEnhancement;
}
public int getPotencyEnhancements()
{
return this.potencyEnhancement;
}
}