forked from External/mage
30 lines
769 B
Java
30 lines
769 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class WandOfTheElementsSecondToken extends TokenImpl {
|
|
|
|
public WandOfTheElementsSecondToken() {
|
|
super("Elemental", "3/3 red Elemental creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
this.subtype.add(SubType.ELEMENTAL);
|
|
this.color.setRed(true);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(3);
|
|
|
|
setTokenType(2);
|
|
}
|
|
|
|
public WandOfTheElementsSecondToken(final WandOfTheElementsSecondToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public WandOfTheElementsSecondToken copy() {
|
|
return new WandOfTheElementsSecondToken(this);
|
|
}
|
|
}
|