Allow rituals to specify an update time. Default is 20

This commit is contained in:
Nick 2015-12-29 12:32:06 -08:00
parent 0a0986e9bf
commit 1c8d6d6986
3 changed files with 13 additions and 6 deletions

View file

@ -35,6 +35,10 @@ public abstract class Ritual {
public abstract int getRefreshCost();
public int getRefreshTime() {
return 20;
}
public abstract ArrayList<RitualComponent> getComponents();
public void addOffsetRunes(ArrayList<RitualComponent> components, int offset1, int offset2, int y, EnumRuneType rune) {