Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.RemoveFromCombatTargetEffect


        this.toughness = new MageInt(2);

        this.addAbility(FlashAbility.getInstance());
        this.addAbility(FlyingAbility.getInstance());
        // When Hollowhenge Spirit enters the battlefield, remove target attacking or blocking creature from combat.
        Ability ability = new EntersBattlefieldTriggeredAbility(new RemoveFromCombatTargetEffect());
        Target target = new TargetAttackingOrBlockingCreature();
        ability.addTarget(target);
        this.addAbility(ability);

    }
View Full Code Here

TOP

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

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.