forked from External/mage
Update tokens database
fixed some incorrect entries added Aetherdrift tokens
This commit is contained in:
parent
7e23565159
commit
b519e8d8e9
4 changed files with 72 additions and 43 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public class SpiritWarriorToken extends TokenImpl {
|
||||
|
||||
public SpiritWarriorToken() {
|
||||
this(1);
|
||||
}
|
||||
|
||||
public SpiritWarriorToken(int x) {
|
||||
super("Spirit Warrior Token", "X/X black and green Spirit Warrior creature token, where X is the greatest toughness among creatures you control");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.subtype.add(SubType.WARRIOR);
|
||||
this.color.setBlack(true);
|
||||
this.color.setGreen(true);
|
||||
this.power = new MageInt(x);
|
||||
this.toughness = new MageInt(x);
|
||||
}
|
||||
|
||||
private SpiritWarriorToken(final SpiritWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public SpiritWarriorToken copy() {
|
||||
return new SpiritWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue