Implemented Enchanted Carriage

This commit is contained in:
Evan Kranzler 2019-09-09 12:42:00 -04:00
parent 487d010b2a
commit 793f0cff67
4 changed files with 73 additions and 0 deletions

View file

@ -228,6 +228,7 @@ public enum SubType {
MONK("Monk", SubTypeSet.CreatureType),
MONKEY("Monkey", SubTypeSet.CreatureType),
MOONFOLK("Moonfolk", SubTypeSet.CreatureType),
MOUSE("Mouse", SubTypeSet.CreatureType),
MUTANT("Mutant", SubTypeSet.CreatureType),
MYR("Myr", SubTypeSet.CreatureType),
MYSTIC("Mystic", SubTypeSet.CreatureType),

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class MouseToken extends TokenImpl {
public MouseToken() {
super("Mouse", "1/1 white Mouse creature token");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.MOUSE);
power = new MageInt(1);
toughness = new MageInt(1);
}
private MouseToken(final MouseToken token) {
super(token);
}
@Override
public MouseToken copy() {
return new MouseToken(this);
}
}