forked from External/mage
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
|
|
package mage.cards.c;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
import mage.filter.StaticFilters;
|
|
|
|
/**
|
|
*
|
|
* @author cbt33
|
|
*/
|
|
public final class CephalidScout extends CardImpl {
|
|
|
|
public CephalidScout(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
|
|
this.subtype.add(SubType.OCTOPUS);
|
|
this.subtype.add(SubType.WIZARD);
|
|
this.subtype.add(SubType.SCOUT);
|
|
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
// {2}{U}, Sacrifice a land: Draw a card.
|
|
Ability ability = new SimpleActivatedAbility(new DrawCardSourceControllerEffect(1), new ManaCostsImpl<>("{2}{U}"));
|
|
ability.addCost(new SacrificeTargetCost(StaticFilters.FILTER_LAND));
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
private CephalidScout(final CephalidScout card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public CephalidScout copy() {
|
|
return new CephalidScout(this);
|
|
}
|
|
}
|