mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added DDM token images
This commit is contained in:
parent
85ebbb516b
commit
2739dcad4e
3 changed files with 7 additions and 1 deletions
|
@ -1403,6 +1403,9 @@ public class ScryfallImageSupportTokens {
|
||||||
put ("BNG/Wolf", "https://api.scryfall.com/cards/tbng/9/en?format=image");
|
put ("BNG/Wolf", "https://api.scryfall.com/cards/tbng/9/en?format=image");
|
||||||
put ("BNG/Zombie", "https://api.scryfall.com/cards/tbng/6/en?format=image");
|
put ("BNG/Zombie", "https://api.scryfall.com/cards/tbng/6/en?format=image");
|
||||||
|
|
||||||
|
// DDM
|
||||||
|
put ("DDM/Assassin", "https://api.scryfall.com/cards/tddm/1/en?format=image");
|
||||||
|
|
||||||
// generate supported sets
|
// generate supported sets
|
||||||
supportedSets.clear();
|
supportedSets.clear();
|
||||||
for (String cardName : this.keySet()) {
|
for (String cardName : this.keySet()) {
|
||||||
|
|
|
@ -535,7 +535,6 @@
|
||||||
|Generate|TOK:DDL|Beast|||BeastToken|
|
|Generate|TOK:DDL|Beast|||BeastToken|
|
||||||
|Generate|TOK:DDL|Griffin|||GriffinToken|
|
|Generate|TOK:DDL|Griffin|||GriffinToken|
|
||||||
|Generate|TOK:DDM|Assassin|||AssassinToken|
|
|Generate|TOK:DDM|Assassin|||AssassinToken|
|
||||||
|Generate|TOK:DDM|Illusion|||IllusionToken|
|
|
||||||
|Generate|TOK:DDN|Goblin|||GoblinToken|
|
|Generate|TOK:DDN|Goblin|||GoblinToken|
|
||||||
|Generate|TOK:DDO|Kraken|||Kraken99Token|
|
|Generate|TOK:DDO|Kraken|||Kraken99Token|
|
||||||
|Generate|TOK:DDO|Soldier|||SoldierToken|
|
|Generate|TOK:DDO|Soldier|||SoldierToken|
|
||||||
|
|
|
@ -8,6 +8,8 @@ import mage.MageInt;
|
||||||
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||||
import mage.abilities.effects.common.LoseGameTargetPlayerEffect;
|
import mage.abilities.effects.common.LoseGameTargetPlayerEffect;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author spjspj
|
* @author spjspj
|
||||||
|
@ -22,6 +24,8 @@ public final class AssassinToken extends TokenImpl {
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = new MageInt(1);
|
toughness = new MageInt(1);
|
||||||
addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new LoseGameTargetPlayerEffect(), false, true));
|
addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new LoseGameTargetPlayerEffect(), false, true));
|
||||||
|
|
||||||
|
availableImageSetCodes = Arrays.asList("RTR", "DDM", "C19");
|
||||||
}
|
}
|
||||||
|
|
||||||
public AssassinToken(final AssassinToken token) {
|
public AssassinToken(final AssassinToken token) {
|
||||||
|
|
Loading…
Reference in a new issue