[KHM] Implemented Warchanter Skald

This commit is contained in:
Evan Kranzler 2020-12-28 15:46:34 -05:00
parent 5246e1630b
commit 84b32a8ee7
3 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,26 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class DwarfBerserkerToken extends TokenImpl {
public DwarfBerserkerToken() {
super("Dwarf Berserker", "2/1 red Dwarf Berserker creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.DWARF);
subtype.add(SubType.BERSERKER);
power = new MageInt(2);
toughness = new MageInt(1);
}
public DwarfBerserkerToken(final DwarfBerserkerToken token) {
super(token);
}
public DwarfBerserkerToken copy() {
return new DwarfBerserkerToken(this);
}
}