fix Transmute description

This commit is contained in:
jendave
2011-08-06 15:28:49 +00:00
parent 77ca04e500
commit 99b6e6e2d3

View File

@@ -1035,7 +1035,7 @@ public class CardFactoryUtil {
@Override @Override
public boolean canPlay() { public boolean canPlay() {
// unMorphing a card is a Special Action, and not effected by Linvala // unMorphing a card is a Special Action, and not affected by Linvala
return sourceCard.getController().equals(this.getActivatingPlayer()) && sourceCard.isFaceDown() return sourceCard.getController().equals(this.getActivatingPlayer()) && sourceCard.isFaceDown()
&& AllZone.GameAction.isCardInPlay(sourceCard); && AllZone.GameAction.isCardInPlay(sourceCard);
} }
@@ -1418,7 +1418,7 @@ public class CardFactoryUtil {
cycle.setIsCycling(true); cycle.setIsCycling(true);
StringBuilder sbDesc = new StringBuilder(); StringBuilder sbDesc = new StringBuilder();
sbDesc.append(description).append("cycling (").append(abCost.toString()).append(" Search your library for a "); sbDesc.append(description).append("cycling (").append(abCost.toString()).append(" Search your library for a ");
sbDesc.append(description).append(" card, reveal it, and put it into your hand. Then shuffle your library."); sbDesc.append(description).append(" card, reveal it, and put it into your hand. Then shuffle your library.)");
cycle.setDescription(sbDesc.toString()); cycle.setDescription(sbDesc.toString());
StringBuilder sbStack = new StringBuilder(); StringBuilder sbStack = new StringBuilder();
@@ -1485,8 +1485,8 @@ public class CardFactoryUtil {
}; };
StringBuilder sbDesc = new StringBuilder(); StringBuilder sbDesc = new StringBuilder();
sbDesc.append("Transmute (").append(abCost.toString()); sbDesc.append("Transmute (").append(abCost.toString());
sbDesc.append("Search your library for a card with the same converted mana cost as the discarded card, reveal that card, "); sbDesc.append("Search your library for a card with the same converted mana cost as this card, reveal it, ");
sbDesc.append("and put it into your hand. Then shuffle your library. Play this ability only any time you could play a sorcery.)"); sbDesc.append("and put it into your hand. Then shuffle your library. Transmute only as a sorcery.)");
transmute.setDescription(sbDesc.toString()); transmute.setDescription(sbDesc.toString());
StringBuilder sbStack = new StringBuilder(); StringBuilder sbStack = new StringBuilder();