Examples of FadingAbility


Examples of mage.abilities.keyword.FadingAbility

        this.toughness = new MageInt(5);

        // Shroud
        this.addAbility(ShroudAbility.getInstance());
        // Fading 3
        this.addAbility(new FadingAbility(3, this));
    }
View Full Code Here

Examples of mage.abilities.keyword.FadingAbility

    public TangleWire(UUID ownerId) {
        super(ownerId, 139, "Tangle Wire", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "NMS";

        // Fading 4
        this.addAbility(new FadingAbility(4, this));
        // At the beginning of each player's upkeep, that player taps an untapped artifact, creature, or land he or she controls for each fade counter on Tangle Wire.
        this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new TangleWireEffect(), TargetController.ANY, false, true));
    }
View Full Code Here

Examples of mage.abilities.keyword.FadingAbility

        this.expansionSetCode = "NMS";

        this.color.setWhite(true);

        // Fading 5
        this.addAbility(new FadingAbility(5, this));
       
        // Remove a fade counter from Parallax Wave: Exile target creature.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExileTargetEffect(this.getId(), this.getName()), new RemoveCountersSourceCost(CounterType.FADE.createInstance()));
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
View Full Code Here

Examples of mage.abilities.keyword.FadingAbility

        this.expansionSetCode = "NMS";

        this.color.setBlue(true);

        // Fading 5
        this.addAbility(new FadingAbility(5, this));
        // Remove a fade counter from Parallax Tide: Exile target land.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExileTargetForSourceEffect("Parallax Tide Exile"), new RemoveCountersSourceCost(CounterType.FADE.createInstance()));
        ability.addTarget(new TargetLandPermanent());
        this.addAbility(ability);
        // When Parallax Tide leaves the battlefield, each player returns to the battlefield all cards he or she owns exiled with Parallax Tide.
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.