This commit is contained in:
BetaSteward 2010-10-06 01:51:53 +00:00
parent 2cf247d68b
commit 5eae8136e4
70 changed files with 1286 additions and 399 deletions

View file

@ -268,4 +268,19 @@ public class StackAbility implements StackObject, Ability {
@Override
public void adjustCosts(Ability ability, Game game) {}
@Override
public Costs<Cost> getOptionalCosts() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void addOptionalCost(Cost cost) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean checkIfClause(Game game) {
return true;
}
}