diff --git a/.gitattributes b/.gitattributes index 556038c573d..0f0f3f17af0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6841,6 +6841,7 @@ res/cardsfolder/s/sanguine_praetor.txt svneol=native#text/plain res/cardsfolder/s/sanity_gnawers.txt svneol=native#text/plain res/cardsfolder/s/sanity_grinding.txt svneol=native#text/plain res/cardsfolder/s/sapling_of_colfenor.txt svneol=native#text/plain +res/cardsfolder/s/sapphire_charm.txt -text res/cardsfolder/s/sapphire_leech.txt svneol=native#text/plain res/cardsfolder/s/sapphire_medallion.txt svneol=native#text/plain res/cardsfolder/s/saprazzan_bailiff.txt svneol=native#text/plain diff --git a/res/cardsfolder/s/sapphire_charm.txt b/res/cardsfolder/s/sapphire_charm.txt new file mode 100644 index 00000000000..717ffc266cf --- /dev/null +++ b/res/cardsfolder/s/sapphire_charm.txt @@ -0,0 +1,12 @@ +Name:Sapphire Charm +ManaCost:U +Types:Instant +Text:no text +A:SP$ Charm | Cost$ U | Choices$ Draw,Pump,Phases | CharmNum$ 1 | SpellDescription$ Choose one - Target player draws a card at the beginning of the next turn's upkeep; or target creature gains flying until end of turn; or target creature an opponent controls phases out. +SVar:Draw:DB$ Draw | ValidTgts$ Player | TgtPrompt$ Select target player | NumCards$ 1 | NextUpkeep$ True | SpellDescription$ Target player draws a card at the beginning of the next turn's upkeep. +SVar:Pump:DB$ Pump | ValidTgts$ Creature | KW$ Flying | TgtPrompt$ Select target creature | SpellDescription$ Target creature gains flying until end of turn. +SVar:Phases:DB$ Phases | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Select target creature an opponent controls | SpellDescription$ Target creature an opponent controls phases out. +SVar:RemAIDeck:True +SVar:Rarity:Common +SVar:Picture:http://www.wizards.com/global/images/magic/general/sapphire_charm.jpg +End \ No newline at end of file diff --git a/src/main/java/forge/Upkeep.java b/src/main/java/forge/Upkeep.java index f4cdeeed33a..3bb3bc2f7bd 100644 --- a/src/main/java/forge/Upkeep.java +++ b/src/main/java/forge/Upkeep.java @@ -264,7 +264,7 @@ public class Upkeep implements java.io.Serializable { player.drawCard(); } }; - slowtrip.setStackDescription(card.getName() + " - Draw a card"); + slowtrip.setStackDescription(card + " - Draw a card."); AllZone.getStack().addSimultaneousStackEntry(slowtrip);