mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[KHM] a few more text fixes
This commit is contained in:
parent
4aeb94b41c
commit
599309c980
6 changed files with 7 additions and 6 deletions
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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<>();
|
||||
|
|
Loading…
Reference in a new issue