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
33 lines
No EOL
793 B
Java
33 lines
No EOL
793 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 IzoniInsectToken extends TokenImpl {
|
|
|
|
public IzoniInsectToken() {
|
|
super("Insect Token", "1/1 black and green Insect creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.INSECT);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes = Arrays.asList("GRN", "MH2");
|
|
}
|
|
|
|
public IzoniInsectToken(final IzoniInsectToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public IzoniInsectToken copy() {
|
|
return new IzoniInsectToken(this);
|
|
}
|
|
} |