mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[MID] Implemented Corpse Cobble
This commit is contained in:
parent
2df79a95dd
commit
bd67b7af22
3 changed files with 112 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue