[40K] Implemented Great Unclean One

This commit is contained in:
Evan Kranzler 2022-09-15 20:51:13 -04:00
parent 89eb256c16
commit 53f76c2403
3 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,32 @@
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 PlaguebearerOfNurgleToken extends TokenImpl {
public PlaguebearerOfNurgleToken() {
super("Plaguebearer of Nurgle", "1/3 black Demon creature token named Plaguebearer of Nurgle");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.DEMON);
power = new MageInt(1);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("40K");
}
public PlaguebearerOfNurgleToken(final PlaguebearerOfNurgleToken token) {
super(token);
}
public PlaguebearerOfNurgleToken copy() {
return new PlaguebearerOfNurgleToken(this);
}
}