mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
various text fixes for M20 cards
This commit is contained in:
parent
2e8b00ed9c
commit
61fa056165
16 changed files with 99 additions and 69 deletions
|
|
@ -31,7 +31,7 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
|||
this.condition = condition;
|
||||
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("{this} costs ");
|
||||
sb.append("this spell costs ");
|
||||
for (String manaSymbol : manaCostsToReduce.getSymbols()) {
|
||||
sb.append(manaSymbol);
|
||||
}
|
||||
|
|
@ -52,7 +52,7 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
|||
this.amount = amount;
|
||||
this.condition = condition;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("{this} costs {").append(amount).append("} less to cast");
|
||||
sb.append("this spell costs {").append(amount).append("} less to cast");
|
||||
if (this.condition != null) {
|
||||
sb.append(" ").append(this.condition.toString().startsWith("if ") ? "" : "if ");
|
||||
sb.append(this.condition.toString());
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
|
||||
package mage.abilities.effects.common.discard;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
|
|
@ -10,6 +7,9 @@ import mage.constants.Outcome;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author mluds
|
||||
*/
|
||||
|
|
@ -17,7 +17,7 @@ public class DiscardHandAllEffect extends OneShotEffect {
|
|||
|
||||
public DiscardHandAllEffect() {
|
||||
super(Outcome.Discard);
|
||||
this.staticText = "Each player discards their hand";
|
||||
this.staticText = "each player discards their hand";
|
||||
}
|
||||
|
||||
public DiscardHandAllEffect(final DiscardHandAllEffect effect) {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ import mage.target.TargetCard;
|
|||
import mage.target.common.TargetCardInLibrary;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Styxo
|
||||
*/
|
||||
public class SearchLibraryGraveyardPutInHandEffect extends OneShotEffect {
|
||||
|
|
@ -34,7 +33,7 @@ public class SearchLibraryGraveyardPutInHandEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
this.filter = filter;
|
||||
this.forceToSearchBoth = forceToSearchBoth;
|
||||
staticText = (youMay ? "You may" : "") + " search your library and" + (forceToSearchBoth ? "" : "/or") + " graveyard for a card named " + filter.getMessage()
|
||||
staticText = (youMay ? "you may" : "") + " search your library and" + (forceToSearchBoth ? "" : "/or") + " graveyard for a card named " + filter.getMessage()
|
||||
+ ", reveal it, and put it into your hand. " + (forceToSearchBoth ? "Then shuffle your library" : "If you search your library this way, shuffle it");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue