forked from External/mage
93 lines
2.8 KiB
Java
93 lines
2.8 KiB
Java
|
|
package mage.abilities.common;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.SpecialAction;
|
|
import mage.abilities.costs.Cost;
|
|
import mage.abilities.costs.Costs;
|
|
import mage.abilities.costs.mana.ManaCost;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.cards.Card;
|
|
import mage.constants.AbilityType;
|
|
import mage.constants.Outcome;
|
|
import mage.constants.Zone;
|
|
import mage.counters.CounterType;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.players.Player;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public class TurnFaceUpAbility extends SpecialAction {
|
|
|
|
public TurnFaceUpAbility(Costs<Cost> costs) {
|
|
this(costs, false);
|
|
}
|
|
|
|
public TurnFaceUpAbility(Costs<Cost> costs, boolean megamorph) {
|
|
super(Zone.BATTLEFIELD);
|
|
this.addEffect(new TurnFaceUpEffect(megamorph));
|
|
for (Cost cost : costs) {
|
|
if (cost instanceof ManaCost) {
|
|
this.addManaCost((ManaCost) cost);
|
|
} else {
|
|
this.addCost(cost);
|
|
}
|
|
}
|
|
|
|
this.usesStack = false;
|
|
this.abilityType = AbilityType.SPECIAL_ACTION;
|
|
this.setRuleVisible(false); // will be made visible only to controller in CardView
|
|
}
|
|
|
|
public TurnFaceUpAbility(final TurnFaceUpAbility ability) {
|
|
super(ability);
|
|
}
|
|
|
|
@Override
|
|
public TurnFaceUpAbility copy() {
|
|
return new TurnFaceUpAbility(this);
|
|
}
|
|
}
|
|
|
|
class TurnFaceUpEffect extends OneShotEffect {
|
|
|
|
private final boolean megamorph;
|
|
|
|
public TurnFaceUpEffect(boolean megamorph) {
|
|
super(Outcome.Benefit);
|
|
this.staticText = "Turn this face-down permanent face up" + (megamorph ? " and put a +1/+1 counter on it" : "");
|
|
this.megamorph = megamorph;
|
|
}
|
|
|
|
public TurnFaceUpEffect(final TurnFaceUpEffect effect) {
|
|
super(effect);
|
|
this.megamorph = effect.megamorph;
|
|
}
|
|
|
|
@Override
|
|
public TurnFaceUpEffect copy() {
|
|
return new TurnFaceUpEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Player controller = game.getPlayer(source.getControllerId());
|
|
Card card = game.getCard(source.getSourceId());
|
|
if (controller != null && card != null) {
|
|
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
|
|
if (sourcePermanent != null) {
|
|
if (sourcePermanent.turnFaceUp(game, source.getControllerId())) {
|
|
if (megamorph) {
|
|
sourcePermanent.addCounters(CounterType.P1P1.createInstance(), source, game);
|
|
}
|
|
game.getState().setValue(source.getSourceId().toString() + "TurnFaceUpX", source.getManaCostsToPay().getX());
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|