mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added MOR token images
This commit is contained in:
parent
bb3065afd9
commit
a35e31ae56
7 changed files with 16 additions and 8 deletions
|
@ -1206,6 +1206,11 @@ public class ScryfallImageSupportTokens {
|
|||
put ("ALA/Thopter", "https://api.scryfall.com/cards/tala/3/en?format=image");
|
||||
put ("ALA/Zombie", "https://api.scryfall.com/cards/tala/5/en?format=image");
|
||||
|
||||
// MOR
|
||||
put ("MOR/Faerie Rogue", "https://api.scryfall.com/cards/tmor/2/en?format=image");
|
||||
put ("MOR/Giant Warrior", "https://api.scryfall.com/cards/tmor/1/en?format=image");
|
||||
put ("MOR/Treefolk Shaman", "https://api.scryfall.com/cards/tmor/3/en?format=image");
|
||||
|
||||
// generate supported sets
|
||||
supportedSets.clear();
|
||||
for (String cardName : this.keySet()) {
|
||||
|
|
|
@ -930,14 +930,9 @@
|
|||
|Generate|TOK:MMQ|Soldier|||SoldierToken|
|
||||
|Generate|TOK:MMQ|Spirit|||SpiritWhiteToken|
|
||||
|Generate|TOK:MMQ|Zombie|||ZombieToken|
|
||||
|Generate|TOK:MOR|Elemental|||WalkerOfTheGroveToken|
|
||||
|Generate|TOK:MOR|Elf Warrior|||ElfWarriorToken|
|
||||
|Generate|TOK:MOR|Faerie Rogue|||FaerieRogueToken|
|
||||
|Generate|TOK:MOR|Giant Warrior|||GiantWarriorToken|
|
||||
|Generate|TOK:MOR|Goblin Rogue|||GoblinRogueToken|
|
||||
|Generate|TOK:MOR|Kithkin Soldier|||KithkinSoldierToken|
|
||||
|Generate|TOK:MOR|Treefolk Shaman|||TreefolkShamanToken|
|
||||
|Generate|TOK:MOR|Wolf|||WolfToken|
|
||||
|Generate|TOK:MRD|Beast|||OneDozenEyesBeastToken|
|
||||
|Generate|TOK:MRD|Demon|||ReignOfThePitToken|
|
||||
|Generate|TOK:MRD|Elemental|||ElementalTokenWithHaste|
|
||||
|
|
|
@ -20,7 +20,7 @@ public final class ElfWarriorToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "MOR", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA");
|
||||
availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA");
|
||||
}
|
||||
|
||||
public ElfWarriorToken(final ElfWarriorToken token) {
|
||||
|
|
|
@ -5,6 +5,8 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
|
@ -19,6 +21,8 @@ public final class GiantWarriorToken extends TokenImpl {
|
|||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(5);
|
||||
toughness = new MageInt(5);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("MOR", "MMA");
|
||||
}
|
||||
|
||||
public GiantWarriorToken(final GiantWarriorToken token) {
|
||||
|
|
|
@ -20,7 +20,7 @@ public final class KithkinSoldierToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("CMD", "EVE", "LRW", "MMA", "MOR", "SHM", "MMA", "KHC", "CMA");
|
||||
availableImageSetCodes = Arrays.asList("CMD", "EVE", "LRW", "MMA", "SHM", "MMA", "KHC", "CMA");
|
||||
}
|
||||
|
||||
public KithkinSoldierToken(final KithkinSoldierToken token) {
|
||||
|
|
|
@ -5,6 +5,8 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
|
@ -19,6 +21,8 @@ public final class TreefolkShamanToken extends TokenImpl {
|
|||
subtype.add(SubType.SHAMAN);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(5);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("MOR", "MMA");
|
||||
}
|
||||
|
||||
public TreefolkShamanToken(final TreefolkShamanToken token) {
|
||||
|
|
|
@ -22,7 +22,7 @@ public final class WolfToken extends TokenImpl {
|
|||
toughness = new MageInt(2);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("BNG", "C14", "C15", "CMA", "CMD", "CNS", "DKA", "EVE", "ISD",
|
||||
"LRW", "M10", "M14", "MM2", "MOR", "SHM", "SOI", "SOM", "V10", "WWK", "ZEN", "WAR", "M20",
|
||||
"LRW", "M10", "M14", "MM2", "SHM", "SOI", "SOM", "V10", "WWK", "ZEN", "WAR", "M20",
|
||||
"THB", "AFR", "MID", "VOW", "2XM");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue