mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
add 3 DOM cards, added a token, updated card text
This commit is contained in:
parent
bb22e52127
commit
49ee8f9856
6 changed files with 156 additions and 7 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public class ZombieKnightToken extends TokenImpl {
|
||||
|
||||
public ZombieKnightToken(){
|
||||
super("Zombie Knight", "a 2/2 black Zombie Knight creature token with menace");
|
||||
color.addColor(ObjectColor.BLACK);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.ZOMBIE, SubType.KNIGHT);
|
||||
addAbility(new MenaceAbility());
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public ZombieKnightToken(final ZombieKnightToken zombieKnightToken){
|
||||
super(zombieKnightToken);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZombieKnightToken copy() {
|
||||
return new ZombieKnightToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue