[STX] Implemented Lorehold Command

This commit is contained in:
Evan Kranzler 2021-02-19 09:38:59 -05:00
parent eec6b4986d
commit 09d3cee8fc
4 changed files with 141 additions and 1 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SpiritRedWhiteToken extends TokenImpl {
public SpiritRedWhiteToken() {
super("Spirit", "3/2 red and white Spirit creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
color.setWhite(true);
subtype.add(SubType.SPIRIT);
power = new MageInt(3);
toughness = new MageInt(2);
}
private SpiritRedWhiteToken(final SpiritRedWhiteToken token) {
super(token);
}
@Override
public SpiritRedWhiteToken copy() {
return new SpiritRedWhiteToken(this);
}
}