SOM and some MRD reprints

This commit is contained in:
Loki 2011-01-09 20:02:15 +02:00
parent 5d8577fdb8
commit f4f2251d3b
23 changed files with 1347 additions and 12 deletions

View file

@ -0,0 +1,15 @@
package mage.game.permanent.token;
import mage.Constants;
import mage.MageInt;
public class MyrToken extends Token {
public MyrToken() {
super("Myr", "1/1 colorless Myr artifact creature");
cardType.add(Constants.CardType.CREATURE);
cardType.add(Constants.CardType.ARTIFACT);
subtype.add("Myr");
power = new MageInt(1);
toughness = new MageInt(1);
}
}