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
63df286680
commit
fc488e63a3
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.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
@ -39,12 +42,18 @@ import mage.abilities.keyword.TrampleAbility;
|
||||||
*/
|
*/
|
||||||
public class ValdukElementalToken extends TokenImpl {
|
public class ValdukElementalToken extends TokenImpl {
|
||||||
|
|
||||||
|
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||||
|
static {
|
||||||
|
tokenImageSets.addAll(Arrays.asList("DOM"));
|
||||||
|
}
|
||||||
|
|
||||||
public ValdukElementalToken() {
|
public ValdukElementalToken() {
|
||||||
this("DOM");
|
this("DOM");
|
||||||
}
|
}
|
||||||
|
|
||||||
public ValdukElementalToken(String setCode) {
|
public ValdukElementalToken(String setCode) {
|
||||||
super("Elemental", "3/1 red Elemental creature token with trample and haste");
|
super("Elemental", "3/1 red Elemental creature token with trample and haste");
|
||||||
|
availableImageSetCodes = tokenImageSets;
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setRed(true);
|
color.setRed(true);
|
||||||
subtype.add(SubType.ELEMENTAL);
|
subtype.add(SubType.ELEMENTAL);
|
||||||
|
|
Loading…
Reference in a new issue