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