forked from External/mage
44 lines
1.2 KiB
Java
44 lines
1.2 KiB
Java
/*
|
|
* 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.effects.common;
|
|
|
|
import mage.MageObject;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public class PhaseOutSourceEffect extends OneShotEffect {
|
|
|
|
public PhaseOutSourceEffect() {
|
|
super(Outcome.Detriment);
|
|
this.staticText = "{this} phases out";
|
|
}
|
|
|
|
public PhaseOutSourceEffect(final PhaseOutSourceEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public PhaseOutSourceEffect copy() {
|
|
return new PhaseOutSourceEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
MageObject sourceObject = source.getSourceObjectIfItStillExists(game);
|
|
if (sourceObject instanceof Permanent) {
|
|
Permanent permanent = (Permanent) sourceObject;
|
|
return permanent.phaseOut(game);
|
|
}
|
|
return false;
|
|
}
|
|
}
|