forked from External/mage
43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.keyword.CyclingAbility;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class AngelOfTheGodPharaoh extends CardImpl {
|
|
|
|
public AngelOfTheGodPharaoh(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}{W}");
|
|
|
|
this.subtype.add(SubType.ANGEL);
|
|
this.power = new MageInt(4);
|
|
this.toughness = new MageInt(4);
|
|
|
|
// Flying
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
|
|
// Cycling {2}
|
|
this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
|
|
|
|
}
|
|
|
|
public AngelOfTheGodPharaoh(final AngelOfTheGodPharaoh card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public AngelOfTheGodPharaoh copy() {
|
|
return new AngelOfTheGodPharaoh(this);
|
|
}
|
|
}
|