Package mage.abilities.common

Examples of mage.abilities.common.EntersBattlefieldTappedAbility


    public DismalBackwater(UUID ownerId) {
        super(ownerId, 232, "Dismal Backwater", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "KTK";

        // Dismal Backwater enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Dismal Backwater enters the battlefield, you gain 1 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(1)));
        // {T}: Add {U} or {B} to your mana pool.
        this.addAbility(new BlueManaAbility());
        this.addAbility(new BlackManaAbility());
View Full Code Here


    public SaprazzanSkerry(UUID ownerId) {
        super(ownerId, 328, "Saprazzan Skerry", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "MMQ";

        // Saprazzan Skerry enters the battlefield tapped with two depletion counters on it.
        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.DEPLETION.createInstance(2))));
        // {tap}, Remove a depletion counter from Saprazzan Skerry: Add {U}{U} to your mana pool. If there are no depletion counters on Saprazzan Skerry, sacrifice it.
        Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.BlueMana(2), new TapSourceCost());
        ability.addCost(new RemoveCountersSourceCost(CounterType.DEPLETION.createInstance(1)));
        ability.addEffect(new ConditionalOneShotEffect(new SacrificeSourceEffect(), new SourceHasCounterCondition(CounterType.DEPLETION, 0,0), "If there are no depletion counters on Saprazzan Skerry, sacrifice it"));
View Full Code Here

    public SkyDiamond(UUID ownerId) {
        super(ownerId, 316, "Sky Diamond", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{2}");
        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

        // Flying
        this.addAbility(FlyingAbility.getInstance());
       
        // Carrion Crow enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
    }
View Full Code Here

    public CharcoalDiamond(UUID ownerId) {
        super(ownerId, 289, "Charcoal Diamond", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{2}");
        this.expansionSetCode = "7ED";

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

    public GrandColiseum(UUID ownerId) {
        super(ownerId, 319, "Grand Coliseum", Rarity.RARE, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ONS";

        // Grand Coliseum enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
        // {tap}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you.
        Ability ability = new AnyColorManaAbility();
        ability.addEffect(new DamageControllerEffect(1));
View Full Code Here

    public TranquilThicket(UUID ownerId) {
        super(ownerId, 326, "Tranquil Thicket", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "ONS";

        // Tranquil Thicket enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {G} to your mana pool.
        this.addAbility(new GreenManaAbility());
        // Cycling {G}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{G}")));
    }
View Full Code Here

    public GhituEncampment(UUID ownerId) {
        super(ownerId, 353, "Ghitu Encampment", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "10E";

        this.addAbility(new EntersBattlefieldTappedAbility());
        this.addAbility(new RedManaAbility());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new BecomesCreatureSourceEffect(new GhituEncampmentToken(), "land", Duration.EndOfTurn),
                new ManaCostsImpl("{1}{R}")));
    }
View Full Code Here

    public MarbleDiamond(UUID ownerId) {
        super(ownerId, 306, "Marble Diamond", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{2}");
        this.expansionSetCode = "7ED";

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

public class SejiriSteppe extends CardImpl {

    public SejiriSteppe(UUID ownerId) {
        super(ownerId, 142, "Sejiri Steppe", Rarity.COMMON, new CardType[]{CardType.LAND}, null);
        this.expansionSetCode = "WWK";
        this.addAbility(new EntersBattlefieldTappedAbility());
        EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new GainProtectionFromColorTargetEffect(Duration.EndOfTurn), false);
        ability.addTarget(new TargetControlledCreaturePermanent());
        this.addAbility(ability);
        this.addAbility(new WhiteManaAbility());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.EntersBattlefieldTappedAbility

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.