Added Sadistic Augermage, Rings of Brighthearth, Whipcorder, Gilded Drake.

This commit is contained in:
LevelX2 2014-10-28 16:48:51 +01:00
parent 1241f6582b
commit 8de37b2bfa
7 changed files with 527 additions and 1 deletions

View file

@ -81,11 +81,13 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
if (permanent != null) {
result |= controller.moveCardToLibraryWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD, onTop, true);
}
break;
case GRAVEYARD:
Card card = game.getCard(targetId);
if (card != null && game.getState().getZone(targetId).equals(Zone.GRAVEYARD)) {
result |= controller.moveCardToLibraryWithInfo(card, source.getSourceId(), game, Zone.GRAVEYARD, onTop, true);
}
break;
}
}
}