mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Enchanted Carriage
This commit is contained in:
parent
487d010b2a
commit
793f0cff67
4 changed files with 73 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
29
Mage/src/main/java/mage/game/permanent/token/MouseToken.java
Normal file
29
Mage/src/main/java/mage/game/permanent/token/MouseToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue