forked from External/mage
[MID] added tokens and images support
This commit is contained in:
parent
9015b156e5
commit
54a1efec63
24 changed files with 141 additions and 86 deletions
|
|
@ -21,8 +21,6 @@ public final class DevilToken extends TokenImpl {
|
|||
|
||||
public DevilToken() {
|
||||
super("Devil", "1/1 red Devil creature token with \"When this creature dies, it deals 1 damage to any target.\"");
|
||||
availableImageSetCodes.addAll(Collections.singletonList("SOI"));
|
||||
availableImageSetCodes.addAll(Collections.singletonList("WAR"));
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DEVIL);
|
||||
color.setRed(true);
|
||||
|
|
@ -36,7 +34,7 @@ public final class DevilToken extends TokenImpl {
|
|||
ability.addTarget(new TargetAnyTarget());
|
||||
this.addAbility(ability);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("SOI", "WAR", "AFR");
|
||||
availableImageSetCodes = Arrays.asList("SOI", "WAR", "AFR", "MID");
|
||||
}
|
||||
|
||||
public DevilToken(final DevilToken token) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue