forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
36 lines
768 B
Java
36 lines
768 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author Quercitron
|
|
*/
|
|
public final class MinionToken2 extends TokenImpl {
|
|
|
|
public MinionToken2() {
|
|
this("PCY");
|
|
}
|
|
|
|
public MinionToken2(String setCode) {
|
|
super("Minion Token", "1/1 black Minion creature token");
|
|
this.setOriginalExpansionSetCode(setCode);
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.MINION);
|
|
color.setBlack(true);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public MinionToken2(final MinionToken2 token) {
|
|
super(token);
|
|
}
|
|
|
|
public MinionToken2 copy() {
|
|
return new MinionToken2(this);
|
|
}
|
|
}
|