mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[UNF] Implemented Clown Car
This commit is contained in:
parent
8bad38a027
commit
6b66d10089
4 changed files with 128 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue