[ACR] Implement The Spear of Leonidas

This commit is contained in:
theelk801 2024-06-09 11:47:49 -04:00
parent 2cef1c83b2
commit ee479d24c9
3 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author TheElk801
*/
public final class PhobosToken extends TokenImpl {
public PhobosToken() {
super("Phobos", "Phobos, a legendary 3/2 red Horse creature token");
this.supertype.add(SuperType.LEGENDARY);
this.cardType.add(CardType.CREATURE);
this.subtype.add(SubType.HORSE);
this.color.setRed(true);
this.power = new MageInt(3);
this.toughness = new MageInt(2);
}
private PhobosToken(final PhobosToken token) {
super(token);
}
@Override
public PhobosToken copy() {
return new PhobosToken(this);
}
}