forked from External/mage
Fixed some tokens image
This commit is contained in:
parent
dea739ecb0
commit
aeef4e1193
5 changed files with 28 additions and 59 deletions
|
|
@ -1,43 +1,25 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LoneFox
|
||||
*/
|
||||
public final class CatToken extends TokenImpl {
|
||||
|
||||
static final private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("SOM", "M13", "M14", "C14", "C15", "C17"));
|
||||
}
|
||||
|
||||
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(SubType.CAT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("MBP", "C14", "C15", "C17", "C18", "M13", "M14", "MBS", "SOM");
|
||||
}
|
||||
|
||||
public CatToken(final CatToken token) {
|
||||
|
|
@ -47,5 +29,4 @@ public final class CatToken extends TokenImpl {
|
|||
public CatToken copy() {
|
||||
return new CatToken(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue