mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
fix up Morph ability description.
This commit is contained in:
@@ -1002,7 +1002,7 @@ public class CardFactoryUtil {
|
|||||||
};
|
};
|
||||||
|
|
||||||
morph_down.setManaCost("3");
|
morph_down.setManaCost("3");
|
||||||
morph_down.setDescription("You may play this face down as a 2/2 creature for 3. Turn it face up any time for its morph cost.");
|
//morph_down.setDescription("(You may cast this face down as a 2/2 creature for 3. Turn it face up any time for its morph cost.)");
|
||||||
morph_down.setStackDescription("Morph - Creature 2/2");
|
morph_down.setStackDescription("Morph - Creature 2/2");
|
||||||
|
|
||||||
return morph_down;
|
return morph_down;
|
||||||
@@ -1044,7 +1044,8 @@ public class CardFactoryUtil {
|
|||||||
|
|
||||||
morph_up.setManaCost(cost);
|
morph_up.setManaCost(cost);
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("Morph ").append(cost).append(" - turn this card face up.");
|
sb.append("Morph ").append(cost);
|
||||||
|
sb.append(" (You may cast this face down as a 2/2 creature for 3. Turn it face up any time for its morph cost.)");
|
||||||
morph_up.setDescription(sb.toString());
|
morph_up.setDescription(sb.toString());
|
||||||
|
|
||||||
StringBuilder sbStack = new StringBuilder();
|
StringBuilder sbStack = new StringBuilder();
|
||||||
|
|||||||
Reference in New Issue
Block a user