Examples of GreenManaAbility


Examples of mage.abilities.mana.GreenManaAbility

  public SavageLands(UUID ownerId) {
    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.GreenManaAbility

  public StirringWildwood(UUID ownerId) {
    super(ownerId, 144, "Stirring Wildwood", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "WWK";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new WhiteManaAbility());
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEOTEffect(new StirringWildwoodToken(), "land"), new ManaCostsImpl("{1}{G}{W}")));
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

  public KhalniGarden(UUID ownerId) {
    super(ownerId, 138, "Khalni Garden", Rarity.COMMON, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "WWK";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new PlantToken()), false));
    this.addAbility(new GreenManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

  public RagingRavine(UUID ownerId) {
    super(ownerId, 141, "Raging Ravine", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "WWK";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new RedManaAbility());
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEOTEffect(new RagingRavineToken(), "land"), new ManaCostsImpl("{2}{R}{G}")));
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

  public RootboundCrag(UUID ownerId) {
    super(ownerId, 227, "Rootbound Crag", 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 RedManaAbility());
    this.addAbility(new GreenManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

  public SunpetalGrove(UUID ownerId) {
    super(ownerId, 228, "Sunpetal Grove", 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 GreenManaAbility());
    this.addAbility(new WhiteManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

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

  public OranRiefTheVastwood(UUID ownerId) {
    super(ownerId, 221, "Oran-Rief, the Vastwood", Rarity.RARE, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "ZEN";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new OranRiefTheVastwoodEffect(), new TapSourceCost()));
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

    this.subtype.add("Human");
    this.subtype.add("Druid");
    this.power = new MageInt(0);
    this.toughness = new MageInt(1);
    this.addAbility(new ExaltedAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new WhiteManaAbility());
    this.addAbility(new BlueManaAbility());
  }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

    this.subtype.add("Elf");
    this.subtype.add("Druid");
    this.color.setGreen(true);
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);
    this.addAbility(new GreenManaAbility());
  }
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.