[RNA] added tokens and download support from scryfall;

This commit is contained in:
Oleg Agafonov 2019-01-12 21:13:56 +04:00
parent 5a91494be3
commit 1b55cbd44c
15 changed files with 140 additions and 62 deletions

View file

@ -1,14 +1,12 @@
package mage.game.permanent.token;
import java.util.Arrays;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author LoneFox
*/
public final class HumanToken extends TokenImpl {
@ -20,7 +18,7 @@ public final class HumanToken extends TokenImpl {
subtype.add(SubType.HUMAN);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes.addAll(Arrays.asList("DKA", "AVR", "FNMP"));
availableImageSetCodes.addAll(Arrays.asList("DKA", "AVR", "FNMP", "RNA"));
}
public HumanToken(final HumanToken token) {
@ -28,7 +26,7 @@ public final class HumanToken extends TokenImpl {
}
@Override
public HumanToken copy() {
public HumanToken copy() {
return new HumanToken(this);
}