text fixes

This commit is contained in:
xenohedron 2024-02-02 23:13:52 -05:00
parent bfba6aefbc
commit b8c78cceec
3 changed files with 10 additions and 5 deletions

View file

@ -37,7 +37,12 @@ import mage.watchers.common.PlayerGainedLifeWatcher;
*/
public final class CaseOfTheUneatenFeast extends CardImpl {
private static final Condition condition = new YouGainedLifeCondition(ComparisonType.MORE_THAN, 4);
private static final Condition condition = new YouGainedLifeCondition(ComparisonType.MORE_THAN, 4){
@Override
public String toString() {
return "you've gained 5 or more life this turn";
}
};
public CaseOfTheUneatenFeast(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{W}");

View file

@ -43,7 +43,7 @@ public final class FlotsamJetsam extends SplitCard {
// Jetsam
// Each opponent mills three cards, then you may cast a spell from each opponent's graveyard without paying its mana cost. If a spell cast this way would be put into a graveyard, exile it instead.
getRightHalfCard().getSpellAbility().addEffect(new MillCardsEachPlayerEffect(3, TargetController.OPPONENT));
getRightHalfCard().getSpellAbility().addEffect(new JetsamEffect().concatBy(", then "));
getRightHalfCard().getSpellAbility().addEffect(new JetsamEffect().concatBy(", then"));
}

View file

@ -31,9 +31,9 @@ public class CantAttackYouAllEffect extends RestrictionEffect {
super(duration, Outcome.Benefit);
this.filterAttacker = filter;
this.alsoPlaneswalker = alsoPlaneswalker;
staticText = filterAttacker.getMessage() + " can't attack you"
+ (alsoPlaneswalker ? " or planeswalkers you control" : "")
+ (duration == Duration.UntilYourNextTurn || duration == Duration.UntilEndOfYourNextTurn ? " " + duration.toString() : "");
staticText = (duration == Duration.UntilYourNextTurn ? duration.toString() + ", " : "")
+ filterAttacker.getMessage() + " can't attack you"
+ (alsoPlaneswalker ? " or planeswalkers you control" : "");
}
protected CantAttackYouAllEffect(final CantAttackYouAllEffect effect) {