* Scry effect - Added message to the game log, how many cards were put on bottom of the library.

This commit is contained in:
LevelX2 2013-09-10 16:07:49 +02:00
parent b4a1e79f85
commit 478bd3979b

View file

@ -66,6 +66,7 @@ public class ScryEffect extends OneShotEffect<ScryEffect> {
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player != null) {
Cards cards = new CardsImpl(Zone.PICK);
int count = Math.min(scryNumber, player.getLibrary().size());
if (count == 0) {
@ -87,6 +88,7 @@ public class ScryEffect extends OneShotEffect<ScryEffect> {
target1.clearChosen();
}
// move cards to the top of the library
int onTop = cards.size();
if (cards.size() > 1) {
TargetCard target2 = new TargetCard(Zone.PICK, filter2);
target2.setRequired(true);
@ -104,8 +106,14 @@ public class ScryEffect extends OneShotEffect<ScryEffect> {
Card card = cards.get(cards.iterator().next(), game);
card.moveToZone(Zone.LIBRARY, source.getId(), game, true);
}
game.informPlayers(new StringBuilder(player.getName()).append(" puts ")
.append(onTop).append(onTop == 1 ?" card":"cards")
.append(" on the bottom of his or her library (scry ")
.append(scryNumber).append(")").toString());
return true;
}
return false;
}
@Override
public ScryEffect copy() {