mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
minor text fixes
This commit is contained in:
parent
c0041245d5
commit
9ac70b868d
6 changed files with 8 additions and 8 deletions
|
@ -72,7 +72,7 @@ public class GiftOfParadise extends CardImpl {
|
|||
// 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());
|
||||
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));
|
||||
}
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ public class TrialOfAmbition extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{B}");
|
||||
|
||||
// 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());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ public class PayMoreToCastAsThoughtItHadFlashAbility extends SpellAbility {
|
|||
|
||||
@Override
|
||||
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>";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
|
|||
this.staticText = new StringBuilder("add ")
|
||||
.append(CardUtil.numberToText(amount))
|
||||
.append(" mana of any ")
|
||||
.append(amount > 1 ?"one ":"")
|
||||
.append(amount > 1 ? "one " : "")
|
||||
.append("color to your mana pool").toString();
|
||||
}
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ public class DetainTargetEffect extends OneShotEffect {
|
|||
}
|
||||
sb.append(" can't attack or block and ");
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ public class ExertAbility extends SimpleStaticAbility {
|
|||
ruleText += ". ";
|
||||
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) {
|
||||
getWatchers().add(new ExertedThisTurnWatcher());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue