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
|
|
@ -28,9 +28,11 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import mage.constants.CardType;
|
||||
import java.util.List;
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -38,13 +40,28 @@ import mage.MageInt;
|
|||
*/
|
||||
public class CatToken extends Token {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("SOM", "M13", "M14", "C14", "C15"));
|
||||
}
|
||||
|
||||
public CatToken() {
|
||||
this(null, 0);
|
||||
}
|
||||
|
||||
public CatToken(String setCode) {
|
||||
this(setCode, 0);
|
||||
}
|
||||
|
||||
public CatToken(String setCode, int tokenType) {
|
||||
super("Cat", "2/2 white Cat creature token");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
setOriginalExpansionSetCode(setCode);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add("Cat");
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
availableImageSetCodes.addAll(Arrays.asList("SOM", "M13", "M14", "C14"));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue