Package mage.filter

Examples of mage.filter.FilterStackObject


public class TargetStackObject extends TargetObject<TargetStackObject> {

  protected FilterStackObject filter;

  public TargetStackObject() {
    this(1, 1, new FilterStackObject());
  }
View Full Code Here


public class TargetStackObject extends TargetObject {

    protected FilterStackObject filter;

    public TargetStackObject() {
        this(1, 1, new FilterStackObject());
    }
View Full Code Here

        this.toughness = new MageInt(2);

        // Root Sliver can't be countered.
        this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
        // Sliver spells can't be countered by spells or abilities.
        this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterControlledEffect(filter, new FilterStackObject(), Duration.WhileOnBattlefield)));

    }
View Full Code Here

TOP

Related Classes of mage.filter.FilterStackObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.