Examples of AnotherCreatureEntersBattlefieldTriggeredAbility


Examples of mage.abilities.common.AnotherCreatureEntersBattlefieldTriggeredAbility

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

        // Whenever another creature enters the battlefield, you may gain 1 life.
        this.addAbility(new AnotherCreatureEntersBattlefieldTriggeredAbility(new GainLifeEffect(1), true));
    }
View Full Code Here

Examples of mage.abilities.common.AnotherCreatureEntersBattlefieldTriggeredAbility

        this.toughness = new MageInt(1);

        // Protection from black and from red
        this.addAbility(new ProtectionAbility(filter));
        // Whenever another creature enters the battlefield, you may gain 1 life.
        this.addAbility(new AnotherCreatureEntersBattlefieldTriggeredAbility(new GainLifeEffect(1), true));

    }
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.