Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.CounterUnlessPaysEffect


        this.expansionSetCode = "THS";

        this.color.setBlue(true);

        // Counter target spell unless its controller pays {1}. Scry 1.
        this.getSpellAbility().addEffect(new CounterUnlessPaysEffect(new GenericManaCost(1)));
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new ScryEffect(1));

    }
View Full Code Here


}

class FrostTitanAbility1 extends TriggeredAbilityImpl {

    public FrostTitanAbility1() {
        super(Zone.BATTLEFIELD, new CounterUnlessPaysEffect(new GenericManaCost(2)), false);
    }
View Full Code Here

TOP

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

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.