Examples of ManaEffect


Examples of mage.abilities.effects.common.ManaEffect

    cardType.add(CardType.CREATURE);
    subtype.add("Eldrazi");
    subtype.add("Spawn");
    power = new MageInt(0);
    toughness = new MageInt(1);
    addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new ManaEffect(Mana.ColorlessMana), new SacrificeSourceCost()));
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class GreenManaAbility extends BasicManaAbility<GreenManaAbility> {

  public GreenManaAbility() {
    super(new ManaEffect(Mana.GreenMana));
    this.netMana.setGreen(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class BlackManaAbility extends BasicManaAbility<BlackManaAbility> {

  public BlackManaAbility() {
    super(new ManaEffect(Mana.BlackMana));
    this.netMana.setBlack(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class ColorlessManaAbility extends BasicManaAbility<ColorlessManaAbility> {

  public ColorlessManaAbility() {
    super(new ManaEffect(Mana.ColorlessMana));
    this.netMana.setColorless(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class BlueManaAbility extends BasicManaAbility<BlueManaAbility> {

  public BlueManaAbility() {
    super(new ManaEffect(Mana.BlueMana));
    this.netMana.setBlue(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class RedManaAbility extends BasicManaAbility<RedManaAbility> {

  public RedManaAbility() {
    super(new ManaEffect(Mana.RedMana));
    this.netMana.setRed(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

* @author BetaSteward_at_googlemail.com
*/
public class WhiteManaAbility extends BasicManaAbility<WhiteManaAbility> {

  public WhiteManaAbility() {
    super(new ManaEffect(Mana.WhiteMana));
    this.netMana.setWhite(1);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

}

class JoragaManaAbility extends BasicManaAbility<JoragaManaAbility> {

  public JoragaManaAbility() {
    super(new ManaEffect(Mana.GreenMana(2)));
    this.netMana.setGreen(2);
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

  public PyreticRitual(UUID ownerId) {
    super(ownerId, 153, "Pyretic Ritual", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}");
    this.expansionSetCode = "M11";
    this.color.setRed(true);
    this.getSpellAbility().addEffect(new ManaEffect(Mana.RedMana(3)));
  }
View Full Code Here

Examples of mage.abilities.effects.common.ManaEffect

    }

    class KnotvineMysticManaAbility extends BasicManaAbility<KnotvineMysticManaAbility> {

        public KnotvineMysticManaAbility() {
            super(new ManaEffect(new Mana(1, 1, 0, 1, 0, 0, 0)));
            this.netMana.setGreen(1);
            this.netMana.setRed(1);
            this.netMana.setWhite(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.