mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Added reference for Kithkin Token.
This commit is contained in:
parent
bbf34f90da
commit
c08d266fce
1 changed files with 5 additions and 0 deletions
|
@ -10,7 +10,12 @@ import mage.constants.CardType;
|
|||
public class KithkinToken extends Token{
|
||||
|
||||
public KithkinToken() {
|
||||
this("LRW");
|
||||
}
|
||||
|
||||
public KithkinToken(String expansionSetCode) {
|
||||
super("Kithkin", "1/1 white Kithkin Soldier creature token");
|
||||
setOriginalExpansionSetCode(expansionSetCode);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add("Kithkin");
|
||||
|
|
Loading…
Reference in a new issue