* Added 28 cards from Vintage Masters.

This commit is contained in:
LevelX2 2014-06-27 13:41:28 +02:00
parent b0a822184b
commit d84076ba40
70 changed files with 3926 additions and 63 deletions

View file

@ -28,9 +28,8 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.MageInt;
import mage.ObjectColor;
import mage.constants.CardType;
/**
*
@ -39,9 +38,14 @@ import mage.ObjectColor;
public class InsectToken extends Token {
public InsectToken() {
this("M10");
}
public InsectToken(String setCode) {
super("Insect", "1/1 green Insect creature token");
setOriginalExpansionSetCode(setCode);
cardType.add(CardType.CREATURE);
color = ObjectColor.GREEN;
color.setGreen(true);
subtype.add("Insect");
power = new MageInt(1);
toughness = new MageInt(1);