Examples of CantCounterAbility


Examples of mage.abilities.common.CantCounterAbility

        this.expansionSetCode = "INV";

        this.color.setRed(true);

        // Obliterate can't be countered.
        this.addAbility(new CantCounterAbility());
        // Destroy all artifacts, creatures, and lands. They can't be regenerated.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

        this.expansionSetCode = "CON";

        this.color.setRed(true);

        // Volcanic Fallout can't be countered.
        this.addAbility(new CantCounterAbility());
        // Volcanic Fallout deals 2 damage to each creature and each player.
        this.getSpellAbility().addEffect(new DamageEverythingEffect(2));
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

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

        // Blurred Mongoose can't be countered.
        this.addAbility(new CantCounterAbility());
        this.addAbility(ShroudAbility.getInstance());
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

    public WreakHavoc(UUID ownerId) {
        super(ownerId, 139, "Wreak Havoc", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{2}{R}{G}");
        this.expansionSetCode = "GPT";
        this.color.setRed(true);
        this.color.setGreen(true);
        this.addAbility(new CantCounterAbility());
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

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

        // Supreme Verdict can't be countered.
        Ability ability = new CantCounterAbility();
        ability.setRuleAtTheTop(true);
        this.addAbility(ability);

        // Destroy all creatures.
        this.getSpellAbility().addEffect(new DestroyAllEffect(new FilterCreaturePermanent()));
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

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

        // Loxodon Smiter can't be countered.
        this.addAbility(new CantCounterAbility());

        // If a spell or ability an opponent controls causes you to discard Loxodon Smiter, put it onto the battlefield instead of putting it into your graveyard.
        this.addAbility(new SimpleStaticAbility(Zone.HAND, new LoxodonSmiterEffect()));
    }
View Full Code Here

Examples of mage.abilities.common.CantCounterAbility

        this.color.setRed(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);

        // Akroma, Angel of Fury can't be countered.
        this.addAbility(new CantCounterAbility());
        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Trample
        this.addAbility(TrampleAbility.getInstance());
        // protection from white and from blue
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.