This commit is contained in:
Justin Godesky 2015-06-05 12:06:20 -04:00
commit f8532ab587
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");