mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
[MRD] Fix text on Dream's Grip
This commit is contained in:
parent
b85353bf25
commit
82d9136f2e
1 changed files with 4 additions and 1 deletions
|
@ -28,10 +28,13 @@ public final class DreamsGrip extends CardImpl {
|
||||||
//Tap target permanent;
|
//Tap target permanent;
|
||||||
TargetPermanent target1 = new TargetPermanent(new FilterPermanent("Permanent to tap"));
|
TargetPermanent target1 = new TargetPermanent(new FilterPermanent("Permanent to tap"));
|
||||||
Effect tapEffect = new TapTargetEffect();
|
Effect tapEffect = new TapTargetEffect();
|
||||||
|
tapEffect.setText("Tap target permanent");
|
||||||
this.getSpellAbility().addTarget(target1);
|
this.getSpellAbility().addTarget(target1);
|
||||||
this.getSpellAbility().addEffect(tapEffect);
|
this.getSpellAbility().addEffect(tapEffect);
|
||||||
//or untap target permanent.
|
//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"));
|
TargetPermanent target2 = new TargetPermanent(new FilterPermanent("Permanent to untap"));
|
||||||
mode.addTarget(target2);
|
mode.addTarget(target2);
|
||||||
this.getSpellAbility().addMode(mode);
|
this.getSpellAbility().addMode(mode);
|
||||||
|
|
Loading…
Add table
Reference in a new issue