forked from External/mage
40 lines
949 B
Java
40 lines
949 B
Java
package mage.cards.m;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.abilities.keyword.ProwessAbility;
|
|
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 MistralSinger extends CardImpl {
|
|
|
|
public MistralSinger(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}");
|
|
|
|
this.subtype.add(SubType.SIREN);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
|
|
// Prowess
|
|
this.addAbility(new ProwessAbility());
|
|
}
|
|
|
|
private MistralSinger(final MistralSinger card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public MistralSinger copy() {
|
|
return new MistralSinger(this);
|
|
}
|
|
}
|