forked from External/mage
Fix some card text
This commit is contained in:
parent
261cbf4970
commit
36d69a96be
68 changed files with 101 additions and 171 deletions
|
|
@ -26,7 +26,7 @@ public class ChooseBasicLandTypeEffect extends OneShotEffect {
|
|||
|
||||
public ChooseBasicLandTypeEffect(Outcome outcome) {
|
||||
super(outcome);
|
||||
this.staticText = "Choose a basic land type";
|
||||
this.staticText = "choose a basic land type";
|
||||
}
|
||||
|
||||
public ChooseBasicLandTypeEffect(final ChooseBasicLandTypeEffect effect) {
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ public class RevealCardsFromLibraryUntilEffect extends OneShotEffect {
|
|||
if (anyOrder) {
|
||||
sb.append("any");
|
||||
} else {
|
||||
sb.append("random");
|
||||
sb.append("a random");
|
||||
|
||||
}
|
||||
sb.append(" order.");
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ public class SacrificeOpponentsUnlessPayEffect extends OneShotEffect{
|
|||
|
||||
private void setText() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("Each opponent sacrifices ");
|
||||
sb.append("each opponent sacrifices ");
|
||||
|
||||
if (amount.toString().equals("X")) {
|
||||
sb.append(amount.toString());
|
||||
|
|
|
|||
|
|
@ -58,11 +58,11 @@ public class BoostAllEffect extends ContinuousEffectImpl {
|
|||
}
|
||||
|
||||
public BoostAllEffect(DynamicValue power, DynamicValue toughness, Duration duration) {
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("All creatures"), false);
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("all creatures"), false);
|
||||
}
|
||||
|
||||
public BoostAllEffect(int power, int toughness, Duration duration, boolean excludeSource) {
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("All creatures"), excludeSource);
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("all creatures"), excludeSource);
|
||||
}
|
||||
|
||||
public BoostAllEffect(int power, int toughness, Duration duration, FilterCreaturePermanent filter, boolean excludeSource) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue