Package mage.abilities.keyword

Examples of mage.abilities.keyword.UnleashAbility


        this.color.setBlack(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        // Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)
        this.addAbility(new UnleashAbility());
       
        // {1}{B}: Regenerate Grim Roustabout.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{1}{B}")));
    }
View Full Code Here


        this.color.setBlack(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(3);
        // Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)
        this.addAbility(new UnleashAbility());
    }
View Full Code Here

        // Haste
        this.addAbility(HasteAbility.getInstance());
       
        // Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)
        this.addAbility(new UnleashAbility());
       
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.UnleashAbility

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.