forked from External/mage
45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
|
|
package mage.cards.v;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.effects.common.UntapTargetEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
import mage.target.common.TargetLandPermanent;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class VoyagingSatyr extends CardImpl {
|
|
|
|
public VoyagingSatyr(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
|
this.subtype.add(SubType.SATYR);
|
|
this.subtype.add(SubType.DRUID);
|
|
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(2);
|
|
|
|
// {T}: Untap target land.
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapSourceCost());
|
|
ability.addTarget(new TargetLandPermanent());
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
public VoyagingSatyr(final VoyagingSatyr card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public VoyagingSatyr copy() {
|
|
return new VoyagingSatyr(this);
|
|
}
|
|
}
|