[MID] Implemented Corpse Cobble

This commit is contained in:
Daniel Bomar 2021-09-09 15:37:01 -05:00
parent 2df79a95dd
commit bd67b7af22
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.MenaceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
public class ZombieMenaceToken extends TokenImpl {
public ZombieMenaceToken(int xValue) {
super("Zombie", "X/X blue and black Zombie creature token with menace");
cardType.add(CardType.CREATURE);
color.setBlue(true);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
addAbility(new MenaceAbility());
}
private ZombieMenaceToken(final ZombieMenaceToken token) {
super(token);
}
@Override
public ZombieMenaceToken copy() {
return new ZombieMenaceToken(this);
}
}