forked from External/mage
31 lines
714 B
Java
31 lines
714 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class MowuToken extends TokenImpl {
|
|
|
|
public MowuToken() {
|
|
super("Mowu", "legendary 3/3 green Dog creature token named Mowu");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
this.addSuperType(SuperType.LEGENDARY);
|
|
subtype.add(SubType.DOG);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(3);
|
|
}
|
|
|
|
public MowuToken(final MowuToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MowuToken copy() {
|
|
return new MowuToken(this);
|
|
}
|
|
}
|