* Ichorid - Fixed that the effect could not be canceled if other black creature was in the graveyard.

This commit is contained in:
LevelX2 2014-06-19 00:30:28 +02:00
parent 8413be3b55
commit faed336306

View file

@ -75,7 +75,9 @@ public class Ichorid extends CardImpl {
FilterCard filter = new FilterCreatureCard("an other black creature card from your graveyard"); FilterCard filter = new FilterCreatureCard("an other black creature card from your graveyard");
filter.add(Predicates.not(new CardIdPredicate(this.getId()))); filter.add(Predicates.not(new CardIdPredicate(this.getId())));
filter.add(new ColorPredicate(ObjectColor.BLACK)); filter.add(new ColorPredicate(ObjectColor.BLACK));
ability.addCost(new ExileFromGraveCost(new TargetCardInYourGraveyard(filter))); TargetCardInYourGraveyard target = new TargetCardInYourGraveyard(filter);
target.setRequired(false);
ability.addCost(new ExileFromGraveCost(target));
this.addAbility(ability); this.addAbility(ability);
} }