Implemented Izoni, Thousand-Eyed

This commit is contained in:
Evan Kranzler 2018-09-10 21:46:04 -04:00
parent d6739f9073
commit f433d7c006
3 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author TheElk801
*/
public final class IzoniInsectToken extends TokenImpl {
public IzoniInsectToken() {
super("Insect", "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);
}
public IzoniInsectToken(final IzoniInsectToken token) {
super(token);
}
public IzoniInsectToken copy() {
return new IzoniInsectToken(this);
}
}