mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
SOM and some MRD reprints
This commit is contained in:
parent
5d8577fdb8
commit
f4f2251d3b
23 changed files with 1347 additions and 12 deletions
15
Mage/src/mage/game/permanent/token/MyrToken.java
Normal file
15
Mage/src/mage/game/permanent/token/MyrToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue