forked from External/mage
38 lines
969 B
Java
38 lines
969 B
Java
|
|
|
|
package mage.cards.h;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.common.LandfallAbility;
|
|
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Duration;
|
|
|
|
/**
|
|
*
|
|
* @author Loki
|
|
*/
|
|
public final class HedronRover extends CardImpl {
|
|
|
|
public HedronRover (UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
|
this.subtype.add(SubType.CONSTRUCT);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
this.addAbility(new LandfallAbility(new BoostSourceEffect(2, 2, Duration.EndOfTurn), false));
|
|
}
|
|
|
|
private HedronRover(final HedronRover card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public HedronRover copy() {
|
|
return new HedronRover(this);
|
|
}
|
|
|
|
}
|