forked from External/mage
32 lines
751 B
Java
32 lines
751 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class MercyKillingToken extends TokenImpl {
|
|
|
|
public MercyKillingToken() {
|
|
super("Elf Warrior", "1/1 green and white Elf Warrior creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.ELF);
|
|
subtype.add(SubType.WARRIOR);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public MercyKillingToken(final MercyKillingToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MercyKillingToken copy() {
|
|
return new MercyKillingToken(this);
|
|
}
|
|
}
|