mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
Fix Great Arashin City
This commit is contained in:
parent
fcbf22380e
commit
2286dd2bbd
2 changed files with 32 additions and 3 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class NoFlyingSpiritWhiteToken extends TokenImpl {
|
||||
|
||||
public NoFlyingSpiritWhiteToken() {
|
||||
super("Spirit Token", "1/1 white Spirit creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.SPIRIT);
|
||||
color.setWhite(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private NoFlyingSpiritWhiteToken(final NoFlyingSpiritWhiteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NoFlyingSpiritWhiteToken copy() {
|
||||
return new NoFlyingSpiritWhiteToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue