Package mage.abilities.mana

Examples of mage.abilities.mana.BlueManaAbility.addEffect()


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


        // {tap}: Add {U} or {B} to your mana pool. Rootwater Depths doesn't untap during your next untap step.
        Ability ability = new BlueManaAbility();
        ability.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(ability);
        ability = new BlackManaAbility();
        ability.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(ability);
    }

    public RootwaterDepths(final RootwaterDepths card) {
        super(card);
View Full Code Here

        // {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);
    }

    public TalismanOfProgress(final TalismanOfProgress card) {
        super(card);
View Full Code Here

        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);
    }

    public CloudcrestLake(final CloudcrestLake card) {
        super(card);
View Full Code Here

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

    public WaterveilCavern(UUID ownerId) {
        super(ownerId, 286, "Waterveil Cavern", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "CHK";
        this.addAbility(new ColorlessManaAbility());
        Ability blueManaAbility = new BlueManaAbility();
        blueManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(blueManaAbility);
        Ability blackManaAbility = new BlackManaAbility();
        blackManaAbility.addEffect(new SkipNextUntapSourceEffect());
        this.addAbility(blackManaAbility);
    }
View Full Code Here

        super(ownerId, 317, "Cephalid Coliseum", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ODY";

        // {tap}: Add {U} to your mana pool. Cephalid Coliseum deals 1 damage to you.
        Ability manaAbility = new BlueManaAbility();
        manaAbility.addEffect(new DamageControllerEffect(1));
        this.addAbility(manaAbility);

        // Threshold - {U}, {tap}, Sacrifice Cephalid Coliseum: Target player draws three cards, then discards three cards. Activate this ability only if seven or more cards are in your graveyard.
        Ability thresholdAbility = new ConditionalGainActivatedAbility(Zone.BATTLEFIELD,
            new DrawCardTargetEffect(3),
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.