- Allow Vanguard types to take advantage of the Play with the top card of your library revealed

- Add Vampire Nocturnus Avatar
This commit is contained in:
Sol
2013-02-27 04:28:08 +00:00
parent a23aaee600
commit dc0706a673
3 changed files with 10 additions and 1 deletions

View File

@@ -341,7 +341,7 @@ public class CardDetailPanel extends FPanel {
if ((card.hasKeyword("Play with the top card of your library revealed.") || card
.hasKeyword("Players play with the top card of their libraries revealed."))
&& (card.getController() != null)
&& card.isInZone(ZoneType.Battlefield)
&& (card.isInZone(ZoneType.Battlefield) || (card.isType("Vanguard") && card.isInZone(ZoneType.Command)))
&& !card.getController().getZone(ZoneType.Library).isEmpty()) {
area.append("\r\nTop card of your library: ");
area.append(card.getController().getCardsIn(ZoneType.Library, 1));