Examples of BlackManaAbility


Examples of mage.abilities.mana.BlackManaAbility

  public DragonskullSummit(UUID ownerId) {
    super(ownerId, 223, "Dragonskull Summit", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "M10";
    this.addAbility(new EntersBattlefieldAbility(new TapSourceUnlessControlsEffect(filter), "tapped unless you control a " + filter.getMessage()));
    this.addAbility(new BlackManaAbility());
    this.addAbility(new RedManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

  public DrownedCatacomb(UUID ownerId) {
    super(ownerId, 224, "Drowned Catacomb", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "M10";
    this.addAbility(new EntersBattlefieldAbility(new TapSourceUnlessControlsEffect(filter), "tapped unless you control a " + filter.getMessage()));
    this.addAbility(new BlackManaAbility());
    this.addAbility(new BlueManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

    super(ownerId, 228, "Savage Lands", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "ALA";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new RedManaAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new BlackManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

  public LavaclawReaches(UUID ownerId) {
    super(ownerId, 139, "Lavaclaw Reaches", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "WWK";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new BlackManaAbility());
    this.addAbility(new RedManaAbility());
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEOTEffect(new LavaclawReachesToken(), "land"), new ManaCostsImpl("{1}{B}{R}")));
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

    super(ownerId, 222, "Crumbling Necropolis", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "ALA";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new RedManaAbility());
    this.addAbility(new BlueManaAbility());
    this.addAbility(new BlackManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

    this.subtype.add("Bird");
    this.color.setGreen(true);
    this.power = new MageInt(0);
    this.toughness = new MageInt(1);
    this.addAbility(FlyingAbility.getInstance());
    this.addAbility(new BlackManaAbility());
    this.addAbility(new BlueManaAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new RedManaAbility());
    this.addAbility(new WhiteManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

* @author BetaSteward_at_googlemail.com
*/
public abstract class Swamp extends BasicLand<Swamp> {

  public Swamp(UUID ownerId, int cardNumber) {
    super(ownerId, cardNumber, "Swamp", new BlackManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

        super(ownerId, 215, "Jwar Isle Refuge", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ZEN";

        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new BlueManaAbility());
        this.addAbility(new BlackManaAbility());
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));
    }
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

                switch (layer) {
                    case AbilityAddingRemovingEffects_6:
                        land.removeAllAbilities(source.getSourceId(), game);
                        for (String landType : landTypes)  {
                            if (landType.equals("Swamp")) {
                                land.addAbility(new BlackManaAbility(), source.getSourceId(), game);
                            } else if (landType.equals("Mountain")) {
                                land.addAbility(new RedManaAbility(), source.getSourceId(), game);
                            } else if (landType.equals("Forest")) {
                                land.addAbility(new GreenManaAbility(), source.getSourceId(), game);
                            } else if (landType.equals("Island")) {
View Full Code Here

Examples of mage.abilities.mana.BlackManaAbility

                    case AbilityAddingRemovingEffects_6:
                        land.removeAllAbilities(source.getSourceId(), game);
                        for (String landType : landTypes)  {
                            switch (landType) {
                                case "Swamp":
                                    land.addAbility(new BlackManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Mountain":
                                    land.addAbility(new RedManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Forest":
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.