Package mage.abilities.effects.common

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


        this.expansionSetCode = "RTR";
        this.color.setGreen(true);
        this.color.setBlack(true);

        // Abrupt Decay 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);

        // Destroy target nonland permanent with converted mana cost 3 or less.
View Full Code Here

        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

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

        // Counterflux 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);

        // Counter target spell you don't control.
View Full Code Here

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

        this.addAbility(new SimpleStaticAbility(Zone.ALL, new CantCounterSourceEffect()));
        this.addAbility(HexproofAbility.getInstance());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{1}{G}")));
    }
View Full Code Here

        this.power = new MageInt(3);
        this.toughness = new MageInt(3);

        this.addAbility(new ProtectionAbility(filter1));
        this.addAbility(new ProtectionAbility(filter2));
        this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantCounterSourceEffect()));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.CantCounterSourceEffect

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.