mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Implemented Grismold, the Dreadsower
This commit is contained in:
parent
90a44c00f5
commit
b2bc60efcb
3 changed files with 133 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue