Package mage.abilities.mana

Examples of mage.abilities.mana.WhiteManaAbility


    public OrzhovCluestone(UUID ownerId) {
        super(ownerId, 142, "Orzhov Cluestone", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "DGM";

        // {T}: Add {W} or {B} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlackManaAbility());

        // {W}{B}, {T}, Sacrifice Orzhov Cluestone: Draw a card.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new ManaCostsImpl("{W}{B}"));
        ability.addCost(new TapSourceCost());
View Full Code Here


        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Temple of Plenty enters the battlefield, scry 1.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ScryEffect(1)));
        // {T}: Add {G} or {W} to your mana pool.
        this.addAbility(new GreenManaAbility());
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

        super(ownerId, 289, "Scrubland", Rarity.RARE, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LEA";
        this.subtype.add("Plains");
        this.subtype.add("Swamp");
       
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlackManaAbility());
    }
View Full Code Here

        super(ownerId, 224, "Mardu Banner", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "KTK";

        // {T}: Add {R}, {W}, or {B} to your mana pool.
        this.addAbility(new RedManaAbility());
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlackManaAbility());

        // {R}{W}{B}, {T}, Sacrifice Mardu Banner: Draw a card.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new ManaCostsImpl("{R}{W}{B}"));
        ability.addCost(new TapSourceCost());
View Full Code Here

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

        this.expansionSetCode = "KTK";

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

        // {U}{R}{W}, {T}, Sacrifice Jeskai Banner: Draw a card.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new ManaCostsImpl("{U}{R}{W}"));
        ability.addCost(new TapSourceCost());
        ability.addCost(new SacrificeSourceCost());
View Full Code Here

        // When Blossoming Sands enters the battlefield, you gain 1 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));

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

                            land.getAbilities().clear();
                            if (choice.equals("Forest")) {
                                land.addAbility(new GreenManaAbility(), source.getSourceId(), game);
                            }
                            if (choice.equals("Plains")) {
                                land.addAbility(new WhiteManaAbility(), source.getSourceId(), game);
                            }
                            if (choice.equals("Mountain")) {
                                land.addAbility(new RedManaAbility(), source.getSourceId(), game);
                            }
                            if (choice.equals("Island")) {
View Full Code Here

        super(ownerId, 294, "Tundra", Rarity.RARE, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LEA";
        this.subtype.add("Plains");
        this.subtype.add("Island");
       
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

        this.expansionSetCode = "LEA";
        this.subtype.add("Forest");
        this.subtype.add("Plains");
       
        this.addAbility(new GreenManaAbility());
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.mana.WhiteManaAbility

Copyright © 2018 www.massapicom. 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.