forked from External/mage
38 lines
911 B
Java
38 lines
911 B
Java
package mage.cards.g;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class GreenwoodSentinel extends CardImpl {
|
|
|
|
public GreenwoodSentinel(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
|
|
|
this.subtype.add(SubType.ELF);
|
|
this.subtype.add(SubType.SCOUT);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
|
|
// Vigilance
|
|
this.addAbility(VigilanceAbility.getInstance());
|
|
|
|
}
|
|
|
|
private GreenwoodSentinel(final GreenwoodSentinel card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public GreenwoodSentinel copy() {
|
|
return new GreenwoodSentinel(this);
|
|
}
|
|
}
|