forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
35 lines
875 B
Java
35 lines
875 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author LoneFox
|
|
*/
|
|
public final class DemonToken extends TokenImpl {
|
|
|
|
public DemonToken() {
|
|
super("Demon Token", "5/5 black Demon creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.DEMON);
|
|
power = new MageInt(5);
|
|
toughness = new MageInt(5);
|
|
addAbility(FlyingAbility.getInstance());
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("AVR", "C14", "DD3A", "ISD", "ORI", "M20", "M21"));
|
|
}
|
|
|
|
public DemonToken(final DemonToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public DemonToken copy() {
|
|
return new DemonToken(this);
|
|
}
|
|
}
|