This commit is contained in:
Oleg Agafonov 2019-02-01 17:41:57 +04:00
parent 7eba755666
commit 02999d7fce
3 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ public final class EbonPraetor extends CardImpl {
// Sacrifice a creature: Remove a -2/-2 counter from Ebon Praetor. If the sacrificed creature was a Thrull, put a +1/+0 counter on Ebon Praetor. Activate this ability only during your upkeep and only once each turn.
Ability ability = new LimitedTimesPerTurnActivatedAbility(Zone.BATTLEFIELD, new RemoveCounterSourceEffect(CounterType.M2M2.createInstance()),
new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)), 1, new IsStepCondition(PhaseStep.UPKEEP, true));
new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)), 1, new IsStepCondition(PhaseStep.UPKEEP));
ability.addEffect(new EbonPraetorEffect());
this.addAbility(ability);
}

View file

@ -28,7 +28,7 @@ public final class GateToPhyrexia extends CardImpl {
// Sacrifice a creature: Destroy target artifact. Activate this ability only during your upkeep and only once each turn.
Ability ability = new LimitedTimesPerTurnActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(),
new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)),
1, new IsStepCondition(PhaseStep.UPKEEP, true));
1, new IsStepCondition(PhaseStep.UPKEEP));
ability.addTarget(new TargetArtifactPermanent());
this.addAbility(ability);
}

View file

@ -29,7 +29,7 @@ public final class MirrorUniverse extends CardImpl {
Zone.BATTLEFIELD,
new ExchangeLifeTargetEffect(),
new TapSourceCost(),
new IsStepCondition(PhaseStep.UPKEEP, true),
new IsStepCondition(PhaseStep.UPKEEP),
null);
ability.addCost(new SacrificeSourceCost());
ability.addTarget(new TargetOpponent());