mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
40 lines
940 B
Java
40 lines
940 B
Java
|
|
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public final class AbbeyGriffin extends CardImpl {
|
|
|
|
public AbbeyGriffin(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{W}");
|
|
this.subtype.add(SubType.GRIFFIN);
|
|
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(2);
|
|
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
this.addAbility(VigilanceAbility.getInstance());
|
|
}
|
|
|
|
public AbbeyGriffin(final AbbeyGriffin card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public AbbeyGriffin copy() {
|
|
return new AbbeyGriffin(this);
|
|
}
|
|
|
|
}
|