Examples of SpellsCostIncreasementAllEffect


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

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

        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

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

    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
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.