mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[ACR] Implement The Spear of Leonidas
This commit is contained in:
parent
2cef1c83b2
commit
ee479d24c9
3 changed files with 91 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue