Examples of MonstrosityAbility


Examples of mage.abilities.keyword.MonstrosityAbility

        this.toughness = new MageInt(6);

        // 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

Examples of mage.abilities.keyword.MonstrosityAbility

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

        // {3}{G}{W}: Monstrosity 1.
        this.addAbility(new MonstrosityAbility("{3}{G}{W}", 1));
        // As long as Fleecemane Lion is monstrous, it has hexproof and indestructible.
        Effect effect = new ConditionalContinousEffect(
                new GainAbilitySourceEffect(HexproofAbility.getInstance(), Duration.WhileOnBattlefield),
                MonstrousCondition.getInstance(),
                "As long as {this} is monstrous, it has hexproof");
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.