mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
some additional text fixes
This commit is contained in:
parent
313a19865a
commit
474c9655a4
14 changed files with 44 additions and 35 deletions
|
|
@ -79,7 +79,7 @@ public class ConditionalInterveningIfTriggeredAbility extends TriggeredAbilityIm
|
|||
return ability.getRule();
|
||||
}
|
||||
return (abilityWord != null ? abilityWord.formatWord() : "") + abilityText +
|
||||
(abilityText.endsWith(".") || abilityText.endsWith("\"") ? "" : ".");
|
||||
(abilityText.endsWith(".") || abilityText.endsWith("\"") || abilityText.endsWith(">") ? "" : ".");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -77,9 +77,11 @@ public class ConjureCardEffect extends OneShotEffect {
|
|||
StringBuilder sb = new StringBuilder("conjure ");
|
||||
sb.append(CardUtil.numberToText(amount, "a"));
|
||||
sb.append(' ');
|
||||
sb.append(cardName);
|
||||
sb.append("card");
|
||||
sb.append(amount > 1 ? "s " : " ");
|
||||
sb.append("named ");
|
||||
sb.append(cardName);
|
||||
sb.append(' ');
|
||||
switch (zone) {
|
||||
case HAND:
|
||||
case GRAVEYARD:
|
||||
|
|
@ -88,7 +90,8 @@ public class ConjureCardEffect extends OneShotEffect {
|
|||
case BATTLEFIELD:
|
||||
sb.append("onto the");
|
||||
}
|
||||
sb.append(zone);
|
||||
sb.append(' ');
|
||||
sb.append(zone.toString().toLowerCase());
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue