Package mage.abilities.effects.common

Source Code of mage.abilities.effects.common.MayTapOrUntapTargetEffect

package mage.abilities.effects.common;

import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;

/**
* @author Loki
*/
public class MayTapOrUntapTargetEffect extends OneShotEffect {
    public MayTapOrUntapTargetEffect() {
        super(Outcome.Benefit);
    }

    public MayTapOrUntapTargetEffect(final MayTapOrUntapTargetEffect effect) {
        super(effect);
    }

    @Override
    public boolean apply(Game game, Ability source) {
        Permanent target = game.getPermanent(targetPointer.getFirst(game, source));
        Player player = game.getPlayer(source.getControllerId());
        if (target != null && player != null) {
            if (target.isTapped()) {
                if (player.chooseUse(Outcome.Untap, "Untap that permanent?", game)) {
                    target.untap(game);
                }
            } else {
                if (player.chooseUse(Outcome.Tap, "Tap that permanent?", game)) {
                    target.tap(game);
                }
            }
            return true;
        }
        return false;
    }

    @Override
    public MayTapOrUntapTargetEffect copy() {
        return new MayTapOrUntapTargetEffect(this);
    }

    @Override
    public String getText(Mode mode) {
        if (mode.getTargets().isEmpty()) {
            return "You may tap or untap it";
        } else {
            return "You may tap or untap target " + mode.getTargets().get(0).getTargetName();
        }
    }
}
TOP

Related Classes of mage.abilities.effects.common.MayTapOrUntapTargetEffect

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.