mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
fix Transmute description
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user