mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Implement 1 card C18
This commit is contained in:
parent
14a688008f
commit
f58e33524d
6 changed files with 281 additions and 0 deletions
|
|
@ -106,6 +106,7 @@ public enum CounterType {
|
|||
SHIELD("shield"),
|
||||
SHRED("shred"),
|
||||
SLIME("slime"),
|
||||
SLUMBER("slumber"),
|
||||
SOOT("soot"),
|
||||
SPITE("spite"),
|
||||
SPORE("spore"),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue