[IKO] various text fixes

This commit is contained in:
Evan Kranzler 2020-10-06 21:01:17 -04:00
parent 9ab01e5512
commit 44b44f4103
5 changed files with 5 additions and 5 deletions

View file

@ -69,7 +69,7 @@ class CrystallineGiantEffect extends OneShotEffect {
CrystallineGiantEffect() {
super(Outcome.Benefit);
staticText = "choose a kind of counter at random that {this} doesn't have on it from among " +
"flying, first strike, deathtouch, hexproof, lifelink, menace, reach, trample, vigilance or +1/+1. " +
"flying, first strike, deathtouch, hexproof, lifelink, menace, reach, trample, vigilance, and +1/+1. " +
"Put a counter of that kind on {this}";
}

View file

@ -58,7 +58,7 @@ public final class KaheeraTheOrphanguard extends CardImpl {
// Each other creature you control that's a Cat, Elemental, Nightmare, Dinosaur, or Beast gets +1/+1 and has vigilance.
Ability ability = new SimpleStaticAbility(new BoostAllEffect(
1, 1, Duration.WhileOnBattlefield, filter, true
).setText("Each other creature you control that's a Cat, Elemental, Nightmare, Dinosaur or Beast gets +1/+1"));
).setText("Each other creature you control that's a Cat, Elemental, Nightmare, Dinosaur, or Beast gets +1/+1"));
ability.addEffect(new GainAbilityAllEffect(
VigilanceAbility.getInstance(), Duration.WhileOnBattlefield, filter, "and has vigilance"
));

View file

@ -25,7 +25,7 @@ public final class UnlikelyAid extends CardImpl {
).setText("Target creature gets +2/+0"));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
IndestructibleAbility.getInstance(), Duration.EndOfTurn
).setText("and gains indestructable until end of turn"));
).setText("and gains indestructible until end of turn"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}

View file

@ -26,7 +26,7 @@ import java.util.UUID;
public final class WinotaJoinerOfForces extends CardImpl {
private static final FilterControlledCreaturePermanent filter
= new FilterControlledCreaturePermanent(" non-Human creature you control");
= new FilterControlledCreaturePermanent("non-Human creature you control");
static {
filter.add(Predicates.not(SubType.HUMAN.getPredicate()));

View file

@ -52,7 +52,7 @@ public class VerifyCardDataTest {
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
private static final String FULL_ABILITIES_CHECK_SET_CODE = "THB"; // check all abilities and output cards with wrong abilities texts;
private static final String FULL_ABILITIES_CHECK_SET_CODE = "IKO"; // check all abilities and output cards with wrong abilities texts;
private static final boolean AUTO_FIX_SAMPLE_DECKS = false; // debug only: fix sample decks if it contains errors like wrong card numbers
private static final HashMap<String, Set<String>> skipCheckLists = new HashMap<>();