mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Token changes for C17
This commit is contained in:
parent
fde9b1cda5
commit
849fb5a14a
1 changed files with 10 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
|||
*/
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
@ -37,8 +40,15 @@ import mage.MageInt;
|
|||
*/
|
||||
public class EdgarMarkovToken extends TokenImpl {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C17"));
|
||||
}
|
||||
|
||||
public EdgarMarkovToken() {
|
||||
super("Vampire", "1/1 black Vampire creature token");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
setExpansionSetCodeForImage("C17");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.VAMPIRE);
|
||||
|
|
Loading…
Reference in a new issue