mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Added new set: Explorers of Ixalan (47 cards, 1 token)
This commit is contained in:
parent
43c732c751
commit
39ca5a13f4
9 changed files with 97 additions and 26 deletions
|
|
@ -44,9 +44,28 @@ public class SaprolingToken extends Token {
|
|||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
/* do not used, but why it was added?
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("10E", "ALA", "DDE", "DDH", "DDJ", "M12", "M13", "M14", "MM2", "MMA", "RTR", "C15", "MM3", "C16", "CMA"));
|
||||
}
|
||||
tokenImageSets.addAll(Arrays.asList(
|
||||
"10E",
|
||||
"ALA",
|
||||
"DDE",
|
||||
"DDH",
|
||||
"DDJ",
|
||||
"M12",
|
||||
"M13",
|
||||
"M14",
|
||||
"MM2",
|
||||
"MM3",
|
||||
"MMA",
|
||||
"RTR",
|
||||
"C15",
|
||||
"MM3",
|
||||
"C16", // 2 different token images...
|
||||
"CMA",
|
||||
"VMA", // 2 different token, one with DIFFERENT stats, "Saproling Burst" create different token, see https://scryfall.com/card/tvma/12
|
||||
"E02"));
|
||||
}*/
|
||||
|
||||
public SaprolingToken() {
|
||||
this(null, 0);
|
||||
|
|
@ -58,7 +77,7 @@ public class SaprolingToken extends Token {
|
|||
|
||||
public SaprolingToken(String setCode, int tokenType) {
|
||||
super("Saproling", "1/1 green Saproling creature token");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
//availableImageSetCodes = tokenImageSets;
|
||||
setOriginalExpansionSetCode(setCode);
|
||||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C16")) {
|
||||
this.setTokenType(RandomUtil.nextInt(2) + 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue