forked from External/mage
[AFR] added tokens and images download support;
This commit is contained in:
parent
88484f5a1e
commit
654ee7791c
20 changed files with 125 additions and 34 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue