mirror of
https://github.com/correl/mage.git
synced 2025-04-09 17:00:09 -09: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;
|
package mage.game.permanent.token;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
import static javax.management.Query.value;
|
import static javax.management.Query.value;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
@ -52,12 +55,18 @@ public class KarnConstructToken extends TokenImpl {
|
||||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||||
|
static {
|
||||||
|
tokenImageSets.addAll(Arrays.asList("DOM"));
|
||||||
|
}
|
||||||
|
|
||||||
public KarnConstructToken() {
|
public KarnConstructToken() {
|
||||||
this("DOM");
|
this("DOM");
|
||||||
}
|
}
|
||||||
|
|
||||||
public KarnConstructToken(String setCode) {
|
public KarnConstructToken(String setCode) {
|
||||||
super("Construct", "0/0 colorless Construct artifact creature token with \"This creature gets +1/+1 for each artifact you control.\"");
|
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);
|
this.setOriginalExpansionSetCode(setCode);
|
||||||
cardType.add(CardType.ARTIFACT);
|
cardType.add(CardType.ARTIFACT);
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
|
|
Loading…
Add table
Reference in a new issue