diff --git a/res/cards.txt b/res/cards.txt index 8a744a9c040..63eaa1b23f0 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -4,6 +4,26 @@ Instant Return target artifact, enchantment, or land to its owner's hand. spBounceTgt:Artifact,Enchantment,Land +Disperse +1 U +Instant +Return target nonland permanent to its owner's hand. +spBounceTgt:Artifact,Enchantment,Creature,Planeswalker + +Into Thin Air +5 U +Instant +Affinity for artifacts (This spell costs 1 less to cast for each artifact you control.) Return target artifact to its owner's hand. +spBounceTgt:Artifact +CostChange:Player:Less:1:Self:All:All:Affinity/Artifact + +Symbol of Unsummoning +2 U +Sorcery +Return target creature to its owner's hand. +spBounceTgt:Creature +Draw a card. + Exiled Boggart 1 B Creature Goblin Rogue diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index e0e451196dd..88ad85895a8 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -2353,7 +2353,7 @@ public class CardFactory implements NewConstants { String tmpDesc = card.getText().substring(15); int i = tmpDesc.indexOf("."); tmpDesc = tmpDesc.substring(0, i); - final String Selec = "Select target " + tmpDesc + " to return to owners hand."; + final String Selec = "Select target to return to owners hand."; card.clearSpellAbility();