mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Added DKA token images
This commit is contained in:
parent
b9d3980ea0
commit
81984ceac0
4 changed files with 10 additions and 4 deletions
|
@ -1312,6 +1312,11 @@ public class ScryfallImageSupportTokens {
|
||||||
put ("ISD/Zombie/2", "https://api.scryfall.com/cards/tisd/8/en?format=image");
|
put ("ISD/Zombie/2", "https://api.scryfall.com/cards/tisd/8/en?format=image");
|
||||||
put ("ISD/Zombie/3", "https://api.scryfall.com/cards/tisd/9/en?format=image");
|
put ("ISD/Zombie/3", "https://api.scryfall.com/cards/tisd/9/en?format=image");
|
||||||
|
|
||||||
|
// DKA
|
||||||
|
put ("DKA/Human", "https://api.scryfall.com/cards/tdka/1/en?format=image");
|
||||||
|
put ("DKA/Emblem Sorin, Lord of Innistrad", "https://api.scryfall.com/cards/tdka/3/en?format=image");
|
||||||
|
put ("DKA/Vampire", "https://api.scryfall.com/cards/tdka/2/en?format=image");
|
||||||
|
|
||||||
// generate supported sets
|
// generate supported sets
|
||||||
supportedSets.clear();
|
supportedSets.clear();
|
||||||
for (String cardName : this.keySet()) {
|
for (String cardName : this.keySet()) {
|
||||||
|
|
|
@ -568,10 +568,7 @@
|
||||||
|Generate|TOK:DIS|Saproling|||SaprolingToken|
|
|Generate|TOK:DIS|Saproling|||SaprolingToken|
|
||||||
|Generate|TOK:DIS|Snake|||PatagiaViperSnakeToken|
|
|Generate|TOK:DIS|Snake|||PatagiaViperSnakeToken|
|
||||||
|Generate|TOK:DKA|Human|||HumanToken|
|
|Generate|TOK:DKA|Human|||HumanToken|
|
||||||
|Generate|TOK:DKA|Spirit|||SpiritWhiteToken|
|
|
||||||
|Generate|TOK:DKA|Vampire|||SorinLordOfInnistradVampireToken|
|
|Generate|TOK:DKA|Vampire|||SorinLordOfInnistradVampireToken|
|
||||||
|Generate|TOK:DKA|Wolf|||WolfToken|
|
|
||||||
|Generate|TOK:DKA|Zombie|||ZombieToken|
|
|
||||||
|Generate|TOK:DOM|Cleric|||BelzenlokClericToken|
|
|Generate|TOK:DOM|Cleric|||BelzenlokClericToken|
|
||||||
|Generate|TOK:DOM|Construct|||KarnConstructToken|
|
|Generate|TOK:DOM|Construct|||KarnConstructToken|
|
||||||
|Generate|TOK:DOM|Demon|||BelzenlokDemonToken|
|
|Generate|TOK:DOM|Demon|||BelzenlokDemonToken|
|
||||||
|
|
|
@ -6,6 +6,8 @@ import mage.constants.SubType;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.keyword.LifelinkAbility;
|
import mage.abilities.keyword.LifelinkAbility;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author spjspj
|
* @author spjspj
|
||||||
|
@ -20,6 +22,8 @@ public final class SorinLordOfInnistradVampireToken extends TokenImpl {
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = new MageInt(1);
|
toughness = new MageInt(1);
|
||||||
addAbility(LifelinkAbility.getInstance());
|
addAbility(LifelinkAbility.getInstance());
|
||||||
|
|
||||||
|
availableImageSetCodes = Arrays.asList("DKA");
|
||||||
}
|
}
|
||||||
|
|
||||||
public SorinLordOfInnistradVampireToken(final SorinLordOfInnistradVampireToken token) {
|
public SorinLordOfInnistradVampireToken(final SorinLordOfInnistradVampireToken token) {
|
||||||
|
|
|
@ -21,7 +21,7 @@ public final class WolfToken extends TokenImpl {
|
||||||
power = new MageInt(2);
|
power = new MageInt(2);
|
||||||
toughness = new MageInt(2);
|
toughness = new MageInt(2);
|
||||||
|
|
||||||
availableImageSetCodes = Arrays.asList("BNG", "C14", "C15", "CMA", "CMD", "CNS", "DKA", "EVE", "ISD",
|
availableImageSetCodes = Arrays.asList("BNG", "C14", "C15", "CMA", "CMD", "CNS", "EVE", "ISD",
|
||||||
"LRW", "M10", "M14", "MM2", "SHM", "SOI", "SOM", "V10", "ZEN", "WAR", "M20",
|
"LRW", "M10", "M14", "MM2", "SHM", "SOI", "SOM", "V10", "ZEN", "WAR", "M20",
|
||||||
"THB", "AFR", "MID", "VOW", "2XM");
|
"THB", "AFR", "MID", "VOW", "2XM");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue