forked from External/mage
Changed set codes in image sources and Mage Sets to match recent changes. Changed Portal Second Age set code back to PO2. Updated tokens with recent sets to product correct images. Fixed that there was no basic land slot in EMN packs.
This commit is contained in:
parent
5350c134da
commit
9630320ba9
193 changed files with 583 additions and 366 deletions
|
|
@ -21,11 +21,21 @@ public class SpiderToken extends Token {
|
|||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("INN", "EMN"));
|
||||
tokenImageSets.addAll(Arrays.asList("ISD", "EMN", "C15", "SHM"));
|
||||
}
|
||||
|
||||
public SpiderToken() {
|
||||
this(null, 0);
|
||||
}
|
||||
|
||||
public SpiderToken(String setCode) {
|
||||
this(setCode, 0);
|
||||
}
|
||||
|
||||
public SpiderToken(String setCode, int tokenType) {
|
||||
super("Spider", "1/2 green Spider creature token with reach");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
setOriginalExpansionSetCode(setCode);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add("Spider");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue