Examples of EvolveAbility


Examples of mage.abilities.keyword.EvolveAbility

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

        // Evolve
        this.addAbility(new EvolveAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.EvolveAbility

        // Flying
        this.addAbility(FlyingAbility.getInstance());

        // Evolve (Whenever a creature enters the battlefield under your control, if that creature
        // has greater power or toughness than this creature, put a +1/+1 counter on this creature.)
        this.addAbility(new EvolveAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.EvolveAbility

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

        // Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)
        this.addAbility(new EvolveAbility());

        // 1{U}, {T}: Move a +1/+1 counter from Simic Fluxmage onto target creature.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new MoveCounterFromSourceToTargetEffect(),new ManaCostsImpl("{1}{U}"));
        ability.addCost(new TapSourceCost());
        ability.addTarget(new TargetCreaturePermanent());
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.