forked from External/mage
37 lines
726 B
Java
37 lines
726 B
Java
|
|
|
|
package mage.abilities.effects.common;
|
|
|
|
import mage.constants.Outcome;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.game.Game;
|
|
import mage.players.Player;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class PassEffect extends OneShotEffect {
|
|
|
|
public PassEffect() {
|
|
super(Outcome.Neutral);
|
|
}
|
|
|
|
public PassEffect(final PassEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Player player = game.getPlayer(source.getControllerId());
|
|
player.pass(game);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public PassEffect copy() {
|
|
return new PassEffect(this);
|
|
}
|
|
|
|
}
|