forked from External/mage
36 lines
848 B
Java
36 lines
848 B
Java
package mage.cards.m;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.ReachAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class MagnigothSentry extends CardImpl {
|
|
|
|
public MagnigothSentry(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
|
|
|
|
this.subtype.add(SubType.TREEFOLK);
|
|
this.power = new MageInt(4);
|
|
this.toughness = new MageInt(4);
|
|
|
|
// Reach
|
|
this.addAbility(ReachAbility.getInstance());
|
|
}
|
|
|
|
private MagnigothSentry(final MagnigothSentry card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public MagnigothSentry copy() {
|
|
return new MagnigothSentry(this);
|
|
}
|
|
}
|