Token image changes for DOM

This commit is contained in:
Michael Simons 2018-05-10 00:32:53 -04:00
parent 09e0877c1b
commit f2f9661a91

View file

@ -27,6 +27,9 @@
*/ */
package mage.game.permanent.token; package mage.game.permanent.token;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import mage.MageInt; import mage.MageInt;
import mage.constants.CardType; import mage.constants.CardType;
import mage.constants.SubType; import mage.constants.SubType;
@ -37,8 +40,14 @@ import mage.constants.SubType;
*/ */
public class BelzenlokClericToken extends TokenImpl { public class BelzenlokClericToken extends TokenImpl {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("DOM"));
}
public BelzenlokClericToken() { public BelzenlokClericToken() {
super("Cleric", "0/1 black Cleric creature token"); super("Cleric", "0/1 black Cleric creature token");
availableImageSetCodes = tokenImageSets;
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
subtype.add(SubType.CLERIC); subtype.add(SubType.CLERIC);
color.setBlack(true); color.setBlack(true);