mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Illustrious Historian
This commit is contained in:
parent
14248b02f0
commit
b8c83b4b51
4 changed files with 58 additions and 7 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue