forked from External/mage
Fixed AshiokDreamRender missing target
This commit is contained in:
parent
6f045ec81a
commit
5a194d27cd
1 changed files with 2 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ import mage.filter.StaticFilters;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -36,6 +37,7 @@ public final class AshiokDreamRender extends CardImpl {
|
|||
// -1: Target player puts the top four cards of their library into their graveyard. Then exile each opponent's graveyard.
|
||||
Ability ability = new LoyaltyAbility(new PutTopCardOfLibraryIntoGraveTargetEffect(4), -1);
|
||||
ability.addEffect(new ExileGraveyardAllPlayersEffect(StaticFilters.FILTER_CARD, TargetController.OPPONENT).setText("Then exile each opponent's graveyard."));
|
||||
ability.addTarget(new TargetPlayer());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue