[STX] more text fixes

This commit is contained in:
Evan Kranzler 2021-04-17 21:56:26 -04:00
parent ef8ee52b94
commit efb2a7f3de
12 changed files with 19 additions and 17 deletions

View file

@ -50,7 +50,7 @@ public final class DraconicIntervention extends CardImpl {
this.getSpellAbility().addWatcher(new DamagedByWatcher(false));
// Exile Draconic Intervention.
this.getSpellAbility().addEffect(new ExileSpellEffect());
this.getSpellAbility().addEffect(new ExileSpellEffect().concatBy("<br>"));
}
private DraconicIntervention(final DraconicIntervention card) {

View file

@ -25,7 +25,7 @@ import mage.target.common.TargetCreaturePermanent;
* @author Loki
*/
public final class DualCasting extends CardImpl {
private static final FilterSpell filter = new FilterSpell("instant or sorcery spell");
private static final FilterSpell filter = new FilterSpell("instant or sorcery spell you control");
static {
filter.add(Predicates.or(

View file

@ -58,7 +58,7 @@ public final class FlamescrollCelebrant extends ModalDoubleFacesCard {
this.getRightHalfCard().getSpellAbility().addEffect(new RevelInSilenceEffect());
// Exile Revel in Silence.
this.getRightHalfCard().getSpellAbility().addEffect(new ExileSpellEffect());
this.getRightHalfCard().getSpellAbility().addEffect(new ExileSpellEffect().concatBy("<br>"));
}
private FlamescrollCelebrant(final FlamescrollCelebrant card) {

View file

@ -55,7 +55,7 @@ public final class ReconstructHistory extends CardImpl {
));
// Exile Reconstruct History.
this.getSpellAbility().addEffect(new ExileSpellEffect());
this.getSpellAbility().addEffect(new ExileSpellEffect().concatBy("<br>"));
}
private ReconstructHistory(final ReconstructHistory card) {

View file

@ -39,7 +39,7 @@ public final class StrixhavenStadium extends CardImpl {
// Whenever a creature you control deals combat damage to an opponent, put a point counter on Strixhaven Stadium. Then if it has ten or more point counters on it, remove them all and that player loses the game.
ability = new DealsDamageToAPlayerAllTriggeredAbility(
Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.POINT.createInstance()),
StaticFilters.FILTER_CONTROLLED_CREATURE, false, SetTargetPointer.PLAYER,
StaticFilters.FILTER_CONTROLLED_A_CREATURE, false, SetTargetPointer.PLAYER,
true, true, TargetController.OPPONENT
);
ability.addEffect(new StrixhavenStadiumEffect());

View file

@ -25,7 +25,7 @@ import java.util.UUID;
public final class TenuredInkcaster extends CardImpl {
private static final FilterCreaturePermanent filter
= new FilterCreaturePermanent("a creature you control with a +1/+1 counter on it");
= new FilterCreaturePermanent("creature you control with a +1/+1 counter on it");
static {
filter.add(TargetController.YOU.getControllerPredicate());