Implemented Archon of Sun's Grace

This commit is contained in:
Evan Kranzler 2020-01-06 18:51:06 -05:00
parent cab8724a7d
commit aa72251627
3 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class PegasusToken2 extends TokenImpl {
public PegasusToken2() {
super("Pegasus", "2/2 white Pegasus creature token with flying");
this.cardType.add(CardType.CREATURE);
this.color.setWhite(true);
this.subtype.add(SubType.PEGASUS);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
this.addAbility(FlyingAbility.getInstance());
}
private PegasusToken2(final PegasusToken2 token) {
super(token);
}
public PegasusToken2 copy() {
return new PegasusToken2(this);
}
}