forked from External/mage
[KHC] added tokens and download support;
This commit is contained in:
parent
f7bc745f10
commit
03952ae0d6
19 changed files with 121 additions and 113 deletions
|
|
@ -1,32 +0,0 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.Arrays;
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public final class KithkinToken extends TokenImpl {
|
||||
|
||||
public KithkinToken() {
|
||||
super("Kithkin Soldier", "1/1 white Kithkin Soldier creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.KITHKIN);
|
||||
subtype.add(SubType.SOLDIER);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
availableImageSetCodes.addAll(Arrays.asList("LRW", "SHM", "MMA"));
|
||||
}
|
||||
|
||||
public KithkinToken(final KithkinToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public KithkinToken copy() {
|
||||
return new KithkinToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue