mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
[ZNR] a few text fixes
This commit is contained in:
parent
d21684c107
commit
f98069e829
6 changed files with 6 additions and 6 deletions
|
@ -28,7 +28,7 @@ public final class GlacialGrasp extends CardImpl {
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
|
|
||||||
// Draw a card.
|
// Draw a card.
|
||||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy("<br>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private GlacialGrasp(final GlacialGrasp card) {
|
private GlacialGrasp(final GlacialGrasp card) {
|
||||||
|
|
|
@ -23,7 +23,7 @@ public final class PressurePoint extends CardImpl {
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
|
|
||||||
// Draw a card.
|
// Draw a card.
|
||||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy("<br>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private PressurePoint(final PressurePoint card) {
|
private PressurePoint(final PressurePoint card) {
|
||||||
|
|
|
@ -28,7 +28,7 @@ public final class ScaleTheHeights extends CardImpl {
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1));
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1));
|
||||||
|
|
||||||
// Draw a card.
|
// Draw a card.
|
||||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy("<br>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private ScaleTheHeights(final ScaleTheHeights card) {
|
private ScaleTheHeights(final ScaleTheHeights card) {
|
||||||
|
|
|
@ -50,7 +50,7 @@ public final class SoaringThoughtThief extends CardImpl {
|
||||||
// Whenever one or more Rogues you control attack, each opponent mills two cards.
|
// Whenever one or more Rogues you control attack, each opponent mills two cards.
|
||||||
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
||||||
new MillCardsEachPlayerEffect(2, TargetController.OPPONENT), 1, filter
|
new MillCardsEachPlayerEffect(2, TargetController.OPPONENT), 1, filter
|
||||||
));
|
).setTriggerPhrase("Whenever one or more Rogues you control attack, "));
|
||||||
}
|
}
|
||||||
|
|
||||||
private SoaringThoughtThief(final SoaringThoughtThief card) {
|
private SoaringThoughtThief(final SoaringThoughtThief card) {
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class VerifyCardDataTest {
|
||||||
|
|
||||||
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
|
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
|
||||||
|
|
||||||
private static final String FULL_ABILITIES_CHECK_SET_CODE = "MID"; // check all abilities and output cards with wrong abilities texts;
|
private static final String FULL_ABILITIES_CHECK_SET_CODE = "ZNR"; // check all abilities and output cards with wrong abilities texts;
|
||||||
private static final boolean AUTO_FIX_SAMPLE_DECKS = false; // debug only: auto-fix sample decks by test_checkSampleDecks test run
|
private static final boolean AUTO_FIX_SAMPLE_DECKS = false; // debug only: auto-fix sample decks by test_checkSampleDecks test run
|
||||||
private static final boolean ONLY_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages
|
private static final boolean ONLY_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages
|
||||||
|
|
||||||
|
|
|
@ -186,7 +186,7 @@ public class DiscardCardYouChooseTargetEffect extends OneShotEffect {
|
||||||
sb.append(CardUtil.addArticle(filter.getMessage()));
|
sb.append(CardUtil.addArticle(filter.getMessage()));
|
||||||
}
|
}
|
||||||
if (revealAllCards) {
|
if (revealAllCards) {
|
||||||
sb.append(" from it.");
|
sb.append(filter.getMessage().contains("from it") ? "." : " from it.");
|
||||||
} else {
|
} else {
|
||||||
sb.append(" of them.");
|
sb.append(" of them.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue