forked from External/mage
36 lines
764 B
Java
36 lines
764 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author FenrisulfrX
|
|
*/
|
|
public final class MinionToken extends TokenImpl {
|
|
|
|
public MinionToken() {
|
|
this("DDE");
|
|
}
|
|
|
|
public MinionToken(String setCode) {
|
|
super("Minion", "X/X black Minion creature token");
|
|
this.setOriginalExpansionSetCode(setCode);
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.MINION);
|
|
color.setBlack(true);
|
|
power = new MageInt(0);
|
|
toughness = new MageInt(0);
|
|
}
|
|
|
|
public MinionToken(final MinionToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MinionToken copy() {
|
|
return new MinionToken(this);
|
|
}
|
|
}
|