Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.RemoveFromCombatSourceEffect


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

        // Whenever Gustcloak Sentinel becomes blocked, you may untap it and remove it from combat.
        Ability ability = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true);
        Effect effect = new RemoveFromCombatSourceEffect();
        effect.setText("and remove it from combat");
        ability.addEffect(effect);
        this.addAbility(ability);
    }
View Full Code Here

TOP

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

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.