[40K] Implemented Magnus the Red

This commit is contained in:
Evan Kranzler 2022-10-05 20:03:05 -04:00
parent c4a58aa650
commit 50acdbb823
4 changed files with 136 additions and 0 deletions

View file

@ -295,6 +295,7 @@ public enum SubType {
PIRATE("Pirate", SubTypeSet.CreatureType),
PLANT("Plant", SubTypeSet.CreatureType),
PRAETOR("Praetor", SubTypeSet.CreatureType),
PRIMARCH("Primarch", SubTypeSet.CreatureType),
PRISM("Prism", SubTypeSet.CreatureType),
PROCESSOR("Processor", SubTypeSet.CreatureType),
PUREBLOOD("Pureblood", SubTypeSet.CreatureType, true),

View file

@ -0,0 +1,27 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SpawnToken extends TokenImpl {
public SpawnToken() {
super("Spawn Token", "3/3 red Spawn creature token");
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.SPAWN);
power = new MageInt(3);
toughness = new MageInt(3);
}
public SpawnToken(final SpawnToken token) {
super(token);
}
public SpawnToken copy() {
return new SpawnToken(this);
}
}