[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

@ -1,14 +1,13 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
*
* @author LoneFox
*/
public final class PegasusToken extends TokenImpl {
@ -20,8 +19,10 @@ public final class PegasusToken extends TokenImpl {
subtype.add(SubType.PEGASUS);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
setOriginalExpansionSetCode("C14");
availableImageSetCodes = Arrays.asList("C14", "C19", "CMD", "EXO", "GPT", "MIR", "TMP", "TPR", "TSP", "THB", "KHC");
}
public PegasusToken(final PegasusToken token) {