Package mage.abilities.effects.common.cost

Examples of mage.abilities.effects.common.cost.SpellsCostIncreasementAllEffect


    public SphereOfResistance(UUID ownerId) {
        super(ownerId, 139, "Sphere of Resistance", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
        this.expansionSetCode = "EXO";

        // Spells cost {1} more to cast.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostIncreasementAllEffect(1)));
    }
View Full Code Here


        this.expansionSetCode = "TMP";

        this.color.setBlue(true);

        // Red spells cost {2} more to cast.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostIncreasementAllEffect(filter, 2)));
    }
View Full Code Here

    public ThornOfAmethyst(UUID ownerId) {
        super(ownerId, 262, "Thorn of Amethyst", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
        this.expansionSetCode = "LRW";

        // Noncreature spells cost {1} more to cast.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostIncreasementAllEffect(filter, 1)));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.cost.SpellsCostIncreasementAllEffect

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.