forked from External/mage
40 lines
1,020 B
Java
40 lines
1,020 B
Java
|
|
package mage.cards.p;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FabricateAbility;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author emerald000
|
|
*/
|
|
public final class PropellerPioneer extends CardImpl {
|
|
|
|
public PropellerPioneer(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{W}");
|
|
this.subtype.add(SubType.HUMAN);
|
|
this.subtype.add(SubType.ARTIFICER);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
// Fabricate 1
|
|
this.addAbility(new FabricateAbility(1));
|
|
}
|
|
|
|
private PropellerPioneer(final PropellerPioneer card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public PropellerPioneer copy() {
|
|
return new PropellerPioneer(this);
|
|
}
|
|
}
|