Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.DestroyAllEffect


        this.expansionSetCode = "ICE";

        this.color.setRed(true);

        // Destroy all artifacts, creatures, and lands. They can't be regenerated.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter, true));
    }
View Full Code Here


        // Deathtouch
        this.addAbility(DeathtouchAbility.getInstance());
        // {6}{B}{B}: Monstrosity 3.
        this.addAbility(new MonstrosityAbility("{6}{B}{B}", 3));
        // When Hythonia the Cruel becomes monstrous, destroy all non-Gorgon creatures.
        this.addAbility(new BecomesMonstrousSourceTriggeredAbility(new DestroyAllEffect(filter)));
       
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.DestroyAllEffect

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.