[AFR] added tokens and images download support;

This commit is contained in:
Oleg Agafonov 2021-08-21 20:07:39 +04:00
parent 88484f5a1e
commit 654ee7791c
20 changed files with 125 additions and 34 deletions

View file

@ -6,6 +6,8 @@ import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import java.util.Arrays;
/**
* @author TheElk801
*/
@ -20,7 +22,11 @@ public final class VecnaToken extends TokenImpl {
subtype.add(SubType.GOD);
power = new MageInt(8);
toughness = new MageInt(8);
addAbility(IndestructibleAbility.getInstance());
// Indestructible
this.addAbility(IndestructibleAbility.getInstance());
availableImageSetCodes = Arrays.asList("AFR");
}
private VecnaToken(final VecnaToken token) {