[MID] Implemented Jadar, Ghoulcaller of Nephalia

This commit is contained in:
Evan Kranzler 2021-09-02 20:39:10 -04:00
parent 972cbbd4b2
commit 250f425909
4 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DecayedAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class ZombieDecayedToken extends TokenImpl {
public ZombieDecayedToken() {
super("Zombie", "2/2 black Zombie creature token with decayed");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(new DecayedAbility());
}
public ZombieDecayedToken(final ZombieDecayedToken token) {
super(token);
}
@Override
public ZombieDecayedToken copy() {
return new ZombieDecayedToken(this);
}
}