* Path to Exile - Fixed that zone change replacement effects prevented the search effect to happen (fixes #824).

This commit is contained in:
LevelX2 2015-03-23 22:26:15 +01:00
parent 5161f849f9
commit 0c19b429f7

View file

@ -54,6 +54,8 @@ public class PathToExile extends CardImpl {
super(ownerId, 15, "Path to Exile", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{W}"); super(ownerId, 15, "Path to Exile", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{W}");
this.expansionSetCode = "CON"; this.expansionSetCode = "CON";
// Exile target creature. Its controller may search his or her library for a basic land card,
// put that card onto the battlefield tapped, then shuffle his or her library.
this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new PathToExileEffect()); this.getSpellAbility().addEffect(new PathToExileEffect());
} }
@ -90,7 +92,8 @@ class PathToExileEffect extends OneShotEffect {
Permanent permanent = game.getPermanent(source.getFirstTarget()); Permanent permanent = game.getPermanent(source.getFirstTarget());
if (controller != null && permanent != null) { if (controller != null && permanent != null) {
Player player = game.getPlayer(permanent.getControllerId()); Player player = game.getPlayer(permanent.getControllerId());
if (controller.moveCardToExileWithInfo(permanent, null, "", source.getSourceId(), game, Zone.BATTLEFIELD)) { // if the zone change to exile gets replaced does not prevent the target controller to be able to search
controller.moveCardToExileWithInfo(permanent, null, "", source.getSourceId(), game, Zone.BATTLEFIELD);
if (player.chooseUse(Outcome.PutCardInPlay, "Search your library for a basic land card?", game)) { if (player.chooseUse(Outcome.PutCardInPlay, "Search your library for a basic land card?", game)) {
TargetCardInLibrary target = new TargetCardInLibrary(new FilterBasicLandCard()); TargetCardInLibrary target = new TargetCardInLibrary(new FilterBasicLandCard());
if (player.searchLibrary(target, game)) { if (player.searchLibrary(target, game)) {
@ -103,7 +106,6 @@ class PathToExileEffect extends OneShotEffect {
} }
return true; return true;
} }
}
return false; return false;
} }