mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Token image changes for DOM
This commit is contained in:
parent
fc488e63a3
commit
ae69f3ea69
1 changed files with 9 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
|||
*/
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import static javax.management.Query.value;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
@ -52,12 +55,18 @@ public class KarnConstructToken extends TokenImpl {
|
|||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
}
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("DOM"));
|
||||
}
|
||||
|
||||
public KarnConstructToken() {
|
||||
this("DOM");
|
||||
}
|
||||
|
||||
public KarnConstructToken(String setCode) {
|
||||
super("Construct", "0/0 colorless Construct artifact creature token with \"This creature gets +1/+1 for each artifact you control.\"");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
this.setOriginalExpansionSetCode(setCode);
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
Loading…
Reference in a new issue