mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
revert erroneous rework from bbbc2e5b
This commit is contained in:
parent
4ce2e561fb
commit
95c326b200
1 changed files with 5 additions and 5 deletions
|
|
@ -2,16 +2,14 @@ package mage.cards.t;
|
|||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.condition.common.IsStepCondition;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.InspiredAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.constants.*;
|
||||
import mage.game.Game;
|
||||
import mage.game.turn.TurnMod;
|
||||
import mage.game.turn.UpkeepStep;
|
||||
|
|
@ -23,6 +21,8 @@ import java.util.UUID;
|
|||
*/
|
||||
public final class TheNinthDoctor extends CardImpl {
|
||||
|
||||
private static final Condition condition = new IsStepCondition(PhaseStep.UNTAP);
|
||||
|
||||
public TheNinthDoctor(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}{R}");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
|
|
@ -35,7 +35,7 @@ public final class TheNinthDoctor extends CardImpl {
|
|||
|
||||
// Into the TARDIS — Whenever The Ninth Doctor becomes untapped during your untap step, you get an additional upkeep step after this step.
|
||||
this.addAbility(new InspiredAbility(new TheNinthDoctorEffect(), false, false)
|
||||
.withTriggerCondition(IsStepCondition.getMyUpkeep())
|
||||
.withTriggerCondition(condition)
|
||||
.withFlavorWord("Into the TARDIS"));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue