Package mage.abilities.common

Examples of mage.abilities.common.AsEntersBattlefieldAbility.addTarget()


        // As Canker Abomination enters the battlefield, choose an opponent. Canker Abomination enters the battlefield with a -1/-1 counter on it for each creature that player controls.
        Ability ability = new AsEntersBattlefieldAbility(new CankerAbominationEffect());
        Target target = new TargetOpponent();
        target.setNotTarget(true);
        ability.addTarget(target);
        this.addAbility(ability);

    }

    public CankerAbomination(final CankerAbomination 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.