Examples of WhiteManaAbility


Examples of mage.abilities.mana.WhiteManaAbility

        super(ownerId, 287, "Plateau", Rarity.RARE, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LEA";
        this.subtype.add("Mountain");
        this.subtype.add("Plains");
        this.addAbility(new RedManaAbility());
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        this.expansionSetCode = "MRD";

        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
        // {tap}: Add {W} or {U} to your mana pool. Talisman of Progress deals 1 damage to you.
        Ability whiteManaAbility = new WhiteManaAbility();
        whiteManaAbility.addEffect(new DamageControllerEffect(1));
        this.addAbility(whiteManaAbility);
        Ability blueManaAbility = new BlueManaAbility();
        blueManaAbility.addEffect(new DamageControllerEffect(1));
        this.addAbility(blueManaAbility);
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        // As long as Riftstone Portal is in your graveyard, lands you control have "{tap}: Add {G} or {W} to your mana pool."
        ContinuousEffect effect = new GainAbilityControlledEffect(new GreenManaAbility(),
                Duration.WhileOnBattlefield, new FilterControlledLandPermanent());
        effect.setText("As long as Riftstone Portal is in your graveyard, lands you control have \"{tap}: Add {G} or {W} to your mana pool.\"");
        Ability ability = new SimpleStaticAbility(Zone.GRAVEYARD, effect);
        effect = new GainAbilityControlledEffect(new WhiteManaAbility(),
                Duration.WhileOnBattlefield, new FilterControlledLandPermanent());
        effect.setText("");
        ability.addEffect(effect);
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        super(ownerId, 180, "Gold Myr", Rarity.COMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
        this.expansionSetCode = "MRD";
        this.subtype.add("Myr");
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        // Arctic Flats enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {G} or {W} to your mana pool.
        this.addAbility(new GreenManaAbility());
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

                        }
                        if (mana.getBlue() == 0 && landTypes.contains("Island")) {
                            land.addAbility(new BlueManaAbility(), source.getSourceId(), game);
                        }
                        if (mana.getWhite() == 0 && landTypes.contains("Plains")) {
                            land.addAbility(new WhiteManaAbility(), source.getSourceId(), game);
                        }
                        if (mana.getBlack() == 0 && landTypes.contains("Swamp")) {
                            land.addAbility(new BlackManaAbility(), source.getSourceId(), game);
                        }
                        break;
View Full Code Here

Examples of mage.abilities.mana.WhiteManaAbility

        this.expansionSetCode = "KTK";

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

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

Examples of mage.abilities.mana.WhiteManaAbility

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

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

Examples of mage.abilities.mana.WhiteManaAbility

        this.expansionSetCode = "ONS";

        // Secluded Steppe enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {W} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        // Cycling {W}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{W}")));
    }
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.