mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Merge pull request #13829 from ThorstenHacke/bugfix/will_of_the_abzan
set max for targetopponents correct
This commit is contained in:
commit
2a9c6bc0cb
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ public final class WillOfTheAbzan extends CardImpl {
|
||||||
.setText("any number of target opponents each sacrifice a creature " +
|
.setText("any number of target opponents each sacrifice a creature " +
|
||||||
"with the greatest power among creatures that player controls"));
|
"with the greatest power among creatures that player controls"));
|
||||||
this.getSpellAbility().addEffect(new LoseLifeTargetControllerEffect(3).setText("and lose 3 life"));
|
this.getSpellAbility().addEffect(new LoseLifeTargetControllerEffect(3).setText("and lose 3 life"));
|
||||||
this.getSpellAbility().addTarget(new TargetOpponent(0, 1, false));
|
this.getSpellAbility().addTarget(new TargetOpponent(0, Integer.MAX_VALUE, false));
|
||||||
|
|
||||||
// * Return target creature card from your graveyard to the battlefield.
|
// * Return target creature card from your graveyard to the battlefield.
|
||||||
this.getSpellAbility().addMode(new Mode(new ReturnFromGraveyardToBattlefieldTargetEffect())
|
this.getSpellAbility().addMode(new Mode(new ReturnFromGraveyardToBattlefieldTargetEffect())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue