modified triggered abilities, continuous effects and zones

This commit is contained in:
BetaSteward 2012-02-02 23:27:23 -05:00
parent fe0c5e48e9
commit 1d32f49fd0
78 changed files with 279 additions and 434 deletions

View file

@ -265,9 +265,6 @@ public class StackAbility implements StackObject, Ability {
@Override
public void addManaCost(ManaCost cost) { }
@Override
public void checkTriggers(GameEvent event, Game game) { }
@Override
public AbilityType getAbilityType() {
return ability.getAbilityType();
@ -330,4 +327,9 @@ public class StackAbility implements StackObject, Ability {
public boolean canChooseTarget(Game game) {
return ability.canChooseTarget(game);
}
@Override
public boolean isInUseableZone(Game game) {
throw new UnsupportedOperationException("Not supported yet.");
}
}