Implemented Grismold, the Dreadsower

This commit is contained in:
Evan Kranzler 2019-08-05 16:53:21 -04:00
parent 90a44c00f5
commit b2bc60efcb
3 changed files with 133 additions and 0 deletions

View file

@ -0,0 +1,38 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public final class GrismoldPlantToken extends TokenImpl {
static final private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("C19"));
}
public GrismoldPlantToken() {
super("Plant", "1/1 green Plant creature");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.PLANT);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = tokenImageSets;
}
public GrismoldPlantToken(final GrismoldPlantToken token) {
super(token);
}
public GrismoldPlantToken copy() {
return new GrismoldPlantToken(this);
}
}