Package mage.abilities.effects

Examples of mage.abilities.effects.EntersBattlefieldEffect


        this.color.setBlue(true);
        this.power = new MageInt(0);
        this.toughness = new MageInt(0);

        // You may have Body Double enter the battlefield as a copy of any creature card in a graveyard.
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new EntersBattlefieldEffect(
                new BodyDoubleCopyEffect(),
                "You may have {this} enter the battlefield as a copy of any creature card in a graveyard",
                true));
        this.addAbility(ability);
View Full Code Here


    public VividCrag(UUID ownerId) {
        super(ownerId, 275, "Vivid Crag", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LRW";
        // Vivid Crag enters the battlefield tapped with two charge counters on it.
        EntersBattlefieldEffect effect = new EntersBattlefieldEffect(new TapSourceEffect(true), "{this} enters the battlefield tapped with two charge counters on it");
        effect.addEffect(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(2)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
        // {tap}: Add {R} to your mana pool.
        this.addAbility(new RedManaAbility());
        // {tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.
        Ability ability = new AnyColorManaAbility();
View Full Code Here

        this.color.setBlue(true);
        this.power = new MageInt(0);
        this.toughness = new MageInt(0);

        // As Primal Plasma enters the battlefield, it becomes your choice of a 3/3 creature, a 2/2 creature with flying, or a 1/6 creature with defender.
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new EntersBattlefieldEffect(new PrimalPlasmaEffect(), "As {this} enters the battlefield, it becomes your choice of a 3/3 creature, a 2/2 creature with flying, or a 1/6 creature with defender"));
        ability.addChoice(new PrimalPlasmaChoice());
        this.addAbility(ability);
    }
View Full Code Here

        this.toughness = new MageInt(0);

        // Ninjutsu {1}{U}
        this.addAbility(new NinjutsuAbility(new ManaCostsImpl("{1}{U}")));
        // You may have Sakashima's Student enter the battlefield as a copy of any creature on the battlefield, except it's still a Ninja in addition to its other creature types.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,new EntersBattlefieldEffect(
                new CopyPermanentEffect(new SakashimasStudentApplyToPermanent()),
                "You may have {this} enter the battlefield as a copy of any creature on the battlefield, except it's still a Ninja in addition to its other creature types",
                true)));

    }
View Full Code Here

    public VividGrove(UUID ownerId) {
        super(ownerId, 277, "Vivid Grove", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LRW";
        // Vivid Grove enters the battlefield tapped with two charge counters on it.
        EntersBattlefieldEffect effect = new EntersBattlefieldEffect(new TapSourceEffect(true), "{this} enters the battlefield tapped with two charge counters on it");
        effect.addEffect(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(2)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
        // {tap}: Add {G} to your mana pool.
        this.addAbility(new GreenManaAbility());
        // {tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.
        Ability ability = new AnyColorManaAbility();
View Full Code Here

    public VividMarsh(UUID ownerId) {
        super(ownerId, 278, "Vivid Marsh", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LRW";

        // Vivid Marsh enters the battlefield tapped with two charge counters on it.
        EntersBattlefieldEffect effect = new EntersBattlefieldEffect(new TapSourceEffect(true), "{this} enters the battlefield tapped with two charge counters on it");
        effect.addEffect(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(2)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
        // {tap}: Add {B} to your mana pool.
        this.addAbility(new BlackManaAbility());
        // {tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.
        Ability ability = new AnyColorManaAbility();
View Full Code Here

    public VividMeadow(UUID ownerId) {
        super(ownerId, 279, "Vivid Meadow", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LRW";
        // Vivid Meadow enters the battlefield tapped with two charge counters on it.
        EntersBattlefieldEffect effect = new EntersBattlefieldEffect(new TapSourceEffect(true), "{this} enters the battlefield tapped with two charge counters on it");
        effect.addEffect(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(2)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
        // {tap}: Add {W} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        // {tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.
        Ability ability = new AnyColorManaAbility();
View Full Code Here

        this.expansionSetCode = "RAV";

        this.color.setBlue(true);

        // You may have Copy Enchantment enter the battlefield as a copy of any enchantment on the battlefield.
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new EntersBattlefieldEffect(
                new CopyEnchantmentEffect(new FilterEnchantmentPermanent()),
                "You may have {this} enter the battlefield as a copy of any enchantment on the battlefield",
                true));
        this.addAbility(ability);       
    }
View Full Code Here

        this.toughness = new MageInt(0);

        // You may have Dack's Duplicate enter the battlefield as a copy of any creature on the battlefield except it gains haste and dethrone.
        this.addAbility(new SimpleStaticAbility(
            Zone.BATTLEFIELD,
            new EntersBattlefieldEffect(new CopyPermanentEffect(new DacksDuplicateApplyToPermanent()),
            "You may have {this} enter the battlefield as a copy of any creature on the battlefield except it gains haste and dethrone",
            true)));
    }
View Full Code Here

    public VividCreek(UUID ownerId) {
        super(ownerId, 276, "Vivid Creek", Rarity.UNCOMMON, new CardType[]{CardType.LAND}, "");
        this.expansionSetCode = "LRW";
        // Vivid Creek enters the battlefield tapped with two charge counters on it.
        EntersBattlefieldEffect effect = new EntersBattlefieldEffect(new TapSourceEffect(true), "{this} enters the battlefield tapped with two charge counters on it");
        effect.addEffect(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(2)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
        // {tap}: Add {U} to your mana pool.
        this.addAbility(new BlueManaAbility());
        // {tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.
        Ability ability = new AnyColorManaAbility();
View Full Code Here

TOP

Related Classes of mage.abilities.effects.EntersBattlefieldEffect

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.