mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Token changes for C17
This commit is contained in:
parent
849fb5a14a
commit
b93bbb6e3c
1 changed files with 10 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.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
@ -37,9 +40,16 @@ import mage.abilities.keyword.FlyingAbility;
|
|||
* @author spjspj
|
||||
*/
|
||||
public class UtvaraHellkiteDragonToken extends TokenImpl {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C17"));
|
||||
}
|
||||
|
||||
public UtvaraHellkiteDragonToken() {
|
||||
super("Dragon", "6/6 red Dragon creature token with flying");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
setExpansionSetCodeForImage("C17");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.DRAGON);
|
||||
|
|
Loading…
Reference in a new issue