forked from External/mage
48 lines
1.5 KiB
Java
48 lines
1.5 KiB
Java
|
|
package mage.cards.g;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.DiscardCardCost;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Duration;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author LoneFox
|
|
*/
|
|
public final class GhostTactician extends CardImpl {
|
|
|
|
public GhostTactician(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{W}");
|
|
this.subtype.add(SubType.SPIRIT);
|
|
this.subtype.add(SubType.SPELLSHAPER);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(5);
|
|
|
|
// {W}, {T}, Discard a card: Creatures you control get +1/+0 until end of turn.
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
|
new BoostControlledEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl<>("{W}"));
|
|
ability.addCost(new TapSourceCost());
|
|
ability.addCost(new DiscardCardCost());
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
private GhostTactician(final GhostTactician card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public GhostTactician copy() {
|
|
return new GhostTactician(this);
|
|
}
|
|
}
|