mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Fix #8933
This commit is contained in:
parent
b59885731d
commit
99ea038dc7
1 changed files with 2 additions and 2 deletions
|
@ -32,11 +32,11 @@ public final class DrownInDreams extends CardImpl {
|
|||
|
||||
// • Target player draws X cards.
|
||||
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.
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue