Examples of WhiteManaAbility


Examples of mage.abilities.mana.WhiteManaAbility

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

    public KabiraCrossroads(UUID ownerId) {
        super(ownerId, 216, "Kabira Crossroads", Rarity.COMMON, new CardType[]{CardType.LAND}, null);
        this.expansionSetCode = "ZEN";
        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(2), false));
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

                            } 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);
                            }
                        }
                        break;
                    case TypeChangingEffects_4:
                        if (!land.getCardType().contains(CardType.LAND)) {
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        this.expansionSetCode = "TMP";

        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
        // {tap}: Add {W} or {U} to your mana pool. Thalakos Lowlands doesn't untap during your next untap step.
        Ability ability = new WhiteManaAbility();
        ability.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(ability);
        ability = new BlueManaAbility();
        ability.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

                                    break;
                                case "Island":
                                    land.addAbility(new BlueManaAbility(), source.getSourceId(), game);
                                    break;
                                case "Plains":
                                    land.addAbility(new WhiteManaAbility(), source.getSourceId(), game);
                                    break;
                            }
                        }
                        break;
                    case TypeChangingEffects_4:
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

    public SejiriRefuge(UUID ownerId) {
        super(ownerId, 224, "Sejiri Refuge", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, null);
        this.expansionSetCode = "ZEN";
        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1), false));
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        // Emeria, the Sky Ruin enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // At the beginning of your upkeep, if you control seven or more Plains, you may return target creature card from your graveyard to the battlefield.
        this.addAbility(new EmeriaTheSkyRuinTriggeredAbility());
        // {tap}: Add {W} to your mana pool.
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

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

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

Examples of mage.abilities.mana.WhiteManaAbility

        this.addAbility(new ColorlessManaAbility());
        // {tap}: Add {R} or {W} to your mana pool. Scabland deals 1 damage to you.
        Ability ability = new RedManaAbility();
        ability.addEffect(new DamageControllerEffect(1));
        this.addAbility(ability);
        ability = new WhiteManaAbility();
        ability.addEffect(new DamageControllerEffect(1));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

public class AncientDen extends CardImpl {

    public AncientDen (UUID ownerId) {
        super(ownerId, 278, "Ancient Den", Rarity.COMMON, new CardType[]{CardType.ARTIFACT, CardType.LAND}, null);
        this.expansionSetCode = "MRD";
        this.addAbility(new WhiteManaAbility());
    }
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.