Refactor - moved KorAllyToken to shared area

This commit is contained in:
JOAC69 2016-09-25 00:18:37 -05:00
parent a5c6cdd9cf
commit 9eb078842b
5 changed files with 25 additions and 31 deletions

View file

@ -0,0 +1,18 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
public class KorAllyToken extends Token {
public KorAllyToken() {
super("Kor Ally", "1/1 white Kor Ally creature token");
this.setExpansionSetCodeForImage("BFZ");
cardType.add(CardType.CREATURE);
subtype.add("Kor");
subtype.add("Ally");
color.setWhite(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
}