a few more text fixes

This commit is contained in:
Evan Kranzler 2019-07-22 20:22:17 -04:00
parent aa2c712272
commit 5caf8f79d5
6 changed files with 6 additions and 6 deletions

View file

@ -27,7 +27,7 @@ public final class AudaciousThief extends CardImpl {
// Whenever Audacious Thief attacks, you draw a card and you lose 1 life.
Ability ability = new AttacksTriggeredAbility(
new DrawCardSourceControllerEffect(1).concatBy("you"), false
new DrawCardSourceControllerEffect(1).setText("you draw a card"), false
);
ability.addEffect(new LoseLifeSourceControllerEffect(1).concatBy("and"));
this.addAbility(ability);

View file

@ -100,7 +100,7 @@ class BagOfHoldingEffect extends OneShotEffect {
BagOfHoldingEffect() {
super(Outcome.DrawCard);
this.staticText = "return all cards exiled with {this} into their owner's hand";
this.staticText = "return all cards exiled with {this} to their owner's hand";
}
private BagOfHoldingEffect(final BagOfHoldingEffect effect) {

View file

@ -35,7 +35,7 @@ public final class BrinebornCutthroat extends CardImpl {
new SpellCastControllerTriggeredAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance()), false
), NotMyTurnCondition.instance, "Whenever you cast a spell during an opponent's turn, " +
"put a +1/+1 counter on {this}"
"put a +1/+1 counter on {this}."
));
}

View file

@ -32,7 +32,7 @@ public final class GruesomeScourger extends CardImpl {
this.toughness = new MageInt(3);
// When Gruesome Scourger enters the battlefield, it deals damage to target opponent or planeswalker equal to the number of creatures you control.
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(xValue, "it"));
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(xValue).setText("it deals damage to target opponent or planeswalker equal to the number of creatures you control"));
ability.addTarget(new TargetOpponentOrPlaneswalker());
this.addAbility(ability);
}

View file

@ -35,7 +35,7 @@ public final class LavakinBrawler extends CardImpl {
// Whenever Lavakin Brawler attacks, it gets +1/+0 until end of turn for each Elemental you control.
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(
xValue, StaticValue.getZeroValue(), Duration.EndOfTurn, true
), false));
).setText("it gets +1/+0 until end of turn for each Elemental you control"), false));
}
private LavakinBrawler(final LavakinBrawler card) {

View file

@ -135,7 +135,7 @@ public class CreateTokenEffect extends OneShotEffect {
}
if (attacking) {
if (amount.toString().equals("1")) {
sb.append("that's");
sb.append(" that's");
} else {
sb.append(" that are");
}