Implemented Sethron, Hurloon General

This commit is contained in:
Evan Kranzler 2020-06-25 09:22:09 -04:00
parent 1fec71920e
commit a5f9b8fb64
3 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.ObjectColor;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class MinotaurToken extends TokenImpl {
public MinotaurToken() {
super("Minotaur", "2/3 red Minotaur creature token");
cardType.add(CardType.CREATURE);
color.setColor(ObjectColor.RED);
subtype.add(SubType.MINOTAUR);
power = new MageInt(2);
toughness = new MageInt(3);
}
private MinotaurToken(final MinotaurToken token) {
super(token);
}
public MinotaurToken copy() {
return new MinotaurToken(this);
}
}