mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[IKO] Emergent Ultimatum - fixed text;
This commit is contained in:
parent
f39054c567
commit
87cf8a9df6
1 changed files with 2 additions and 3 deletions
|
@ -14,7 +14,6 @@ import mage.filter.StaticFilters;
|
|||
import mage.filter.predicate.mageobject.MonocoloredPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInExile;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
@ -50,7 +49,7 @@ class EmergentUltimatumEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
staticText = "Search your library for up to three monocolored cards with different names and exile them. " +
|
||||
"An opponent chooses one of those cards. Shuffle that card into your library. " +
|
||||
"You may cast the other cards without paying their mana costs.";
|
||||
"You may cast the other cards without paying their mana costs";
|
||||
}
|
||||
|
||||
private EmergentUltimatumEffect(final EmergentUltimatumEffect effect) {
|
||||
|
@ -100,7 +99,7 @@ class EmergentUltimatumEffect extends OneShotEffect {
|
|||
if (!player.chooseUse(Outcome.PlayForFree, "Cast an exiled card without paying its mana cost?", source, game)) {
|
||||
break;
|
||||
}
|
||||
targetCardInExile.clearChosen();
|
||||
targetCardInExile.clearChosen();
|
||||
if (!player.choose(Outcome.PlayForFree, cards, targetCardInExile, game)) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue