forked from External/mage
46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
|
|
|
|
package mage.cards.a;
|
|
|
|
|
|
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 Backfir3
|
|
*/
|
|
public final class ArgothianElder extends CardImpl {
|
|
|
|
public ArgothianElder(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}");
|
|
this.subtype.add(SubType.ELF);
|
|
this.subtype.add(SubType.DRUID);
|
|
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapSourceCost());
|
|
ability.addTarget(new TargetLandPermanent(2));
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
public ArgothianElder(final ArgothianElder card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public ArgothianElder copy() {
|
|
return new ArgothianElder(this);
|
|
}
|
|
|
|
}
|