* Images: added tokens from Modern Horizons (MH1);

This commit is contained in:
Oleg Agafonov 2019-06-30 20:26:16 +04:00
parent 4148a572cf
commit 9c2714da53
19 changed files with 134 additions and 91 deletions

View file

@ -6,7 +6,6 @@ import mage.constants.SubType;
import mage.util.RandomUtil;
/**
*
* @author spjspj
*/
public final class YoungPyromancerElementalToken extends TokenImpl {
@ -19,6 +18,12 @@ public final class YoungPyromancerElementalToken extends TokenImpl {
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("EMA")) {
setTokenType(1);
}
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("SHM")) {
setTokenType(2);
}
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("MH1")) {
setTokenType(1);
}
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.ELEMENTAL);