[40K] Implemented Old One Eye

This commit is contained in:
Evan Kranzler 2022-09-13 08:44:43 -04:00
parent 668410dd21
commit 9b70a0ee6f
3 changed files with 99 additions and 0 deletions

View file

@ -0,0 +1,33 @@
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 TyranidToken extends TokenImpl {
public TyranidToken() {
super("Tyranid Token", "5/5 green Tyranid creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.TYRANID);
power = new MageInt(5);
toughness = new MageInt(5);
availableImageSetCodes.addAll(Arrays.asList("40K"));
}
public TyranidToken(final TyranidToken token) {
super(token);
}
@Override
public TyranidToken copy() {
return new TyranidToken(this);
}
}