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
43d99b5caa
commit
af31f86b10
1 changed files with 15 additions and 1 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.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
@ -37,12 +40,23 @@ import mage.MageInt;
|
||||||
*/
|
*/
|
||||||
public class ChainersTormentNightmareToken extends TokenImpl {
|
public class ChainersTormentNightmareToken extends TokenImpl {
|
||||||
|
|
||||||
|
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||||
|
static {
|
||||||
|
tokenImageSets.addAll(Arrays.asList("DOM"));
|
||||||
|
}
|
||||||
|
|
||||||
public ChainersTormentNightmareToken() { this(0); };
|
public ChainersTormentNightmareToken() { this(0); };
|
||||||
|
|
||||||
public ChainersTormentNightmareToken(int xValue) {
|
public ChainersTormentNightmareToken(int xValue) {
|
||||||
super("Nightmare", "X/X black Nightmare artifact creature token");
|
super("Nightmare Horror", "X/X black Nightmare Horror creature token");
|
||||||
|
|
||||||
|
availableImageSetCodes = tokenImageSets;
|
||||||
|
setOriginalExpansionSetCode("DOM");
|
||||||
|
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
subtype.add(SubType.NIGHTMARE);
|
subtype.add(SubType.NIGHTMARE);
|
||||||
|
subtype.add(SubType.HORROR);
|
||||||
|
color.setBlack(true);
|
||||||
power = new MageInt(xValue);
|
power = new MageInt(xValue);
|
||||||
toughness = new MageInt(xValue);
|
toughness = new MageInt(xValue);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue