mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +00:00
Token image changes for DOM
This commit is contained in:
parent
09e0877c1b
commit
f2f9661a91
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 mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
@ -37,8 +40,14 @@ import mage.constants.SubType;
|
||||||
*/
|
*/
|
||||||
public class BelzenlokClericToken extends TokenImpl {
|
public class BelzenlokClericToken extends TokenImpl {
|
||||||
|
|
||||||
|
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||||
|
static {
|
||||||
|
tokenImageSets.addAll(Arrays.asList("DOM"));
|
||||||
|
}
|
||||||
|
|
||||||
public BelzenlokClericToken() {
|
public BelzenlokClericToken() {
|
||||||
super("Cleric", "0/1 black Cleric creature token");
|
super("Cleric", "0/1 black Cleric creature token");
|
||||||
|
availableImageSetCodes = tokenImageSets;
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
subtype.add(SubType.CLERIC);
|
subtype.add(SubType.CLERIC);
|
||||||
color.setBlack(true);
|
color.setBlack(true);
|
||||||
|
|
Loading…
Reference in a new issue