mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Token changes for C17
This commit is contained in:
parent
5274436938
commit
c8d2c2f25f
1 changed files with 10 additions and 0 deletions
|
@ -1,14 +1,24 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public class BatToken extends TokenImpl {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("MMA", "C17"));
|
||||
}
|
||||
|
||||
public BatToken() {
|
||||
super("Bat", "1/1 black Bat creature token with flying");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.BAT);
|
||||
|
|
Loading…
Reference in a new issue