Examples of CounterTargetEffect


Examples of mage.abilities.effects.common.CounterTargetEffect

  public Negate(UUID ownerId) {
    super(ownerId, 65, "Negate", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{U}");
    this.expansionSetCode = "M10";
    this.color.setBlue(true);
    this.getSpellAbility().addTarget(new TargetSpell(filter));
    this.getSpellAbility().addEffect(new CounterTargetEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

  public Cancel(UUID ownerId) {
    super(ownerId, 71, "Cancel", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{U}{U}");
    this.expansionSetCode = "10E";
    this.color.setBlue(true);
    this.getSpellAbility().addTarget(new TargetSpell());
    this.getSpellAbility().addEffect(new CounterTargetEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

  public Flashfreeze(UUID ownerId) {
    super(ownerId, 84, "Flashfreeze", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{1}{U}");
    this.expansionSetCode = "10E";
    this.color.setBlue(true);
    this.getSpellAbility().addTarget(new TargetSpell(filter));
    this.getSpellAbility().addEffect(new CounterTargetEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

    super(ownerId, 59, "Deprive", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}{U}");
    this.expansionSetCode = "ROE";
    this.color.setBlue(true);
    this.getSpellAbility().addCost(new ReturnToHandTargetCost(new TargetControlledPermanent(filter)));
    this.getSpellAbility().addTarget(new TargetSpell());
    this.getSpellAbility().addEffect(new CounterTargetEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.expansionSetCode = "ZEN";

        this.color.setBlue(true);

        this.getSpellAbility().addTarget(new TargetSpell(filter));
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addEffect(new CreateTokenEffect(new IllusionToken()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        // Whenever a spell or ability you control counters a spell, you may put a 1/1 blue Merfolk creature token onto the battlefield.
        this.addAbility(new LullmageMentorTriggeredAbility());
        this.addWatcher(new CastedSpellsWithSpellTarget());
        // Tap seven untapped Merfolk you control: Counter target spell.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CounterTargetEffect(), new TapTargetCost(new TargetControlledCreaturePermanent(7, 7, filter, true)));
        ability.addTarget(new TargetSpell());
        this.addAbility(ability);

    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.color.setBlue(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // {2}{U}{U}, {tap}: Counter target spell.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CounterTargetEffect(), new ManaCostsImpl("{2}{U}{U}"));
        ability.addCost(new TapSourceCost());
        ability.addTarget(new TargetSpell());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.color.setBlue(true);

        // Buyback-Discard two cards.
        this.addAbility(new BuybackAbility(new DiscardTargetCost(new TargetCardInHand(2, new FilterCard("two cards")))));
        // Counter target spell.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

    public Dismiss(UUID ownerId) {
        super(ownerId, 58, "Dismiss", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{2}{U}{U}");
        this.expansionSetCode = "TMP";
        this.color.setBlue(true);
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

    public Counterspell(UUID ownerId) {
        super(ownerId, 57, "Counterspell", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}{U}");
        this.expansionSetCode = "TMP";
        this.color.setBlue(true);
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell());
    }
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.