mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Token changes for C17
This commit is contained in:
parent
31419dbc76
commit
d73b1c2987
1 changed files with 12 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;
|
||||
|
@ -38,9 +41,18 @@ import mage.abilities.keyword.FlyingAbility;
|
|||
*/
|
||||
public class WasitoraCatDragonToken extends TokenImpl {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C17"));
|
||||
}
|
||||
|
||||
public WasitoraCatDragonToken() {
|
||||
super("Cat Dragon", "3/3 black, red, and green Cat Dragon creature token with flying");
|
||||
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
setOriginalExpansionSetCode("C17");
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
this.subtype.add(SubType.CAT);
|
||||
this.subtype.add(SubType.DRAGON);
|
||||
|
|
Loading…
Reference in a new issue