[KHC] added tokens and download support;

This commit is contained in:
Oleg Agafonov 2021-02-06 20:54:32 +04:00
parent f7bc745f10
commit 03952ae0d6
19 changed files with 121 additions and 113 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author spjspj
*/
public final class Boar2Token extends TokenImpl {
public Boar2Token() {
super("Boar", "2/2 green Boar creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.BOAR);
power = new MageInt(2);
toughness = new MageInt(2);
availableImageSetCodes = Arrays.asList("THS", "KHC");
}
public Boar2Token(final Boar2Token token) {
super(token);
}
public Boar2Token copy() {
return new Boar2Token(this);
}
}