[MRD] Fix text on Dream's Grip

This commit is contained in:
Alex Vasile 2022-07-14 19:01:05 -04:00
parent b85353bf25
commit 82d9136f2e

View file

@ -28,10 +28,13 @@ public final class DreamsGrip extends CardImpl {
//Tap target permanent;
TargetPermanent target1 = new TargetPermanent(new FilterPermanent("Permanent to tap"));
Effect tapEffect = new TapTargetEffect();
tapEffect.setText("Tap target permanent");
this.getSpellAbility().addTarget(target1);
this.getSpellAbility().addEffect(tapEffect);
//or untap target permanent.
Mode mode = new Mode(new UntapTargetEffect());
Effect untapEffect = new UntapTargetEffect();
untapEffect.setText("Untap target permanent");
Mode mode = new Mode(untapEffect);
TargetPermanent target2 = new TargetPermanent(new FilterPermanent("Permanent to untap"));
mode.addTarget(target2);
this.getSpellAbility().addMode(mode);