mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
minor typo
This commit is contained in:
parent
9c773ba3cb
commit
2fc742d77d
2 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue