From e021e663875936dc8b08b49af3fb3e94da106a6a Mon Sep 17 00:00:00 2001 From: Sol Date: Sat, 16 Nov 2013 16:02:23 +0000 Subject: [PATCH] - Fixed Spell Description of MorphDown --- forge-gui/res/cardsfolder/s/swords_to_plowshares.txt | 2 +- .../src/main/java/forge/card/cardfactory/CardFactoryUtil.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/forge-gui/res/cardsfolder/s/swords_to_plowshares.txt b/forge-gui/res/cardsfolder/s/swords_to_plowshares.txt index a3af5e028ee..e8012f23a3a 100644 --- a/forge-gui/res/cardsfolder/s/swords_to_plowshares.txt +++ b/forge-gui/res/cardsfolder/s/swords_to_plowshares.txt @@ -1,7 +1,7 @@ Name:Swords to Plowshares ManaCost:W Types:Instant -A:SP$ ChangeZone | Cost$ W | ValidTgts$ Creature | TgtPrompt$ Select target creature | Origin$ Battlefield | Destination$ Exile | RememberLKI$ True | SpellDescription$ Exile target creature. Its controller gains life equal to its power. | SubAbility$ DBGainLife +A:SP$ ChangeZone | Cost$ W | ValidTgts$ Creature | TgtPrompt$ Select target creature | Origin$ Battlefield | Destination$ Exile | RememberLKI$ True | SpellDescription$ Exile target creature. Its controller gains life equal to its power. | StackDescription$ SpellDescription | SubAbility$ DBGainLife SVar:DBGainLife:DB$ GainLife | Defined$ RememberedController | LifeAmount$ X | References$ X | SubAbility$ DBCleanup SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True SVar:X:RememberedLKI$CardPower diff --git a/forge-gui/src/main/java/forge/card/cardfactory/CardFactoryUtil.java b/forge-gui/src/main/java/forge/card/cardfactory/CardFactoryUtil.java index e3b42010b0b..87747ffa3ea 100644 --- a/forge-gui/src/main/java/forge/card/cardfactory/CardFactoryUtil.java +++ b/forge-gui/src/main/java/forge/card/cardfactory/CardFactoryUtil.java @@ -184,7 +184,7 @@ public class CardFactoryUtil { } }; - morphDown.setDescription("(You may cast this face down as a 2/2 creature for 3.)"); + morphDown.setDescription("(You may cast this face down as a 2/2 creature for {3}.)"); morphDown.setStackDescription("Morph - Creature 2/2"); morphDown.setCastFaceDown(true);