mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Kaalia, Zenith Seeker - Added the missing revealing of the cards moved to hand.
This commit is contained in:
parent
ee0b7a53a9
commit
3bdd881e3a
1 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
package mage.cards.k;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
|
@ -18,8 +19,6 @@ import mage.players.Player;
|
|||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
|
@ -75,10 +74,10 @@ class KaaliaZenithSeekerEffect extends OneShotEffect {
|
|||
|
||||
KaaliaZenithSeekerEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "look at the top six cards of your library. " +
|
||||
"You may reveal an Angel card, a Demon card, and/or a Dragon card " +
|
||||
"from among them and put them into your hand. " +
|
||||
"Put the rest on the bottom of your library in a random order.";
|
||||
staticText = "look at the top six cards of your library. "
|
||||
+ "You may reveal an Angel card, a Demon card, and/or a Dragon card "
|
||||
+ "from among them and put them into your hand. "
|
||||
+ "Put the rest on the bottom of your library in a random order.";
|
||||
}
|
||||
|
||||
private KaaliaZenithSeekerEffect(final KaaliaZenithSeekerEffect effect) {
|
||||
|
@ -105,6 +104,7 @@ class KaaliaZenithSeekerEffect extends OneShotEffect {
|
|||
}
|
||||
}
|
||||
cards.removeAll(toHand);
|
||||
player.revealCards(source, toHand, game);
|
||||
player.moveCards(toHand, Zone.HAND, source, game);
|
||||
player.putCardsOnBottomOfLibrary(cards, game, source, false);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue