forked from External/mage
implemented Herald of the Dreadhorde
This commit is contained in:
parent
0fb987f25d
commit
bebc8a8ac4
5 changed files with 162 additions and 0 deletions
31
Mage/src/main/java/mage/game/permanent/token/AmassToken.java
Normal file
31
Mage/src/main/java/mage/game/permanent/token/AmassToken.java
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
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