Implement 1 card C18

This commit is contained in:
spjspj 2018-07-27 18:53:34 +10:00
parent 14a688008f
commit f58e33524d
6 changed files with 281 additions and 0 deletions

View file

@ -106,6 +106,7 @@ public enum CounterType {
SHIELD("shield"),
SHRED("shred"),
SLIME("slime"),
SLUMBER("slumber"),
SOOT("soot"),
SPITE("spite"),
SPORE("spore"),

View file

@ -0,0 +1,43 @@
package mage.game.permanent.token;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class BrudicladTelchorMyrToken extends TokenImpl {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("C18"));
}
public BrudicladTelchorMyrToken() {
this((String)null);
}
public BrudicladTelchorMyrToken(String expansionSetCode) {
super("Myr", "2/1 blue Myr artifact creature token");
this.setOriginalExpansionSetCode(expansionSetCode);
cardType.add(CardType.CREATURE);
cardType.add(CardType.ARTIFACT);
subtype.add(SubType.MYR);
color.setBlue(true);
power = new MageInt(2);
toughness = new MageInt(1);
availableImageSetCodes = tokenImageSets;
}
public BrudicladTelchorMyrToken(final BrudicladTelchorMyrToken token) {
super(token);
}
public BrudicladTelchorMyrToken copy() {
return new BrudicladTelchorMyrToken(this);
}
}