Token changes for C17

This commit is contained in:
Michael Simons 2018-05-09 22:12:06 -04:00
parent b93bbb6e3c
commit ba57aeb820

View file

@ -49,7 +49,7 @@ public class EldraziSpawnToken extends TokenImpl {
final static private List<String> tokenImageSets = new ArrayList<>(); final static private List<String> tokenImageSets = new ArrayList<>();
static { static {
tokenImageSets.addAll(Arrays.asList("ROE", "MM2", "DDP")); tokenImageSets.addAll(Arrays.asList("ROE", "MM2", "DDP", "C17"));
} }
public EldraziSpawnToken() { public EldraziSpawnToken() {
@ -62,8 +62,8 @@ public class EldraziSpawnToken extends TokenImpl {
addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1), new SacrificeSourceCost())); addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1), new SacrificeSourceCost()));
availableImageSetCodes = tokenImageSets; availableImageSetCodes = tokenImageSets;
// Get one of the three possible token images // Get one of the four possible token images
this.setTokenType(RandomUtil.nextInt(3) + 1); this.setTokenType(RandomUtil.nextInt(4) + 1);
} }
public EldraziSpawnToken(final EldraziSpawnToken token) { public EldraziSpawnToken(final EldraziSpawnToken token) {