minor typo

This commit is contained in:
igoudt 2017-05-28 12:23:49 +02:00
parent 9c773ba3cb
commit 2fc742d77d
2 changed files with 5 additions and 5 deletions

View file

@ -34,7 +34,7 @@ public class SuqAtaFirewalker extends CardImpl {
color.setBlue(true);
// Suq'Ata Firewalker can't be the target of black spells or abilities from black sources.
// Suq'Ata Firewalker can't be the target of red spells or abilities from red sources.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeTargetedSourceEffect(filterRed, Duration.WhileOnBattlefield)));
//{T}: Suq'Ata Firewalker deals 1 damage to target creature or player.

View file

@ -69,14 +69,14 @@ public class ExertAbility extends SimpleStaticAbility {
: "You may exert {this}") + " as it attacks. ";
if (ability != null) {
this.addSubAbility(ability);
ruleText += ("When you do,");
ability.getEffects().stream().forEach((effect) -> {
ruleText += "When you do,";
ability.getEffects().forEach(effect -> {
ruleText += " " + effect.getText(ability.getModes().getMode());
});
ruleText += ". ";
ability.setRuleVisible(false);
}
ruleText += "<i>(An exterted creature can't untap during your next untap step)</i>";
ruleText += "<i>(An exerted creature can't untap during your next untap step)</i>";
if (exertOnlyOncePerTurn) {
getWatchers().add(new ExertedThisTurnWatcher());
}
@ -142,7 +142,7 @@ class ExertReplacementEffect extends ReplacementEffectImpl {
}
}
if (controller.chooseUse(outcome, "Exert " + creature.getLogName() + '?',
"An exterted creature can't untap during your next untap step.", "Yes", "No", source, game)) {
"An exerted creature can't untap during your next untap step.", "Yes", "No", source, game)) {
if (!game.isSimulation()) {
game.informPlayers(controller.getLogName() + " exerted " + creature.getName());
}