mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Archon of Sun's Grace
This commit is contained in:
parent
cab8724a7d
commit
aa72251627
3 changed files with 92 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue