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

View file

@ -26,7 +26,7 @@ import java.util.UUID;
public final class BasiliskGate extends CardImpl { public final class BasiliskGate extends CardImpl {
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount( 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); private static final Hint hint = new ValueHint("Gates you control", xValue);

View file

@ -22,7 +22,7 @@ import java.util.UUID;
*/ */
public final class GondGate extends CardImpl { 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) { public GondGate(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, ""); super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");

View file

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

View file

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