forked from External/mage
Add CMM token images
This commit is contained in:
parent
d9a23d505a
commit
6ea286eb89
6 changed files with 167 additions and 67 deletions
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -10,24 +8,24 @@ import mage.abilities.keyword.HasteAbility;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class BalduvianToken extends TokenImpl {
|
||||
public final class GravebornToken extends TokenImpl {
|
||||
|
||||
public BalduvianToken() {
|
||||
public GravebornToken() {
|
||||
super("Graveborn Token", "3/1 black and red Graveborn creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.GRAVEBORN);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
subtype.add(SubType.GRAVEBORN);
|
||||
addAbility(HasteAbility.getInstance());
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
protected BalduvianToken(final BalduvianToken token) {
|
||||
protected GravebornToken(final GravebornToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BalduvianToken copy() {
|
||||
return new BalduvianToken(this);
|
||||
public GravebornToken copy() {
|
||||
return new GravebornToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
|
||||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class SekKuarDeathkeeperGravebornToken extends TokenImpl {
|
||||
|
||||
public SekKuarDeathkeeperGravebornToken() {
|
||||
super("Graveborn Token", "3/1 black and red Graveborn creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.GRAVEBORN);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
protected SekKuarDeathkeeperGravebornToken(final SekKuarDeathkeeperGravebornToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public SekKuarDeathkeeperGravebornToken copy() {
|
||||
return new SekKuarDeathkeeperGravebornToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue