Examples of PlainswalkAbility


Examples of mage.abilities.keyword.PlainswalkAbility

        this.color.setRed(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);

        // Plainswalk
        this.addAbility(new PlainswalkAbility());

        // {2}{R}, Sacrifice Boggart Arsonists: Destroy target Scarecrow or Plains.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{2}{R}"));
        ability.addCost(new SacrificeSourceCost());
        ability.addTarget(new TargetPermanent(filter));
View Full Code Here

Examples of mage.abilities.keyword.PlainswalkAbility

        this.color.setGreen(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);

        // Plainswalk
        this.addAbility(new PlainswalkAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.PlainswalkAbility

        this.color.setWhite(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(4);

        // Plainswalk
        this.addAbility(new PlainswalkAbility());
        // Whenever Graceful Antelope deals combat damage to a player, you may have target land become a Plains until Graceful Antelope leaves the battlefield.
        Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new BecomesBasicLandTargetEffect(Duration.WhileOnBattlefield,"Plains"), true);
        Target target = new TargetLandPermanent();
        ability.addTarget(target);
        this.addAbility(ability);
View Full Code Here

Examples of mage.abilities.keyword.PlainswalkAbility

        this.color.setWhite(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(1);

        // Plainswalk
        this.addAbility(new PlainswalkAbility());
    }
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.