Package mage.abilities.keyword

Examples of mage.abilities.keyword.ScavengeAbility


        this.toughness = new MageInt(1);

        // Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)
        this.addAbility(new SwampwalkAbility());
        // Scavenge {2}{B} ({2}{B}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)
        this.addAbility(new ScavengeAbility(new ManaCostsImpl("{2}{B}")));
    }
View Full Code Here


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

        // Scavenge {4}{G}{G}
        this.addAbility(new ScavengeAbility(new ManaCostsImpl("{4}{G}{G}")));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.ScavengeAbility

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.