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
39 lines
962 B
Java
39 lines
962 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class BelzenlokClericToken extends TokenImpl {
|
|
|
|
static final private List<String> tokenImageSets = new ArrayList<>();
|
|
static {
|
|
tokenImageSets.addAll(Arrays.asList("DOM"));
|
|
}
|
|
|
|
public BelzenlokClericToken() {
|
|
super("Cleric Token", "0/1 black Cleric creature token");
|
|
availableImageSetCodes = tokenImageSets;
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.CLERIC);
|
|
color.setBlack(true);
|
|
power = new MageInt(0);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public BelzenlokClericToken(final BelzenlokClericToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public BelzenlokClericToken copy() {
|
|
return new BelzenlokClericToken(this);
|
|
}
|
|
}
|