mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +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<>();
|
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) {
|
||||||
|
|
Loading…
Reference in a new issue