[CLB] various text fixes

This commit is contained in:
Evan Kranzler 2022-06-07 08:39:27 -04:00
parent e418ab04be
commit 81c8d4e28f
7 changed files with 9 additions and 8 deletions

View file

@ -61,7 +61,7 @@ public final class Balor extends CardImpl {
Ability ability = new OrTriggeredAbility(
Zone.BATTLEFIELD,
new DrawDiscardTargetEffect(
1, 1, true
3, 3, true
), false, "Whenever {this} attacks or dies, ",
new AttacksTriggeredAbility(null, false),
new DiesSourceTriggeredAbility(null, false)
@ -73,12 +73,13 @@ public final class Balor extends CardImpl {
// Target opponent sacrifices a nontoken artifact.
ability.addMode(new Mode(new SacrificeEffect(
filter4, 1, null
filter4, 1, "target opponent"
)).addTarget(new TargetPlayer(filter2).setTargetTag(2).withChooseHint("to sacrifice an artifact")));
// Balor deals damage to target opponent equal to the number of cards in their hand.
ability.addMode(new Mode(new BalorEffect()).addTarget(new TargetPlayer(filter3)
.setTargetTag(3).withChooseHint("to deal damage")));
this.addAbility(ability);
}
private Balor(final Balor card) {

View file

@ -26,7 +26,7 @@ import java.util.UUID;
public final class BasiliskGate extends CardImpl {
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(
new FilterControlledPermanent(SubType.GATE, "Gates you control")
new FilterControlledPermanent(SubType.GATE, "Gates you control"), null
);
private static final Hint hint = new ValueHint("Gates you control", xValue);

View file

@ -93,6 +93,6 @@ class FeywildVisitorAbility extends TriggeredAbilityImpl {
@Override
public String getTriggerPhrase() {
return "Whenever one or more nontoken creatures you control deal combat damage to a player, you";
return "Whenever one or more nontoken creatures you control deal combat damage to a player, you ";
}
}

View file

@ -22,7 +22,7 @@ import java.util.UUID;
*/
public final class GondGate extends CardImpl {
private static final FilterPermanent filter = new FilterControlledPermanent(SubType.GATE);
private static final FilterPermanent filter = new FilterControlledPermanent(SubType.GATE, "Gate");
public GondGate(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");

View file

@ -95,6 +95,6 @@ enum LozhanDragonsLegacyValue implements DynamicValue {
@Override
public String toString() {
return "1";
return "";
}
}

View file

@ -21,6 +21,6 @@ public enum RevoltCondition implements Condition {
@Override
public String toString() {
return "a permanent you control left the battlefield this turn";
return "a permanent you controlled left the battlefield this turn";
}
}

View file

@ -33,7 +33,7 @@ public class DrawDiscardTargetEffect extends OneShotEffect {
.append(CardUtil.numberToText(cardsToDiscard, "a"))
.append(" card")
.append(cardsToDiscard > 1 ? "s" : "")
.append(random ? "at random" : "")
.append(random ? " at random" : "")
.toString();
}