mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
32 lines
734 B
Java
32 lines
734 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class SkeletonToken extends TokenImpl {
|
|
|
|
public SkeletonToken() {
|
|
super("Skeleton", "1/1 black Skeleton creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
this.subtype.add(SubType.SKELETON);
|
|
color.setBlack(true);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes = Arrays.asList("AFR");
|
|
}
|
|
|
|
public SkeletonToken(final SkeletonToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SkeletonToken copy() {
|
|
return new SkeletonToken(this);
|
|
}
|
|
}
|