This commit is contained in:
Alex W. Jackson 2022-05-14 11:04:39 -04:00
parent b59885731d
commit 99ea038dc7

View file

@ -32,11 +32,11 @@ public final class DrownInDreams extends CardImpl {
// Target player draws X cards. // Target player draws X cards.
this.getSpellAbility().addEffect(new DrawCardTargetEffect(ManacostVariableValue.REGULAR)); this.getSpellAbility().addEffect(new DrawCardTargetEffect(ManacostVariableValue.REGULAR));
this.getSpellAbility().addTarget(new TargetPlayer()); this.getSpellAbility().addTarget(new TargetPlayer().withChooseHint("draws X cards"));
// Target player mills twice X cards. // Target player mills twice X cards.
Mode mode = new Mode(new MillCardsTargetEffect(xValue).setText("target player mills twice X cards")); Mode mode = new Mode(new MillCardsTargetEffect(xValue).setText("target player mills twice X cards"));
mode.addTarget(new TargetPlayer()); mode.addTarget(new TargetPlayer().withChooseHint("mills twice X cards"));
this.getSpellAbility().addMode(mode); this.getSpellAbility().addMode(mode);
} }