Package mage.abilities.mana

Examples of mage.abilities.mana.RedManaAbility


        // Tresserhorn Sinks enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {B} or {R} to your mana pool.
        this.addAbility(new BlackManaAbility());
        this.addAbility(new RedManaAbility());
    }
View Full Code Here


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

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

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

        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());
        ability.addCost(new SacrificeSourceCost());
View Full Code Here

        // Fire Diamond enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());

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

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

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

        this.expansionSetCode = "ONS";

        // Forgotten Cave enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {R} to your mana pool.
        this.addAbility(new RedManaAbility());
        // Cycling {R}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{R}")));
    }
View Full Code Here

    public MarduBanner(UUID ownerId) {
        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}"));
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

        super(ownerId, 222, "Jeskai Banner", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{3}");
        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());
View Full Code Here

       
        this.subtype.add("Forest");
        this.subtype.add("Mountain");

        this.addAbility(new GreenManaAbility());
        this.addAbility(new RedManaAbility());
       
    }
View Full Code Here

TOP

Related Classes of mage.abilities.mana.RedManaAbility

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.