minor text fixes

This commit is contained in:
igoudt 2017-05-30 23:45:28 +02:00
parent c0041245d5
commit 9ac70b868d
6 changed files with 8 additions and 8 deletions

View file

@ -72,7 +72,7 @@ public class GiftOfParadise extends CardImpl {
// Enchanted land has "{T}: Add two mana of any one color to your mana pool." // Enchanted land has "{T}: Add two mana of any one color to your mana pool."
Ability gainedAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost()); Ability gainedAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA); Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
effect.setText("Enchanted land has \"{T}: Add two mana of any color to your mana pool.\""); effect.setText("Enchanted land has \"{T}: Add two mana of any one color to your mana pool.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect)); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
} }

View file

@ -58,7 +58,7 @@ public class TrialOfAmbition extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{B}"); super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{B}");
// When Trial of Ambition enters the battlefield, target opponent sacrifices a creature. // When Trial of Ambition enters the battlefield, target opponent sacrifices a creature.
Ability ability = new EntersBattlefieldTriggeredAbility(new SacrificeEffect(new FilterCreaturePermanent(), 1, "Target opponent")); Ability ability = new EntersBattlefieldTriggeredAbility(new SacrificeEffect(new FilterCreaturePermanent(), 1, "target opponent"));
ability.addTarget(new TargetOpponent()); ability.addTarget(new TargetOpponent());
this.addAbility(ability); this.addAbility(ability);

View file

@ -47,7 +47,7 @@ public class PayMoreToCastAsThoughtItHadFlashAbility extends SpellAbility {
@Override @Override
public String getRule() { public String getRule() {
return "You may cast {this} as though it had flash if you pay " + costsToAdd.getText() + " more to cast it. <i>(You may cast it any time you could cast an instant)</i>"; return "You may cast {this} as though it had flash if you pay " + costsToAdd.getText() + " more to cast it. <i>(You may cast it any time you could cast an instant.)</i>";
} }
} }

View file

@ -51,7 +51,7 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
this.staticText = new StringBuilder("add ") this.staticText = new StringBuilder("add ")
.append(CardUtil.numberToText(amount)) .append(CardUtil.numberToText(amount))
.append(" mana of any ") .append(" mana of any ")
.append(amount > 1 ?"one ":"") .append(amount > 1 ? "one " : "")
.append("color to your mana pool").toString(); .append("color to your mana pool").toString();
} }
@ -78,7 +78,7 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
Mana createdMana = choice.getMana(amount); Mana createdMana = choice.getMana(amount);
if (createdMana != null) { if (createdMana != null) {
checkToFirePossibleEvents(createdMana, game, source); checkToFirePossibleEvents(createdMana, game, source);
controller.getManaPool().addMana(createdMana, game, source); controller.getManaPool().addMana(createdMana, game, source);
} }
return true; return true;
} }
@ -94,5 +94,5 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
public Mana getMana() { public Mana getMana() {
return new Mana(0, 0, 0, 0, 0, 0, amount, 0); return new Mana(0, 0, 0, 0, 0, 0, amount, 0);
} }
} }

View file

@ -114,7 +114,7 @@ public class DetainTargetEffect extends OneShotEffect {
} }
sb.append(" can't attack or block and "); sb.append(" can't attack or block and ");
sb.append(target.getMaxNumberOfTargets() == 1 ? "its" : "their"); sb.append(target.getMaxNumberOfTargets() == 1 ? "its" : "their");
sb.append(" activated abilities can't be activated)</i>"); sb.append(" activated abilities can't be activated.)</i>");
return sb.toString(); return sb.toString();
} }
} }

View file

@ -76,7 +76,7 @@ public class ExertAbility extends SimpleStaticAbility {
ruleText += ". "; ruleText += ". ";
ability.setRuleVisible(false); ability.setRuleVisible(false);
} }
ruleText += "<i>(An exerted creature won't untap during your next untap step)</i>"; ruleText += "<i>(An exerted creature won't untap during your next untap step.)</i>";
if (exertOnlyOncePerTurn) { if (exertOnlyOncePerTurn) {
getWatchers().add(new ExertedThisTurnWatcher()); getWatchers().add(new ExertedThisTurnWatcher());
} }