[KHM] Implemented Rise of the Dread Marn

This commit is contained in:
Evan Kranzler 2021-01-12 17:44:17 -05:00
parent d515496b6e
commit 8c9d285d80
3 changed files with 133 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author TheElk801
*/
public final class ZombieBerserkerToken extends TokenImpl {
public ZombieBerserkerToken() {
super("Zombie Berserker", "2/2 black Zombie Berserker creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
subtype.add(SubType.BERSERKER);
power = new MageInt(2);
toughness = new MageInt(2);
}
private ZombieBerserkerToken(final ZombieBerserkerToken token) {
super(token);
}
public ZombieBerserkerToken copy() {
return new ZombieBerserkerToken(this);
}
}