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 Hound creature token named Mowu"); cardType.add(CardType.CREATURE); color.setGreen(true); this.addSuperType(SuperType.LEGENDARY); subtype.add(SubType.HOUND); power = new MageInt(3); toughness = new MageInt(3); } public MowuToken(final MowuToken token) { super(token); } public MowuToken copy() { return new MowuToken(this); } }