mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Token changes for C17
This commit is contained in:
parent
b93bbb6e3c
commit
ba57aeb820
1 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ public class EldraziSpawnToken extends TokenImpl {
|
|||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("ROE", "MM2", "DDP"));
|
||||
tokenImageSets.addAll(Arrays.asList("ROE", "MM2", "DDP", "C17"));
|
||||
}
|
||||
|
||||
public EldraziSpawnToken() {
|
||||
|
@ -62,8 +62,8 @@ public class EldraziSpawnToken extends TokenImpl {
|
|||
addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1), new SacrificeSourceCost()));
|
||||
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
// Get one of the three possible token images
|
||||
this.setTokenType(RandomUtil.nextInt(3) + 1);
|
||||
// Get one of the four possible token images
|
||||
this.setTokenType(RandomUtil.nextInt(4) + 1);
|
||||
}
|
||||
|
||||
public EldraziSpawnToken(final EldraziSpawnToken token) {
|
||||
|
|
Loading…
Reference in a new issue