[EMN] Added several cards.

This commit is contained in:
fireshoes 2016-07-04 22:51:51 -05:00
parent 4349c0baa1
commit b32b2aa4da
11 changed files with 921 additions and 2 deletions

View file

@ -5,6 +5,9 @@
*/
package mage.game.permanent.token;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import mage.MageInt;
import mage.abilities.keyword.ReachAbility;
import mage.constants.CardType;
@ -15,6 +18,12 @@ import mage.constants.CardType;
*/
public class SpiderToken extends Token {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("INN", "EMN"));
}
public SpiderToken() {
super("Spider", "1/2 green Spider creature token with reach");
cardType.add(CardType.CREATURE);