Some golem token image handling.

This commit is contained in:
LevelX2 2015-06-05 17:48:36 +02:00
parent e46439aa47
commit 986995d154
11 changed files with 33 additions and 15 deletions

View file

@ -37,7 +37,12 @@ import mage.MageInt;
public class GolemToken extends Token {
public GolemToken() {
this("SOM");
}
public GolemToken(String setCode) {
super("Golem", "a 3/3 colorless Golem artifact creature token");
setOriginalExpansionSetCode(setCode);
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add("Golem");