Examples of ExileCardYouChooseTargetOpponentEffect


Examples of mage.abilities.effects.common.ExileCardYouChooseTargetOpponentEffect

        this.toughness = new MageInt(1);

        // Intimidate
        this.addAbility(IntimidateAbility.getInstance());
        // When Lifebane Zombie enters the battlefield, target opponent reveals his or her hand. You choose a green or white creature card from it and exile that card.
        Ability ability = new EntersBattlefieldTriggeredAbility(new ExileCardYouChooseTargetOpponentEffect(filter));
        ability.addTarget(new TargetOpponent());
        this.addAbility(ability);       
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileCardYouChooseTargetOpponentEffect

        this.color.setBlack(true);
        this.color.setWhite(true);

        // When Sin Collector enters the battlefield, target opponent reveals his or her hand. You choose an instant or sorcery card from it and exile that card.
        Ability ability = new EntersBattlefieldTriggeredAbility(new ExileCardYouChooseTargetOpponentEffect(new FilterInstantOrSorceryCard("an instant or sorcery card")));
        ability.addTarget(new TargetOpponent());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileCardYouChooseTargetOpponentEffect

        this.expansionSetCode = "AVR";

        this.color.setBlack(true);

        // Target opponent reveals his or her hand. You choose a card from it with converted mana cost 4 or greater and exile that card.
        this.getSpellAbility().addEffect(new ExileCardYouChooseTargetOpponentEffect(filter));
        this.getSpellAbility().addTarget(new TargetOpponent());
    }
View Full Code Here

Examples of mage.abilities.effects.common.ExileCardYouChooseTargetOpponentEffect

        this.color.setBlack(true);
        this.color.setWhite(true);

        // Target opponent reveals his or her hand. You choose a nonland card from it and exile that card.
        this.getSpellAbility().addEffect(new ExileCardYouChooseTargetOpponentEffect(filter));
        this.getSpellAbility().addTarget(new TargetOpponent());
    }
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.