Examples of CounterTargetEffect


Examples of mage.abilities.effects.common.CounterTargetEffect

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

        // {tap}, Sacrifice Daring Apprentice: Counter target spell.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CounterTargetEffect(), new TapSourceCost());
        ability.addCost(new SacrificeSourceCost());
        ability.addTarget(new TargetSpell());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

    public Dispel(UUID ownerId) {
        super(ownerId, 26, "Dispel", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}");
        this.expansionSetCode = "WWK";
        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

        this.expansionSetCode = "AVR";

        this.color.setBlue(true);

        // Counter target spell that's the second spell cast this turn.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        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

        this.expansionSetCode = "LEA";

        this.color.setRed(true);

        // Choose one - Counter target blue spell; or destroy target blue permanent.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell(filterSpell));
       
        Mode mode = new Mode();
        mode.getEffects().add(new DestroyTargetEffect());
        mode.getTargets().add(new TargetPermanent(filterPermanent));
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, 81, "Discombobulate", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{2}{U}{U}");
        this.expansionSetCode = "10E";
        this.color.setBlue(true);
                // Counter target spell. Look at the top four cards of your library, then put them back in any order.
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new CounterTargetEffect());
                this.getSpellAbility().addEffect(new LookLibraryControllerEffect(4));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.expansionSetCode = "LEA";

        this.color.setBlue(true);

        // Counter target spell with converted mana cost X.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.expansionSetCode = "THS";

        this.color.setBlue(true);

        // Counter target spell. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        Target target = new TargetSpell();
        this.getSpellAbility().addTarget(target);
        this.getSpellAbility().addEffect(new ScryEffect(1));
    }
View Full Code Here

Examples of mage.abilities.effects.common.CounterTargetEffect

        this.expansionSetCode = "CHK";

        this.color.setBlue(true);

        // Counter target activated ability.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new ActivatedAbilityTarget());
        // Draw a card.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
    }
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.