Examples of CounterUnlessPaysEffect


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

Examples of mage.abilities.effects.common.CounterUnlessPaysEffect

}

class FrostTitanAbility1 extends TriggeredAbilityImpl {

    public FrostTitanAbility1() {
        super(Zone.BATTLEFIELD, new CounterUnlessPaysEffect(new GenericManaCost(2)), false);
    }
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.