mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[STX] Implemented Lorehold Command
This commit is contained in:
parent
eec6b4986d
commit
09d3cee8fc
4 changed files with 141 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue