/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mage.abilities.condition.common; import mage.abilities.Ability; import mage.abilities.condition.Condition; import mage.constants.PhaseStep; import mage.game.Game; /** * * @author LevelX2 */ public class AfterUpkeepStepCondtion implements Condition { private static final AfterUpkeepStepCondtion fInstance = new AfterUpkeepStepCondtion(); public static Condition getInstance() { return fInstance; } @Override public boolean apply(Game game, Ability source) { return !(game.getStep().getType().equals(PhaseStep.UNTAP) || game.getStep().getType().equals(PhaseStep.UPKEEP)); } @Override public String toString() { return "after upkeep step"; } }