[UNF] Implemented Clown Car

This commit is contained in:
Evan Kranzler 2022-09-23 21:38:10 -04:00
parent 8bad38a027
commit 6b66d10089
4 changed files with 128 additions and 0 deletions

View file

@ -107,6 +107,7 @@ public enum SubType {
CITIZEN("Citizen", SubTypeSet.CreatureType),
CLAMFOLK("Clamfolk", SubTypeSet.CreatureType, true), // Unglued
CLERIC("Cleric", SubTypeSet.CreatureType),
CLOWN("Clown", SubTypeSet.CreatureType),
COCKATRICE("Cockatrice", SubTypeSet.CreatureType),
CONSTRUCT("Construct", SubTypeSet.CreatureType),
COW("Cow", SubTypeSet.CreatureType, true), // Unglued
@ -307,6 +308,7 @@ public enum SubType {
REFLECTION("Reflection", SubTypeSet.CreatureType),
RHINO("Rhino", SubTypeSet.CreatureType),
RIGGER("Rigger", SubTypeSet.CreatureType),
ROBOT("Robot", SubTypeSet.CreatureType),
RODIAN("Rodian", SubTypeSet.CreatureType, true), // Star Wars
ROGUE("Rogue", SubTypeSet.CreatureType),
// S

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class ClownRobotToken extends TokenImpl {
public ClownRobotToken() {
super("Clown Robot Token", "1/1 white Clown Robot artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.CLOWN);
subtype.add(SubType.ROBOT);
power = new MageInt(1);
toughness = new MageInt(1);
}
public ClownRobotToken(final ClownRobotToken token) {
super(token);
}
public ClownRobotToken copy() {
return new ClownRobotToken(this);
}
}