forked from External/mage
- removed duplicate tokens - fixed names of some tokens - corrected tokens used in tokens database
28 lines
639 B
Java
28 lines
639 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author Quercitron
|
|
*/
|
|
public final class MinionToken extends TokenImpl {
|
|
|
|
public MinionToken() {
|
|
super("Minion Token", "1/1 black Minion creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.MINION);
|
|
color.setBlack(true);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
protected MinionToken(final MinionToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MinionToken copy() {
|
|
return new MinionToken(this);
|
|
}
|
|
}
|