forked from External/mage
43 lines
1 KiB
Java
43 lines
1 KiB
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.ObjectColor;
|
|
import mage.abilities.keyword.HasteAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class MinotaurToken extends TokenImpl {
|
|
|
|
public MinotaurToken(boolean withHaste) {
|
|
this();
|
|
|
|
if (withHaste) {
|
|
addAbility(HasteAbility.getInstance());
|
|
this.description = "2/3 red Minotaur creature tokens with haste";
|
|
}
|
|
}
|
|
|
|
public MinotaurToken() {
|
|
super("Minotaur Token", "2/3 red Minotaur creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setColor(ObjectColor.RED);
|
|
subtype.add(SubType.MINOTAUR);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(3);
|
|
|
|
availableImageSetCodes = Arrays.asList("JOU");
|
|
}
|
|
|
|
private MinotaurToken(final MinotaurToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MinotaurToken copy() {
|
|
return new MinotaurToken(this);
|
|
}
|
|
}
|