mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Rise of the Dread Marn
This commit is contained in:
parent
d515496b6e
commit
8c9d285d80
3 changed files with 133 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue