mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[ANA] - implemented Zephyr Gull
This commit is contained in:
parent
cf82c15aad
commit
925fb1c533
1 changed files with 36 additions and 0 deletions
36
Mage.Sets/src/mage/cards/z/ZephyrGull.java
Normal file
36
Mage.Sets/src/mage/cards/z/ZephyrGull.java
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue