mirror of
https://github.com/magefree/mage.git
synced 2026-01-19 01:39:58 -08:00
41 lines
1,016 B
Java
41 lines
1,016 B
Java
package mage.cards.f;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.ConvokeAbility;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class FlightOfEquenauts extends CardImpl {
|
|
|
|
public FlightOfEquenauts(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{7}{W}");
|
|
|
|
this.subtype.add(SubType.HUMAN);
|
|
this.subtype.add(SubType.KNIGHT);
|
|
this.power = new MageInt(4);
|
|
this.toughness = new MageInt(5);
|
|
|
|
// Convoke
|
|
this.addAbility(new ConvokeAbility());
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
public FlightOfEquenauts(final FlightOfEquenauts card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public FlightOfEquenauts copy() {
|
|
return new FlightOfEquenauts(this);
|
|
}
|
|
}
|