[GRN] Some fixes to blue cards.

This commit is contained in:
LevelX2 2018-09-22 19:46:17 +02:00
parent 3e93a71001
commit 95407414ff
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ public final class DeviousCoverUp extends CardImpl {
// You may shuffle up to four target cards from your graveyard into your library. // You may shuffle up to four target cards from your graveyard into your library.
this.getSpellAbility().addEffect(new DeviousCoverUpEffect().setTargetPointer(new SecondTargetPointer())); this.getSpellAbility().addEffect(new DeviousCoverUpEffect().setTargetPointer(new SecondTargetPointer()));
this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 5)); this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 4));
} }
public DeviousCoverUp(final DeviousCoverUp card) { public DeviousCoverUp(final DeviousCoverUp card) {
@ -50,7 +50,7 @@ class DeviousCoverUpEffect extends OneShotEffect {
public DeviousCoverUpEffect() { public DeviousCoverUpEffect() {
super(Outcome.Benefit); super(Outcome.Benefit);
this.staticText = "You may shuffle up to five target cards " this.staticText = "You may shuffle up to four target cards "
+ "from your graveyard into your library."; + "from your graveyard into your library.";
} }

View file

@ -28,7 +28,7 @@ public final class RalsDispersal extends CardImpl {
// Return target creature to its owner's hand. You may search you library and/or graveyard for a card named Ral, Caller of Storms, reveal it, and put it in to your hand. If you search your library this way, shuffle it. // Return target creature to its owner's hand. You may search you library and/or graveyard for a card named Ral, Caller of Storms, reveal it, and put it in to your hand. If you search your library this way, shuffle it.
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
this.getSpellAbility().addEffect( this.getSpellAbility().addEffect(
new SearchLibraryGraveyardPutInHandEffect(filter, false, false) new SearchLibraryGraveyardPutInHandEffect(filter, false, true)
); );
this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addTarget(new TargetCreaturePermanent());
} }