forked from External/mage
[WAR] - added token image;
This commit is contained in:
parent
c6e262b0ed
commit
6c3b48b2a7
3 changed files with 10 additions and 8 deletions
|
|
@ -1,31 +0,0 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AmassToken extends TokenImpl {
|
||||
|
||||
public AmassToken() {
|
||||
super("Zombie Army", "0/0 black Zombie Army creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.ZOMBIE);
|
||||
subtype.add(SubType.ARMY);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
}
|
||||
|
||||
private AmassToken(final AmassToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AmassToken copy() {
|
||||
return new AmassToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue