mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
[CLB] various text fixes
This commit is contained in:
parent
e418ab04be
commit
81c8d4e28f
7 changed files with 9 additions and 8 deletions
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 ";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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}, "");
|
||||
|
|
|
@ -95,6 +95,6 @@ enum LozhanDragonsLegacyValue implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "1";
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue