[MOM] Implement Blightreaper Thallid / Blightsower Thallid

This commit is contained in:
theelk801 2023-04-16 20:18:24 -04:00
parent 0edc93d4cb
commit 9e1aa964ae
4 changed files with 126 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 PhyrexianSaprolingToken extends TokenImpl {
public PhyrexianSaprolingToken() {
super("Phyrexian Saproling Token", "1/1 green Phyrexian Saproling creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.SAPROLING);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("MOM");
}
public PhyrexianSaprolingToken(final PhyrexianSaprolingToken token) {
super(token);
}
public PhyrexianSaprolingToken copy() {
return new PhyrexianSaprolingToken(this);
}
}