[TDC] Implement Teval, the Balanced Scale

This commit is contained in:
theelk801 2025-02-22 12:42:24 -05:00
parent 4276b4f0bc
commit 9c29ff9ca4
3 changed files with 125 additions and 0 deletions

View file

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