mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[40K] Implemented Magnus the Red
This commit is contained in:
parent
c4a58aa650
commit
50acdbb823
4 changed files with 136 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
27
Mage/src/main/java/mage/game/permanent/token/SpawnToken.java
Normal file
27
Mage/src/main/java/mage/game/permanent/token/SpawnToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue