mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +00:00
Token image changes for DOM
This commit is contained in:
parent
bc70a5e4ad
commit
43d99b5caa
1 changed files with 6 additions and 1 deletions
|
@ -64,7 +64,9 @@ public class SaprolingToken extends TokenImpl {
|
|||
"CMA",
|
||||
"VMA", // 2 different token, one with DIFFERENT stats, "Saproling Burst" create different token, see https://scryfall.com/card/tvma/12
|
||||
"E02",
|
||||
"RIX"));
|
||||
"RIX",
|
||||
"DOM" // 3 different token images
|
||||
));
|
||||
}
|
||||
|
||||
public SaprolingToken() {
|
||||
|
@ -82,6 +84,9 @@ public class SaprolingToken extends TokenImpl {
|
|||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C16")) {
|
||||
this.setTokenType(RandomUtil.nextInt(2) + 1);
|
||||
}
|
||||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("DOM")) {
|
||||
this.setTokenType(RandomUtil.nextInt(3) + 1);
|
||||
}
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.SAPROLING);
|
||||
|
|
Loading…
Reference in a new issue