foul-magics/Mage.Sets/src/mage/cards/p/PressForAnswers.java
2023-04-30 11:28:06 -04:00

39 lines
1.2 KiB
Java

package mage.cards.p;
import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect;
import mage.abilities.effects.common.TapTargetEffect;
import mage.abilities.effects.keyword.InvestigateEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
/**
* @author LevelX2
*/
public final class PressForAnswers extends CardImpl {
public PressForAnswers(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{U}");
// Tap target creature. It doesn't untap during its controller's next untap step.
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new TapTargetEffect());
this.getSpellAbility().addEffect(new DontUntapInControllersNextUntapStepTargetEffect("It"));
// Investigate.
this.getSpellAbility().addEffect(new InvestigateEffect().concatBy("<br>"));
}
private PressForAnswers(final PressForAnswers card) {
super(card);
}
@Override
public PressForAnswers copy() {
return new PressForAnswers(this);
}
}