forked from External/mage
* Images: added tokens from Modern Horizons (MH1);
This commit is contained in:
parent
4148a572cf
commit
9c2714da53
19 changed files with 134 additions and 91 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue