Examples of GreenManaAbility


Examples of mage.abilities.mana.GreenManaAbility

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

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

Examples of mage.abilities.mana.GreenManaAbility

    public TurntimberGrove(UUID ownerId) {
        super(ownerId, 227, "Turntimber Grove", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ZEN";

        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new GreenManaAbility());
        EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(1, 1, Duration.EndOfTurn));
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

    public GraypeltRefuge(UUID ownerId) {
        super(ownerId, 214, "Graypelt Refuge", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ZEN";

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

Examples of mage.abilities.mana.GreenManaAbility

                            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")) {
                                land.addAbility(new BlueManaAbility(), source.getSourceId(), game);
                            } else if (landType.equals("Plains")) {
                                land.addAbility(new WhiteManaAbility(), source.getSourceId(), game);
                            }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

                                    break;
                                case "Mountain":
                                    land.addAbility(new RedManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Forest":
                                    land.addAbility(new GreenManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Island":
                                    land.addAbility(new BlueManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Plains":
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        // When Kazandu Refuge enters the battlefield, you gain 1 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));
       
        // {T}: Add {R} or {G} to your mana pool.
        this.addAbility(new RedManaAbility());
        this.addAbility(new GreenManaAbility());
       
    }
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

* @author BetaSteward_at_googlemail.com
*/
public abstract class Forest extends BasicLand {

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

Examples of mage.abilities.mana.GreenManaAbility

        this.addAbility(new ColorlessManaAbility());
        // {tap}: Add {B} or {G} to your mana pool. Pine Barrens deals 1 damage to you.
        Ability ability = new BlackManaAbility();
        ability.addEffect(new DamageControllerEffect(1));
        this.addAbility(ability);
        ability = new GreenManaAbility();
        ability.addEffect(new DamageControllerEffect(1));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        this.color.setGreen(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // {T}: Add {G} to your mana pool.
        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.