mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added GS1 token images
This commit is contained in:
parent
e3d64451ed
commit
f4399e669a
3 changed files with 11 additions and 1 deletions
|
@ -1621,6 +1621,9 @@ public class ScryfallImageSupportTokens {
|
||||||
put ("A25/Whale", "https://api.scryfall.com/cards/ta25/7/en?format=image");
|
put ("A25/Whale", "https://api.scryfall.com/cards/ta25/7/en?format=image");
|
||||||
put ("A25/Wolf", "https://api.scryfall.com/cards/ta25/13/en?format=image");
|
put ("A25/Wolf", "https://api.scryfall.com/cards/ta25/13/en?format=image");
|
||||||
|
|
||||||
|
// GS1
|
||||||
|
put ("GS1/Mowu", "https://api.scryfall.com/cards/gs1/T1/en?format=image");
|
||||||
|
|
||||||
// generate supported sets
|
// generate supported sets
|
||||||
supportedSets.clear();
|
supportedSets.clear();
|
||||||
for (String cardName : this.keySet()) {
|
for (String cardName : this.keySet()) {
|
||||||
|
|
|
@ -1830,4 +1830,7 @@
|
||||||
|Generate|TOK:A25|Spirit|2||SpiritWhiteToken|
|
|Generate|TOK:A25|Spirit|2||SpiritWhiteToken|
|
||||||
|Generate|TOK:A25|Stangg Twin|||StanggTwinToken|
|
|Generate|TOK:A25|Stangg Twin|||StanggTwinToken|
|
||||||
|Generate|TOK:A25|Whale|||ReefWormWhaleToken|
|
|Generate|TOK:A25|Whale|||ReefWormWhaleToken|
|
||||||
|Generate|TOK:A25|Wolf|||WolfToken|
|
|Generate|TOK:A25|Wolf|||WolfToken|
|
||||||
|
|
||||||
|
# GS1
|
||||||
|
|Generate|TOK:GS1|Mowu|||MowuToken|
|
|
@ -5,6 +5,8 @@ import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.SuperType;
|
import mage.constants.SuperType;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
|
@ -19,6 +21,8 @@ public final class MowuToken extends TokenImpl {
|
||||||
subtype.add(SubType.DOG);
|
subtype.add(SubType.DOG);
|
||||||
power = new MageInt(3);
|
power = new MageInt(3);
|
||||||
toughness = new MageInt(3);
|
toughness = new MageInt(3);
|
||||||
|
|
||||||
|
availableImageSetCodes = Arrays.asList("GS1");
|
||||||
}
|
}
|
||||||
|
|
||||||
public MowuToken(final MowuToken token) {
|
public MowuToken(final MowuToken token) {
|
||||||
|
|
Loading…
Reference in a new issue