mirror of
https://github.com/correl/mage.git
synced 2024-11-29 03:00:12 +00:00
Token image changes for DOM
This commit is contained in:
parent
af31f86b10
commit
801d2c39a4
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,7 @@ import mage.MageInt;
|
|||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.util.RandomUtil;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -25,6 +26,9 @@ public class KnightToken extends TokenImpl {
|
|||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C15")) {
|
||||
setTokenType(2);
|
||||
}
|
||||
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("DOM")) {
|
||||
this.setTokenType(RandomUtil.nextInt(2) + 1);
|
||||
}
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.KNIGHT);
|
||||
|
|
Loading…
Reference in a new issue