Package mage.abilities.common

Examples of mage.abilities.common.BlocksOrBecomesBlockedByCreatureTriggeredAbility.addEffect()


        this.power = new MageInt(7);
        this.toughness = new MageInt(7);

        // Whenever Engulfing Slagwurm blocks or becomes blocked by a creature, destroy that creature. You gain life equal to that creature's toughness.
        Ability ability = new BlocksOrBecomesBlockedByCreatureTriggeredAbility(new DestroyTargetEffect(), false);
        ability.addEffect(new EngulfingSlagwurmEffect());
        this.addAbility(ability);
    }

    public EngulfingSlagwurm (final EngulfingSlagwurm card) {
        super(card);
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.