mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
[IKO] various text fixes
This commit is contained in:
parent
9ab01e5512
commit
44b44f4103
5 changed files with 5 additions and 5 deletions
|
|
@ -69,7 +69,7 @@ class CrystallineGiantEffect extends OneShotEffect {
|
||||||
CrystallineGiantEffect() {
|
CrystallineGiantEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "choose a kind of counter at random that {this} doesn't have on it from among " +
|
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}";
|
"Put a counter of that kind on {this}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
// 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(
|
Ability ability = new SimpleStaticAbility(new BoostAllEffect(
|
||||||
1, 1, Duration.WhileOnBattlefield, filter, true
|
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(
|
ability.addEffect(new GainAbilityAllEffect(
|
||||||
VigilanceAbility.getInstance(), Duration.WhileOnBattlefield, filter, "and has vigilance"
|
VigilanceAbility.getInstance(), Duration.WhileOnBattlefield, filter, "and has vigilance"
|
||||||
));
|
));
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ public final class UnlikelyAid extends CardImpl {
|
||||||
).setText("Target creature gets +2/+0"));
|
).setText("Target creature gets +2/+0"));
|
||||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
|
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
|
||||||
IndestructibleAbility.getInstance(), Duration.EndOfTurn
|
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());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ import java.util.UUID;
|
||||||
public final class WinotaJoinerOfForces extends CardImpl {
|
public final class WinotaJoinerOfForces extends CardImpl {
|
||||||
|
|
||||||
private static final FilterControlledCreaturePermanent filter
|
private static final FilterControlledCreaturePermanent filter
|
||||||
= new FilterControlledCreaturePermanent(" non-Human creature you control");
|
= new FilterControlledCreaturePermanent("non-Human creature you control");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.not(SubType.HUMAN.getPredicate()));
|
filter.add(Predicates.not(SubType.HUMAN.getPredicate()));
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,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 = "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 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<>();
|
private static final HashMap<String, Set<String>> skipCheckLists = new HashMap<>();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue