mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
[STX] more text fixes
This commit is contained in:
parent
ef8ee52b94
commit
efb2a7f3de
12 changed files with 19 additions and 17 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue