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
31 lines
640 B
Java
31 lines
640 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import java.util.Collections;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author Styxo
|
|
*/
|
|
public final class EwokToken extends TokenImpl {
|
|
|
|
public EwokToken() {
|
|
super("Ewok Token", "1/1 green Ewok creature tokens", 1, 1);
|
|
availableImageSetCodes.addAll(Collections.singletonList("SWS"));
|
|
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.EWOK);
|
|
color.setGreen(true);
|
|
}
|
|
|
|
public EwokToken(final EwokToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public EwokToken copy() {
|
|
return new EwokToken(this);
|
|
}
|
|
}
|