[KHM] a few more text fixes

This commit is contained in:
Evan Kranzler 2021-02-01 22:28:17 -05:00
parent 4aeb94b41c
commit 599309c980
6 changed files with 7 additions and 6 deletions

View file

@ -89,7 +89,7 @@ class AlrundGodOfTheCosmosEffect extends OneShotEffect {
public AlrundGodOfTheCosmosEffect() {
super(Outcome.Neutral);
staticText = ", then reveal the top two cards of your library. Put all cards of the chosen type revealed this way into your hand and the rest on the bottom of your library in any order";
staticText = ", then reveal the top two cards of your library. Put all cards revealed this way of the chosen type into your hand and the rest on the bottom of your library in any order";
}
public AlrundGodOfTheCosmosEffect(final AlrundGodOfTheCosmosEffect effect) {

View file

@ -97,7 +97,8 @@ class ElvishWarmasterTriggeredAbility extends EntersBattlefieldControlledTrigger
@Override
public String getRule() {
return super.getRule() + " This ability triggers only once each turn.";
return "Whenever one or more other Elves enter the battlefield under your control, " +
"create a 1/1 green Elf Warrior creature token. This ability triggers only once each turn.";
}
@Override

View file

@ -40,7 +40,7 @@ class GravenLoreEffect extends OneShotEffect {
GravenLoreEffect() {
super(Outcome.Benefit);
staticText = "scry X, where is the amount of {S} spent to cast this spell, then draw three cards";
staticText = "scry X, where X is the amount of {S} spent to cast this spell, then draw three cards";
}
private GravenLoreEffect(final GravenLoreEffect effect) {

View file

@ -33,7 +33,7 @@ public final class RavenWings extends CardImpl {
).setText(", has flying"));
ability.addEffect(new AddCardSubtypeAttachedEffect(
SubType.BIRD, Duration.WhileOnBattlefield, AttachmentType.AURA
).setText("and is a Bird in addition to its other types"));
).setText(", and is a Bird in addition to its other types"));
this.addAbility(ability);
// Equip {2}

View file

@ -47,7 +47,7 @@ class RecklessCrewEffect extends OneShotEffect {
RecklessCrewEffect() {
super(Outcome.Benefit);
staticText = "create X 2/1 red Dwarf creature tokens, " +
staticText = "create X 2/1 red Dwarf Berserker creature tokens, " +
"where X is the number of Vehicles you control plus the number of Equipment you control. " +
"For each of those tokens, you may attach an Equipment you control to it";
}

View file

@ -53,7 +53,7 @@ public class VerifyCardDataTest {
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
private static final String FULL_ABILITIES_CHECK_SET_CODE = "KHC"; // check all abilities and output cards with wrong abilities texts;
private static final String FULL_ABILITIES_CHECK_SET_CODE = "KHM"; // 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 HashMap<String, Set<String>> skipCheckLists = new HashMap<>();