Examples of GreenManaAbility


Examples of mage.abilities.mana.GreenManaAbility

        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

Examples of mage.abilities.mana.GreenManaAbility

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

        // {tap}: Add {G} to your mana pool.
        this.addAbility(new GreenManaAbility());
        // Put a -1/-1 counter on Devoted Druid: Untap Devoted Druid.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapSourceEffect(), new PutCountersSourceCost(CounterType.M1M1.createInstance())));
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        // Sandsteppe Citadel enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {T}: Add {W}, {B}, or {G} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlackManaAbility());
        this.addAbility(new GreenManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        this.expansionSetCode = "ISD";

        Condition controls = new InvertCondition(new PermanentsOnTheBattlefieldCondition(filter, PermanentsOnTheBattlefieldCondition.CountType.MORE_THAN, 0));
        String abilityText = "tapped unless you control a Forest or an Island";
        this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
        this.addAbility(new GreenManaAbility());
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        super(ownerId, 293, "Tropical Island", Rarity.RARE, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LEA";
        this.subtype.add("Forest");
        this.subtype.add("Island");
       
        this.addAbility(new GreenManaAbility());
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        this.toughness = new MageInt(4);

        // Defender
        this.addAbility(DefenderAbility.getInstance());
        // {tap}: Add {G} to your mana pool.
        this.addAbility(new GreenManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Jungle Hollow enters the battlefield, you gain 1 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));
        // {T}: Add {B} or {G} to your mana pool.
        this.addAbility(new BlackManaAbility());
        this.addAbility(new GreenManaAbility());
       
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

        // Thornwood Falls enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Thornwood Falls enters the battlefield, you gain 1 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));
        // {T}: Add {G} or {U} to your mana pool.
        this.addAbility(new GreenManaAbility());
        this.addAbility(new BlueManaAbility());               
       
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

    public MoxEmerald(UUID ownerId) {
        super(ownerId, 261, "Mox Emerald", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{0}");
        this.expansionSetCode = "LEA";

        // {tap}: Add {G} to your mana pool.
        this.addAbility(new GreenManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.GreenManaAbility

    public TemurBanner(UUID ownerId) {
        super(ownerId, 226, "Temur Banner", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "KTK";

        // {T}: Add {G}, {U}, or {R} to your mana pool.
        this.addAbility(new GreenManaAbility());
        this.addAbility(new BlueManaAbility());
        this.addAbility(new RedManaAbility());

        // {G}{U}{R}, {T}, Sacrifice Temur Banner: Draw a card.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new ManaCostsImpl("{G}{U}{R}"));
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.