mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed missing target from Atris, Oracle of Half-Truths
This commit is contained in:
parent
9fcc1405c0
commit
77f1a792ee
1 changed files with 4 additions and 1 deletions
|
@ -15,6 +15,7 @@ import mage.filter.FilterCard;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -36,7 +37,9 @@ public final class AtrisOracleOfHalfTruths extends CardImpl {
|
|||
this.addAbility(new MenaceAbility());
|
||||
|
||||
// When Atris, Oracle of Half-Truths enters the battlefield, target opponent looks at the top three cards of your library and separates them into a face-down pile and a face-up pile. Put one pile into your hand and the other into your graveyard.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new AtrisOracleOfHalfTruthsEffect()));
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new AtrisOracleOfHalfTruthsEffect());
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private AtrisOracleOfHalfTruths(final AtrisOracleOfHalfTruths card) {
|
||||
|
|
Loading…
Reference in a new issue