Examples of BlueManaAbility


Examples of mage.abilities.mana.BlueManaAbility

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

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

Examples of mage.abilities.mana.BlueManaAbility

        this.expansionSetCode = "KTK";

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

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

Examples of mage.abilities.mana.BlueManaAbility

        this.expansionSetCode = "7ED";

        // Sky Diamond enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {U} to your mana pool.
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.BlueManaAbility

    public CreepingTarPit (UUID ownerId) {
        super(ownerId, 134, "Creeping Tar Pit", Rarity.RARE, new CardType[]{CardType.LAND}, null);
        this.expansionSetCode = "WWK";
        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new BlueManaAbility());
        this.addAbility(new BlackManaAbility());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEffect(new CreepingTarPitToken(), "land", Duration.EndOfTurn), new ManaCostsImpl("{1}{U}{B}")));
    }
View Full Code Here

Examples of mage.abilities.mana.BlueManaAbility

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

Examples of mage.abilities.mana.BlueManaAbility

        // Boreal Shelf enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {W} or {U} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.BlueManaAbility

        // {T}: Add {W} or {U} to your mana pool. Cloudcrest Lake doesn't untap during your next untap step.
        this.addAbility(new ColorlessManaAbility());
        Ability whiteManaAbility = new WhiteManaAbility();
        whiteManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(whiteManaAbility);
        Ability blueManaAbility = new BlueManaAbility();
        blueManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(blueManaAbility);
    }
View Full Code Here

Examples of mage.abilities.mana.BlueManaAbility

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

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

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

Examples of mage.abilities.mana.BlueManaAbility

        this.expansionSetCode = "WWK";
                // Halimar Depths enters the battlefield tapped.
                this.addAbility(new EntersBattlefieldTappedAbility());
                // When Halimar Depths enters the battlefield, look at the top three cards of your library, then put them back in any order.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new LookLibraryControllerEffect(3)));
        this.addAbility(new BlueManaAbility());
    }
View Full Code Here

Examples of mage.abilities.mana.BlueManaAbility

        // Opulent Palace enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {T}: Add {B}, {G}, or {U} to your mana pool.
        this.addAbility(new BlackManaAbility());
        this.addAbility(new GreenManaAbility());
        this.addAbility(new BlueManaAbility());
    }
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.