AdjustTargets method for dynamic targets

This commit is contained in:
magenoxx 2012-08-03 07:43:43 +03:00
parent ab9db5a60a
commit a5d846f970
8 changed files with 72 additions and 13 deletions

View file

@ -379,6 +379,9 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
@Override
public void adjustCosts(Ability ability, Game game) {}
@Override
public void adjustTargets(Ability ability, Game game) {}
@Override
public boolean moveToZone(Zone zone, UUID sourceId, Game game, boolean flag) {
throw new UnsupportedOperationException("Unsupported operation");
@ -474,4 +477,3 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
@Override
public void build() {}
}