forked from External/mage
34 lines
699 B
Java
34 lines
699 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class GiantToken extends TokenImpl {
|
|
|
|
public GiantToken() {
|
|
super("Giant", "4/4 red Giant creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.GIANT);
|
|
color.setRed(true);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
|
|
availableImageSetCodes = Arrays.asList("TSR");
|
|
}
|
|
|
|
public GiantToken(final GiantToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public GiantToken copy() {
|
|
return new GiantToken(this);
|
|
}
|
|
}
|