2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.rituals;
|
|
|
|
|
|
|
|
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
|
|
|
|
|
2014-01-17 21:43:13 +00:00
|
|
|
public abstract class RitualEffect
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
public abstract void performEffect(TEMasterStone ritualStone);
|
|
|
|
|
|
|
|
public abstract int getCostPerRefresh();
|
|
|
|
|
|
|
|
public int getInitialCooldown()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|