[STX] Implemented Illustrious Historian

This commit is contained in:
Evan Kranzler 2021-03-30 07:44:14 -04:00
parent 14248b02f0
commit b8c83b4b51
4 changed files with 58 additions and 7 deletions

View file

@ -7,9 +7,9 @@ import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SpiritRedWhiteToken extends TokenImpl {
public final class LoreholdToken extends TokenImpl {
public SpiritRedWhiteToken() {
public LoreholdToken() {
super("Spirit", "3/2 red and white Spirit creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
@ -19,12 +19,12 @@ public final class SpiritRedWhiteToken extends TokenImpl {
toughness = new MageInt(2);
}
private SpiritRedWhiteToken(final SpiritRedWhiteToken token) {
private LoreholdToken(final LoreholdToken token) {
super(token);
}
@Override
public SpiritRedWhiteToken copy() {
return new SpiritRedWhiteToken(this);
public LoreholdToken copy() {
return new LoreholdToken(this);
}
}