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
42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import mage.constants.CardType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.DeathtouchAbility;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author Saga
|
|
*/
|
|
public final class DeathtouchRatToken extends TokenImpl {
|
|
|
|
static final private List<String> tokenImageSets = new ArrayList<>();
|
|
static {
|
|
tokenImageSets.addAll(Arrays.asList("C17"));
|
|
}
|
|
|
|
public DeathtouchRatToken() {
|
|
super("Rat Token", "1/1 black Rat creature token with deathtouch");
|
|
this.setExpansionSetCodeForImage("C17");
|
|
availableImageSetCodes = tokenImageSets;
|
|
this.cardType.add(CardType.CREATURE);
|
|
this.color.setBlack(true);
|
|
this.subtype.add(SubType.RAT);
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
this.addAbility(DeathtouchAbility.getInstance());
|
|
}
|
|
|
|
public DeathtouchRatToken(final DeathtouchRatToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public DeathtouchRatToken copy() {
|
|
return new DeathtouchRatToken(this);
|
|
}
|
|
}
|