forked from External/mage
modified triggered abilities, continuous effects and zones
This commit is contained in:
parent
fe0c5e48e9
commit
1d32f49fd0
78 changed files with 279 additions and 434 deletions
|
|
@ -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.");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue