[ANA] - implemented Zephyr Gull

This commit is contained in:
Oleg Agafonov 2018-10-09 19:03:29 +04:00
parent cf82c15aad
commit 925fb1c533

View file

@ -0,0 +1,36 @@
package mage.cards.z;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author JayDi85
*/
public final class ZephyrGull extends CardImpl {
public ZephyrGull(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}");
this.subtype.add(SubType.BIRD);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Flying
this.addAbility(FlyingAbility.getInstance());
}
public ZephyrGull(final ZephyrGull card) {
super(card);
}
@Override
public ZephyrGull copy() {
return new ZephyrGull(this);
}
}