mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added M11 token images
This commit is contained in:
parent
4ca9ad700c
commit
d138833029
2 changed files with 12 additions and 0 deletions
|
@ -1161,6 +1161,14 @@ public class ScryfallImageSupportTokens {
|
|||
put ("M12/Wurm", "https://api.scryfall.com/cards/tm12/6/en?format=image");
|
||||
put ("M12/Zombie", "https://api.scryfall.com/cards/tm12/3/en?format=image");
|
||||
|
||||
// M11
|
||||
put ("M11/Avatar", "https://api.scryfall.com/cards/tm11/1/en?format=image");
|
||||
put ("M11/Beast", "https://api.scryfall.com/cards/tm11/4/en?format=image");
|
||||
put ("M11/Bird", "https://api.scryfall.com/cards/tm11/2/en?format=image");
|
||||
put ("M11/Ooze/1", "https://api.scryfall.com/cards/tm11/6/en?format=image");
|
||||
put ("M11/Ooze/2", "https://api.scryfall.com/cards/tm11/5/en?format=image");
|
||||
put ("M11/Zombie", "https://api.scryfall.com/cards/tm11/3/en?format=image");
|
||||
|
||||
// generate supported sets
|
||||
supportedSets.clear();
|
||||
for (String cardName : this.keySet()) {
|
||||
|
|
|
@ -8,6 +8,8 @@ import mage.constants.Duration;
|
|||
import mage.constants.SubLayer;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
|
@ -22,6 +24,8 @@ public final class AvatarToken extends TokenImpl {
|
|||
ControllerLifeCount.instance, Duration.WhileOnBattlefield,
|
||||
SubLayer.CharacteristicDefining_7a
|
||||
).setText("this creature's power and toughness are each equal to your life total")));
|
||||
|
||||
availableImageSetCodes = Arrays.asList("LRW", "M10", "M11");
|
||||
}
|
||||
|
||||
public AvatarToken(final AvatarToken token) {
|
||||
|
|
Loading…
Reference in a new issue