mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[EMN] Added several cards.
This commit is contained in:
parent
4349c0baa1
commit
b32b2aa4da
11 changed files with 921 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue