Examples of CantCounterSourceEffect


Examples of mage.abilities.effects.common.CantCounterSourceEffect

* @author BetaSteward_at_googlemail.com
*/
public class CantCounterAbility extends StaticAbility<CantCounterAbility> {

  public CantCounterAbility() {
    super(Zone.STACK, new CantCounterSourceEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

    this.subtype.add("Elemental");
    this.color.setGreen(true);
    this.power = new MageInt(8);
    this.toughness = new MageInt(5);

    this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
    this.addAbility(HasteAbility.getInstance());
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantTargetSourceEffect(filter, Duration.WhileOnBattlefield)));

  }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

    super(ownerId, 130, "Combust", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}");
    this.expansionSetCode = "M11";
    this.color.setRed(true);
    this.getSpellAbility().addEffect(new DamageTargetEffect(5, false));
    this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
    this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
  }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

    this.addAbility(new ProtectionAbility(filter1));
    FilterCard filter2 = new FilterCard("Black");
    filter2.setUseColor(true);
    filter2.getColor().setBlack(true);
    this.addAbility(new ProtectionAbility(filter2));
    this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
  }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

    this.color.setGreen(true);
    this.subtype.add("Beast");
    this.power = new MageInt(5);
    this.toughness = new MageInt(5);

    this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantCounterControlledEffect(filter, Duration.WhileOnBattlefield)));
  }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

* @author BetaSteward_at_googlemail.com
*/
public class CantCounterAbility extends StaticAbility {

    public CantCounterAbility() {
        super(Zone.STACK, new CantCounterSourceEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

        this.color.setGreen(true);
        this.power = new MageInt(8);
        this.toughness = new MageInt(8);

        this.addAbility(new SimpleStaticAbility(Zone.ALL, new CantCounterSourceEffect()));
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

        this.color.setGreen(true);
        this.power = new MageInt(2);
        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

Examples of mage.abilities.effects.common.CantCounterSourceEffect

        this.color.setBlack(true);
        this.color.setRed(true);

        // Slaughter Games can't be countered by spells or abilities.
        Effect effect =  new CantCounterSourceEffect();
        effect.setText("{this} can't be countered by spells or abilities");
        Ability ability = new SimpleStaticAbility(Zone.STACK,effect);
        ability.setRuleAtTheTop(true);
        this.addAbility(ability);

        // Name a nonland card. Search target opponent's graveyard, hand, and library for any number of cards with that name and exile them. Then that player shuffles his or her library.
View Full Code Here

Examples of mage.abilities.effects.common.CantCounterSourceEffect

        this.subtype.add("Elemental");
        this.color.setGreen(true);
        this.power = new MageInt(8);
        this.toughness = new MageInt(5);

        this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
        this.addAbility(HasteAbility.getInstance());
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeTargetedSourceEffect(filter, Duration.WhileOnBattlefield)));

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.